/*
 * Tema3 - Modern Bootstrap 5 Theme
 * Custom Styles
 */

/* Google Fonts - Onest */
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700&display=swap');

/* ==========================================
   RATINOL INDUSTRIAL COLOR SYSTEM
   Merkezi renk yönetimi - Tüm renkler buradan
   ========================================== */
:root {
    /* === BRAND COLORS === */
    --primary-color: #FFC200;           /* Ratinol Ana Sarı */
    --primary-dark: #E6A900;            /* Orta Ton Sarı */
    --primary-darker: #CC9000;          /* Koyu Altın */
    --secondary-color: #000000;         /* Siyah (Header/Footer) */
    --accent-red: #E31E24;              /* Ratinol Kırmızı (CTA) */

    /* === TEXT COLORS === */
    --text-dark: #1a1a1a;               /* Ana Metin */
    --text-body: #333333;               /* Gövde Metni */
    --text-light: #666666;              /* Açık Metin */
    --text-muted: #999999;              /* Soluk Metin */

    /* === BACKGROUND COLORS === */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --bg-dark: #1a1a1a;

    /* === BORDER COLORS === */
    --border-color: #dee2e6;
    --border-light: #f0f0f0;
    --border-dark: #000000;

    /* === GRADIENTS (Industrial) === */
    --gradient-primary: linear-gradient(135deg, #FFC200 0%, #E6A900 50%, #CC9000 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(255,194,0,0.3) 100%);

    /* === PRIMARY COLOR OPACITY VARIANTS === */
    --primary-color-05: rgba(255, 194, 0, 0.05);
    --primary-color-10: rgba(255, 194, 0, 0.1);
    --primary-color-15: rgba(255, 194, 0, 0.15);
    --primary-color-20: rgba(255, 194, 0, 0.2);
    --primary-color-30: rgba(255, 194, 0, 0.3);
    --primary-color-40: rgba(255, 194, 0, 0.4);
    --primary-color-50: rgba(255, 194, 0, 0.5);
    --primary-color-60: rgba(255, 194, 0, 0.6);
    --primary-color-70: rgba(255, 194, 0, 0.7);
    --primary-color-80: rgba(255, 194, 0, 0.8);
    --primary-color-85: rgba(255, 194, 0, 0.85);
    --primary-color-90: rgba(255, 194, 0, 0.9);
    --primary-color-95: rgba(255, 194, 0, 0.95);

    /* === BLACK OPACITY VARIANTS === */
    --black-05: rgba(0, 0, 0, 0.05);
    --black-10: rgba(0, 0, 0, 0.1);
    --black-20: rgba(0, 0, 0, 0.2);
    --black-30: rgba(0, 0, 0, 0.3);
    --black-50: rgba(0, 0, 0, 0.5);
    --black-70: rgba(0, 0, 0, 0.7);
    --black-80: rgba(0, 0, 0, 0.8);
    --black-85: rgba(0, 0, 0, 0.85);

    /* === WHITE OPACITY VARIANTS === */
    --white-05: rgba(255, 255, 255, 0.05);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-80: rgba(255, 255, 255, 0.8);

    /* === INDUSTRIAL DESIGN VARIABLES === */
    --border-sharp: 0px;                /* Keskin köşeler */
    --border-technical: 2px;            /* Teknik kenarlık */
    --border-industrial: 3px;           /* Endüstriyel kalın kenarlık */
    --border-accent: 5px;               /* Vurgu kenarlığı */

    /* === TRANSITIONS === */
    --transition-sharp: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s ease;

    /* === SHADOWS (3D Industrial Effects) === */
    --shadow-3d-yellow: 5px 5px 0 var(--primary-darker);
    --shadow-3d-black: 5px 5px 0 var(--secondary-color);
    --shadow-3d-small: 3px 3px 0 var(--primary-color);

    /* === CLIP PATHS (Angular Corners) === */
    --clip-corner-tr: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
    --clip-corner-br: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    --clip-diagonal: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);

    /* === FONTS === */
    --font-primary: 'Onest', 'Inter', 'Roboto', sans-serif;
    --font-headings: 'Onest', 'Inter', 'Roboto', sans-serif;
}

/* ==========================================
   Topbar Styles
   ========================================== */
.topbar {
    background: var(--secondary-color);
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.topbar-link:hover {
    color: #fff;
}

.topbar-link i {
    font-size: 12px;
}

.topbar-right {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.social-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 0;
    border: 2px solid transparent;
    transition: var(--transition-sharp);
}

.social-link:hover {
    color: #000;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

#google_translate_element {
    display: inline-flex !important;
    align-items: center;
    height: 24px;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
}

#google_translate_element .goog-te-gadget {
    font-family: var(--font-primary);
    height: 24px;
    line-height: 24px;
    margin: 0;
    padding: 0;
}

#google_translate_element .goog-te-gadget-simple {
    background-color: rgba(255,255,255,0.1);
    border: none !important;
    padding: 0 8px;
    border-radius: 4px;
    height: 24px;
    line-height: 24px;
    display: inline-flex !important;
    align-items: center;
    margin: 0;
}

#google_translate_element .goog-te-gadget-simple img,
#google_translate_element .goog-te-gadget-simple > span > a {
    display: none;
}

#google_translate_element .goog-te-menu-value {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    display: flex;
    align-items: center;
    height: 24px;
    line-height: 24px;
}

#google_translate_element .goog-te-menu-value span {
    color: rgba(255,255,255,0.8) !important;
    line-height: 24px;
    margin: 0;
    padding: 0;
}

.topbar {
    background: #000000;
    padding: 10px 0;
    font-size: 13px;
    min-height: 32px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid var(--primary-color);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 24px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 24px;
}

/* ==========================================
   Footer Styles
   ========================================== */
#footer.inverted {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 0;
}

#footer .footer-content {
    padding: 20px 0;
}

#footer .footer-widget {
    margin-bottom: 30px;
}

#footer .widget-title {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

#footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-links li {
    margin-bottom: 10px;
}

#footer .footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

#footer .footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

#footer .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
}

#footer .copyright-content {
    background-color: rgba(0,0,0,0.1);
    padding: 20px 0;
    margin-top: 40px;
}

#footer .copyright-text {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-main-menu {
    padding: 40px 0;
}

.footer-menu-col {
    margin-bottom: 30px;
}

.footer-menu-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 12px;
}

.footer-menu-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-menu-list a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* İletişim Öğeleri */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item i {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 12px;
    color: #fff;
}

/* Dil Seçici */
.language-selector {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.lang-link {
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.lang-link:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.lang-link.active {
    background: var(--primary-color);
    color: #fff;
}

/* QR Kod Bölümü */
.qr-wrapper {
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: inline-block;
}

.footer-qr {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.qr-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================
   Reset
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* ==========================================
   Base & Typography
   ========================================== */
body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

h1 { font-size: 2.75rem; font-weight: 800; }
h2 { font-size: 2.25rem; font-weight: 800; }
h3 { font-size: 2rem; font-weight: 700; }
h4 { font-size: 1.75rem; font-weight: 700; }
h5 { font-size: 1.5rem; font-weight: 600; }
h6 { font-size: 1.25rem; font-weight: 600; }

@media (max-width: 768px) {
    h1, h2, h3, h4, h5, h6 {
        text-transform: none;
        letter-spacing: 0;
    }
}

p {
    margin-bottom: 1.5rem;
}

/* ==========================================
   Breadcrumb
   ========================================== */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb-item {
    color: var(--text-dark);
}

.breadcrumb-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--text-muted);
    padding: 0 8px;
}

/* ==========================================
   Topbar
   ========================================== */
.topbar {
    background: var(--secondary-color);
    padding: 12px 0;
    font-size: 14px;
    color: #fff;
    position: relative;
    z-index: 10000;
}

.topbar-left {
    display: flex;
    gap: 30px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    opacity: 0.9;
}

.topbar-link:hover {
    color: var(--primary-color);
    opacity: 1;
}

.topbar-link i {
    font-size: 14px;
}

.topbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 0 8px;
    height: 32px;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    justify-content: center;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.language-btn img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.language-btn i {
    font-size: 10px;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 9999;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text-dark);
    transition: var(--transition);
}

.language-item:hover {
    background: var(--primary-color-05);
    color: var(--primary-color);
}

.language-item img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
}

/* ==========================================
   Navbar
   ========================================== */
.navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: none;
    border-bottom: 3px solid #000000;
    transition: var(--transition-sharp);
    z-index: 1000;
    position: relative;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: none;
    border-bottom-width: 2px;
}

.navbar-brand .logo {
    max-height: 70px;
    transition: var(--transition-sharp);
    margin-top: -5px;
    filter: brightness(1);
}

.navbar.scrolled .navbar-brand .logo {
    max-height: 55px;
    margin-top: -3px;
}

.navbar-nav .nav-link {
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    color: #000000;
    position: relative;
    text-decoration: none;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        text-transform: none;
        letter-spacing: 0;
    }
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
    margin-top: 12px;
}

/* Eski tema menu yapısı için uyumluluk */
.navbar-nav > li {
    list-style: none;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.navbar-nav > li > a {
    padding: 10px 18px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Alt menü varsa ok ikonu göster */
.navbar-nav > li > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 12px;
    display: none;
}

.navbar-nav > li:has(ul) > a::after {
    display: inline-block;
}

.navbar-nav > li > a::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav > li > a:hover,
.navbar-nav > li.current > a,
.navbar-nav > li > a.active {
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-nav > li > a:hover::before {
    transform: scaleX(1);
}

/* Alt menü - dropdown-menu class'ı ile uyumlu */
.navbar-nav > li > ul,
.navbar-nav > li > .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
    margin-top: 0;
    min-width: 320px;
    z-index: 1000;
}

.navbar-nav > li:hover > ul,
.navbar-nav > li:hover > .dropdown-menu {
    display: block;
}

.navbar-nav > li > ul > li,
.navbar-nav > li > .dropdown-menu > li {
    list-style: none;
}

.navbar-nav > li > ul > li > a,
.navbar-nav > li > .dropdown-menu > li > a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-color);
    transition: var(--transition);
    text-decoration: none;
    display: block;
    position: relative;
}

.navbar-nav > li > ul > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > a:hover {
    background: var(--primary-color-05);
    color: var(--primary-color);
    text-decoration: none;
}

/* Alt menünün alt menüsü (dropdown-submenu) */
.navbar-nav > li > ul > li.dropdown-submenu {
    position: relative;
}

/* Alt menüde sağa ok ikonu */
.navbar-nav > li > ul > li.dropdown-submenu > a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: auto;
    position: absolute;
    right: 16px;
    font-size: 12px;
}

.navbar-nav > li > ul > li.dropdown-submenu > ul {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 12px;
    margin-left: 5px;
    min-width: 320px;
}

.navbar-nav > li > ul > li.dropdown-submenu:hover > ul {
    display: block;
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-color);
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.dropdown-item:hover {
    background: var(--primary-color-05);
    color: var(--primary-color);
    text-decoration: none;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-color-10);
    border: none;
    color: var(--primary-color);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}

.btn-primary {
    background: var(--gradient-primary);
    border: 2px solid var(--primary-darker);
    border-radius: 0;
    padding: 12px 28px;
    font-weight: 700;
    transition: var(--transition-sharp);
    color: #000000;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-darker);
    transform: translateY(-2px);
    box-shadow: var(--shadow-3d-yellow);
    color: #000000;
}

/* Navbar'daki butonlar daha compact olsun */
.navbar .btn-primary,
.navbar .btn-outline-primary {
    padding: 8px 16px;
    font-size: 13px;
}

.navbar .btn-primary i,
.navbar .btn-outline-primary i {
    font-size: 12px;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 0;
    padding: 12px 28px;
    font-weight: 700;
    background: transparent;
    transition: var(--transition-sharp);
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s;
    z-index: -1;
}

.btn-outline-primary:hover::before {
    width: 100%;
}

.btn-outline-primary:hover {
    background: transparent;
    color: #000000;
    border-color: var(--primary-darker);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-primary,
    .btn-outline-primary {
        padding: 10px 20px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }
}

/* ==========================================
   Search Modal
   ========================================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 10001; /* Topbar'dan daha yüksek bir z-index */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0 !important; /* Görünürlüğü zorla */
    visibility: hidden !important; /* Görünürlüğü zorla */
    transition: var(--transition);
    padding-top: 15px; /* Üstten 15px boşluk bırak */
    padding-right: 15px; /* Sağdan 15px boşluk bırak */
}

.search-modal.show {
    opacity: 1 !important; /* Görünürlüğü zorla */
    visibility: visible !important; /* Görünürlüğü zorla */
}

.search-modal-content {
    width: 100%;
    max-width: 700px;
    padding: 100px 40px 40px 40px; /* Üstten daha fazla boşluk bırak */
    text-align: center;
}

.search-modal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.search-close {
    position: absolute;
    top: 15px; /* Üstten 15px boşluk */
    right: 15px; /* Sağdan 15px boşluk */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color-10);
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10002;
    transform: none;
}

.search-close:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(90deg);
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 20px;
    display: flex; /* İçindeki elemanları hizalamak için */
    align-items: center; /* Dikeyde ortala */
}

.search-input-wrapper i {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 20px;
    z-index: 5; /* Input'un üzerinde, kapat ikonunun altında */
}

.search-input-wrapper input {
    width: 100%;
    height: 70px;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 0 60px 0 60px; /* Sağdan da boşluk bırak */
    font-size: 18px;
    transition: var(--transition);
}

.search-input-wrapper input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--primary-color-10);
    outline: none;
}

/* ==========================================
   Hero Slider
   ========================================== */
.hero-slider {
    position: relative;
    height: auto;
    overflow: visible;
}

.hero-slider .carousel-item {
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .carousel-item img {
    height: auto;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    background-color: #ffffff;
    display: block;
}

@media (max-width: 768px) {
    .hero-slider {
        overflow: hidden;
        display: none;
    }
    
    .hero-slider .carousel-item {
        position: relative;
        height: auto;
        min-height: auto;
    }
    
    .hero-slider .carousel-item img {
        object-fit: contain;
        width: auto;
        max-width: 100%;
        height: auto;
    }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Industrial overlay: Siyahtan sarıya geçiş */
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(255, 194, 0, 0.4) 70%,
        rgba(255, 194, 0, 0.2) 100%
    );
    /* Çapraz çizgi deseni */
    background-image:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.7) 30%,
            rgba(255, 194, 0, 0.4) 70%,
            rgba(255, 194, 0, 0.2) 100%
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 194, 0, 0.05) 50px,
            rgba(255, 194, 0, 0.05) 52px
        );
}

.carousel-caption-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.carousel-caption {
    text-align: left;
    position: static;
    transform: none;
    padding: 0;
}

.slide-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;                                 /* Çok kalın */
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);      /* Keskin gölge */
    letter-spacing: 2px;                              /* Geniş harflendirme */
    /* Sarı sol kenarlık */
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
}

.slide-text {
    font-size: clamp(16px, 2vw, 20px);
    color: #fff;
    max-width: 600px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);      /* Keskin gölge */
    line-height: 1.6;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        position: absolute;
        z-index: 20;
    }
}

.carousel-control-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
}

.carousel-control-prev:hover .carousel-control-icon,
.carousel-control-next:hover .carousel-control-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 6px;
    transition: var(--transition);
}

.carousel-indicators button.active {
    width: 40px;
    border-radius: 6px;
    background: #fff;
}

/* ==========================================
   Sections
   ========================================== */
.section-padding {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color-10);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Welcome Section */
.image-wrapper {
    position: relative;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.badge-content {
    text-align: center;
    color: #fff;
}

.badge-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.badge-content p {
    font-size: 12px;
    margin: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--primary-color-10);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Products Section */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-content {
    padding: 30px;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.product-link:hover {
    gap: 12px;
}

/* Technology Section */
.tech-stats {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    gap: 15px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-color);
    margin: 0;
    white-space: nowrap;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-feature-item {
    display: flex;
    gap: 20px;
}

.tech-feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--primary-color-10);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.tech-feature-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.tech-feature-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* News Section */
.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.news-date .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 4px;
}

.news-content {
    padding: 30px;
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.news-text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
}

.news-link:hover {
    gap: 12px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: #000000;                              /* Pure black */
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Teknik grid deseni */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            var(--primary-color-05) 80px,
            var(--primary-color-05) 81px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            var(--primary-color-05) 80px,
            var(--primary-color-05) 81px
        );
    pointer-events: none;
}

.footer-main {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
    border-top: 5px solid var(--primary-color);      /* Kalın sarı üst çizgi */
}

.footer-logo {
    max-height: 50px;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0;                                 /* Keskin köşeler */
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: var(--transition-sharp);
    border: 2px solid transparent;
    position: relative;
}

.footer-social-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 3px 3px 0 var(--primary-darker);    /* 3D efekt */
    border-color: var(--primary-darker);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;                                 /* Kalın */
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: 1px;                              /* Geniş harflendirme */
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);   /* Sarı alt çizgi */
    position: relative;
}

.footer-title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-darker);                /* Koyu sarı vurgu */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact i {
    margin-top: 3px;
    color: var(--primary-color);
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 3px solid var(--primary-color);      /* Sarı üst çizgi */
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);                   /* Biraz daha koyu */
}

.copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 991px) {
    .hero-slider,
    .hero-slider .carousel-item {
        height: 500px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar-collapse {
        margin-top: 20px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
    }
    
    .search-btn,
    .btn-primary {
        margin-top: 15px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .topbar {
        padding: 10px 0;
    }

    .topbar .row {
        flex-direction: column;
        gap: 12px;
    }

    .topbar .col-md-8,
    .topbar .col-md-4 {
        width: 100%;
        max-width: 100%;
    }

    .topbar-left,
    .topbar-right {
        justify-content: center;
    }

    .topbar-left {
        flex-direction: row;
        gap: 15px;
        text-align: center;
        flex-wrap: wrap;
    }

    .topbar-left a {
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .topbar-left span {
        display: inline;
    }

    .topbar-right {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .social-links {
        gap: 6px;
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .social-link {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    .language-selector {
        margin-top: 0 !important;
    }

    .language-btn {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .hero-slider,
    .hero-slider .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        text-align: center;
    }
    
    .slide-text {
        max-width: 100%;
    }
    
    .image-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .badge-content h3 {
        font-size: 24px;
    }
    
    .tech-stats {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

/* ==========================================
   Extra Small Mobile Styles (max-width: 576px)
   ========================================== */
@media (max-width: 576px) {
    .topbar {
        padding: 8px 0;
    }

    .topbar-left a {
        font-size: 11px;
        gap: 5px;
    }

    .topbar-left i {
        font-size: 11px;
    }

    .topbar-right {
        gap: 6px;
    }

    .social-link {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .social-link i {
        font-size: 12px;
    }

    .navbar-brand img.logo {
        max-height: 35px;
    }

    .navbar-nav {
        gap: 8px;
    }

    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 0.5rem 0.75rem;
    }

    #mainNavbar .d-inline-flex {
        flex-wrap: wrap;
        gap: 4px !important;
    }

    #mainNavbar .btn {
        font-size: 11px;
        padding: 6px 10px;
        white-space: nowrap;
    }

    #mainNavbar .btn-text {
        display: none;
    }

    .btn-primary i {
        margin-right: 0 !important;
    }

    .search-btn {
        font-size: 16px;
        padding: 0 !important;
    }

    .language-btn {
        font-size: 11px;
        padding: 2px 6px;
    }

    .language-btn i {
        font-size: 10px;
        margin-left: 2px;
    }

    .editModeText {
        display: none !important;
    }
}

/* ==========================================
   Contact Page Styles
   ========================================== */

/* Page Header */
.page-header {
    background: var(--secondary-color);
    padding: 60px 0;
    position: relative;
    margin-bottom: 0;
}

.page-header h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: var(--text-dark);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item {
    position: relative;
    padding-left: 60px;
}

.info-item .icon-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item .icon-box i {
    color: #fff;
    font-size: 20px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.info-item p,
.info-item a {
    color: #6c757d;
    margin: 0;
    transition: color 0.2s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form .form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    height: auto;
    font-size: 15px;
}

.contact-form .form-floating label {
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form .btn-primary {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

/* Map Section */
.map-section {
    position: relative;
}

.map-wrapper {
    height: 450px;
    width: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 20px;
    }

    .map-wrapper {
        height: 350px;
    }
}

/* ==========================================
   News (Haberler) Section Styles
   ========================================== */

/* News Card Container */
.news-card-wrapper {
    margin-bottom: 30px;
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px var(--primary-color-15);
    border: 3px solid var(--primary-color);
}

/* News Card Image */
.news-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 240px;
    max-height: 240px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image {
    transform: scale(1.06);
}

/* Image overlay */
.news-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.03) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-image-wrapper::after {
    opacity: 1;
}

/* News Card Body */
.news-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.news-read-more:hover {
    gap: 12px;
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

/* News Detail Page */
.news-detail-image {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-detail-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.news-detail-content p {
    margin-bottom: 15px;
}

.news-detail-content ul,
.news-detail-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

/* News Gallery */
.news-gallery {
    margin-top: 40px;
}

.news-gallery-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.news-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.news-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-gallery-item:hover img {
    transform: scale(1.1);
}

.news-gallery-item::after {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #fff;
    font-size: 24px;
    background: rgba(0,0,0,0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.news-gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Back Button */
.news-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.news-back-btn:hover {
    gap: 14px;
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

/* Empty State */
.news-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.news-empty-state i {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.news-empty-state h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.news-empty-state p {
    color: var(--text-light);
    font-size: 16px;
}

/* Responsive Styles for News Pages */
@media (max-width: 991px) {
    .hero-slider,
    .hero-slider .carousel-item {
        height: 500px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar-collapse {
        margin-top: 20px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
    }
    
    .search-btn,
    .btn-primary {
        margin-top: 15px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .topbar {
        padding: 10px 0;
    }

    .topbar .row {
        flex-direction: column;
        gap: 12px;
    }

    .topbar .col-md-8,
    .topbar .col-md-4 {
        width: 100%;
        max-width: 100%;
    }

    .topbar-left,
    .topbar-right {
        justify-content: center;
    }

    .topbar-left {
        flex-direction: row;
        gap: 15px;
        text-align: center;
        flex-wrap: wrap;
    }

    .topbar-left a {
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .topbar-left span {
        display: inline;
    }

    .topbar-right {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .social-links {
        gap: 6px;
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .social-link {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    .language-selector {
        margin-top: 0 !important;
    }

    .language-btn {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .hero-slider,
    .hero-slider .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        text-align: center;
    }
    
    .slide-text {
        max-width: 100%;
    }
    
    .image-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .badge-content h3 {
        font-size: 24px;
    }
    
    .tech-stats {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
}

/* ==========================================
   Search Results Styles
   ========================================== */
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-result-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: var(--transition);
}

.search-result-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.search-result-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.search-result-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.search-result-url {
    font-size: 14px;
    color: #006621; /* Google yeşil link rengi */
    margin-bottom: 5px;
    word-break: break-all;
}

.search-result-description {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 0;
}

/* ==========================================
   INDUSTRIAL FORM ELEMENTS - Faz 11
   ========================================== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select {
    border: 2px solid var(--border-color);
    border-radius: 0;                                 /* Keskin köşeler */
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--transition-sharp);
    background: #fff;
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    border-width: 2px;
    outline: none;
    box-shadow: 3px 3px 0 var(--primary-color-20);   /* 3D gölge */
    background: #fff;
}

/* Search input özel */
.search-input-wrapper input {
    border: 3px solid #000;
    border-radius: 0;
    padding: 20px 60px 20px 60px;
    font-size: 18px;
    background: #fff;
}

.search-input-wrapper input:focus {
    border-color: var(--primary-color);
    box-shadow: 5px 5px 0 var(--primary-color);
}

/* ==========================================
   SECTION HEADERS - INDUSTRIAL STYLE - Faz 12
   ========================================== */
.section-header {
    position: relative;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 2px;
    color: var(--primary-color);
    background: var(--primary-color-10);
    padding: 8px 20px;
    border-radius: 0;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================
   MOBILE RESPONSIVE - INDUSTRIAL EFFECTS - Faz 13
   ========================================== */
@media (max-width: 992px) {
    /* Titles normal case ve daha küçük font */
    h1, h2, h3 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: clamp(24px, 3.5vw, 32px);
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }
}

@media (max-width: 768px) {
    /* Industrial efektleri mobilde azalt */
    .category-card:hover,
    .product-item:hover {
        box-shadow: -3px 3px 0 var(--primary-color);  /* Daha küçük */
    }

    .btn-primary:hover {
        box-shadow: 3px 3px 0 var(--primary-darker);  /* Daha küçük */
    }

    /* Clip-path mobilde kaldır (performans) */
    .category-card,
    .product-item {
        clip-path: none;
    }

    /* Headings normal case */
    h1, h2, h3, h4, h5, h6 {
        text-transform: none;
        letter-spacing: 0;
    }

    /* Navbar links normal case */
    .navbar-nav .nav-link {
        text-transform: none;
        letter-spacing: 0;
    }

    /* Buttons daha küçük mobilde */
    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
        letter-spacing: 0.5px;
        text-transform: none;
    }

    .btn-outline-primary {
        padding: 10px 20px;
        font-size: 14px;
        letter-spacing: 0.5px;
        text-transform: none;
    }

    /* Form inputs mobilde optimize */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        padding: 10px 12px;
        font-size: 16px;  /* iOS zoom prevention */
    }

    .section-tag {
        font-size: 12px;
        padding: 6px 16px;
    }

    .section-title {
        font-size: clamp(22px, 3vw, 28px);
    }

    .section-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    /* Mobil cihazvlarda daha da küçültü */
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.2rem; }

    .section-title {
        font-size: clamp(20px, 2.5vw, 24px);
    }

    .section-title::after {
        width: 50px;
        height: 2px;
    }

    .btn-primary,
    .btn-outline-primary {
        padding: 10px 18px;
        font-size: 13px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        padding: 10px 12px;
        font-size: 16px;
    }

    /* Kartlar mobilde çok dar kenarlıklı gölge */
    .category-card:hover,
    .product-item:hover {
        box-shadow: -2px 2px 0 var(--primary-color);
    }
}
