/* ============================================
   HEADER STYLES - COMPLETE
   ============================================ */
@import url('variables.css'); 

.site-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-header {
    height: 80px;
    display: flex;
    align-items: center;
}

.header-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    z-index: 1;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */

.language-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-dark);
}

.lang-toggle:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-light);
}

.lang-toggle .lang-current {
    font-weight: 600;
}

.lang-toggle i {
    font-size: 10px;
    transition: transform 0.3s;
}

.lang-toggle.active i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    min-width: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 2px 0;
    margin: 0;
    z-index: 100;
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li {
    margin: 0;
    padding: 0;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s;
}

.lang-option:hover {
    background: var(--color-bg-light);
    color: var(--color-primary-dark);
}

.lang-option.active {
    background: var(--color-primary);
    color: var(--color-primary-dark);
    font-weight: 600;
}

.lang-flag {
    font-size: 14px;
    line-height: 1;
}

.lang-name {
    font-weight: 500;
}

/* ============================================
   REACH US BUTTON
   ============================================ */

.btn-reach-us {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.btn-reach-us:hover {
    color: var(--color-primary);
}

/* ============================================
   MENU TOGGLE BUTTON
   ============================================ */

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.menu-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary-dark);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--color-primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Active State Animation */
.menu-toggle.active .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   MEGA MENU MODAL - ETKİLİ TASARIM
   ============================================ */

.mega-menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.mega-menu-modal.active {
    display: flex;
    animation: fadeInBg 0.3s ease;
}

@keyframes fadeInBg {
    from { background: rgba(0, 0, 0, 0); }
    to { background: rgba(0, 0, 0, 0.5); }
}

.mega-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

/* Mega Menu Content Box */
.mega-menu-content {
    position: relative;
    background: var(--color-white);
    max-width: 1000px;
    width: 90%;
    border-radius: 4px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35),
                0 10px 25px rgba(0, 0, 0, 0.25);
    animation: slideDownScale 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 50px 40px 40px;
}

@keyframes slideDownScale {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Close Button */
.mega-menu-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 20px;
    color: var(--color-primary-dark);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.mega-menu-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

/* ============================================
   MEGA MENU GRID - 5 COLUMNS WITH LINES
   ============================================ */

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

/* Menu Column */
.mega-menu-column {
    position: relative;
    padding: 0 25px 30px 25px;
    min-height: 180px;
    border-left: 2px solid #E8E8E8;
}

/* İlk kolonun sol border'ı yok */
.mega-menu-column:first-child {
    border-left: none;
}

/* Green Vertical Line - Daha kalın ve uzun */
.menu-green-line {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100px;
    width: 4px;
    background: var(--color-primary);
    z-index: 1;
    border-radius: 2px;
}

/* İlk kolonda yeşil çizgi yok */
.mega-menu-column:first-child .menu-green-line {
    display: none;
}

/* Category Title */
.mega-menu-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
    line-height: 1.3;
    position: relative;
    z-index: 3;
    padding-left: 10px;
}

/* Menu Items List */
.mega-menu-list {
    list-style: none;
    padding: 0 0 0 10px;
    margin: 0;
    position: relative;
    z-index: 3;
}

.mega-menu-list li {
    margin: 0 0 14px 0;
    padding: 0;
}

.mega-menu-list li a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 3;
}

/* Link Hover Effect */
.mega-menu-list li a:hover {
    color: var(--color-primary-dark);
    transform: translateX(5px);
}

.mega-menu-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.mega-menu-list li a:hover::after {
    width: 100%;
}

/* ============================================
   CALL CENTER - IN LAST COLUMN
   ============================================ */

.mega-menu-bottom {
    grid-column: 5 / 6;
    padding: 50px 25px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-center-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.call-center-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.call-center-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    background: var(--color-primary-dark);
    padding: 2px 10px;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    border: 3px solid var(--color-primary);
    white-space: nowrap;
}

.call-center-number:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 71, 152, 0.25);
}

/* ============================================
   ETKİLİ ANIMASYONLAR
   ============================================ */

/* Columns slide in from bottom */
.mega-menu-modal.active .mega-menu-column {
    animation: slideUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.mega-menu-modal.active .mega-menu-column:nth-child(1) { animation-delay: 0.1s; }
.mega-menu-modal.active .mega-menu-column:nth-child(2) { animation-delay: 0.15s; }
.mega-menu-modal.active .mega-menu-column:nth-child(3) { animation-delay: 0.2s; }
.mega-menu-modal.active .mega-menu-column:nth-child(4) { animation-delay: 0.25s; }
.mega-menu-modal.active .mega-menu-column:nth-child(5) { animation-delay: 0.3s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Green lines grow from center */
.mega-menu-modal.active .menu-green-line {
    animation: lineGrow 0.4s ease forwards;
    transform: translateY(-50%) scaleY(0);
    transform-origin: center;
}

.mega-menu-modal.active .mega-menu-column:nth-child(2) .menu-green-line { animation-delay: 0.2s; }
.mega-menu-modal.active .mega-menu-column:nth-child(3) .menu-green-line { animation-delay: 0.25s; }
.mega-menu-modal.active .mega-menu-column:nth-child(4) .menu-green-line { animation-delay: 0.3s; }
.mega-menu-modal.active .mega-menu-column:nth-child(5) .menu-green-line { animation-delay: 0.35s; }

@keyframes lineGrow {
    to {
        transform: translateY(-50%) scaleY(1);
    }
}

/* Links cascade in */
.mega-menu-modal.active .mega-menu-list li {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

.mega-menu-modal.active .mega-menu-column:nth-child(1) .mega-menu-list li:nth-child(1) { animation-delay: 0.15s; }
.mega-menu-modal.active .mega-menu-column:nth-child(1) .mega-menu-list li:nth-child(2) { animation-delay: 0.18s; }
.mega-menu-modal.active .mega-menu-column:nth-child(1) .mega-menu-list li:nth-child(3) { animation-delay: 0.21s; }

.mega-menu-modal.active .mega-menu-column:nth-child(2) .mega-menu-list li:nth-child(1) { animation-delay: 0.2s; }
.mega-menu-modal.active .mega-menu-column:nth-child(2) .mega-menu-list li:nth-child(2) { animation-delay: 0.23s; }
.mega-menu-modal.active .mega-menu-column:nth-child(2) .mega-menu-list li:nth-child(3) { animation-delay: 0.26s; }

.mega-menu-modal.active .mega-menu-column:nth-child(3) .mega-menu-list li:nth-child(1) { animation-delay: 0.25s; }
.mega-menu-modal.active .mega-menu-column:nth-child(3) .mega-menu-list li:nth-child(2) { animation-delay: 0.28s; }

.mega-menu-modal.active .mega-menu-column:nth-child(4) .mega-menu-list li:nth-child(1) { animation-delay: 0.3s; }
.mega-menu-modal.active .mega-menu-column:nth-child(4) .mega-menu-list li:nth-child(2) { animation-delay: 0.33s; }

.mega-menu-modal.active .mega-menu-column:nth-child(5) .mega-menu-list li:nth-child(1) { animation-delay: 0.35s; }
.mega-menu-modal.active .mega-menu-column:nth-child(5) .mega-menu-list li:nth-child(2) { animation-delay: 0.38s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title fade in */
.mega-menu-modal.active .mega-menu-title {
    animation: fadeIn 0.4s ease forwards;
    opacity: 0;
}

.mega-menu-modal.active .mega-menu-column:nth-child(1) .mega-menu-title { animation-delay: 0.12s; }
.mega-menu-modal.active .mega-menu-column:nth-child(2) .mega-menu-title { animation-delay: 0.17s; }
.mega-menu-modal.active .mega-menu-column:nth-child(3) .mega-menu-title { animation-delay: 0.22s; }
.mega-menu-modal.active .mega-menu-column:nth-child(4) .mega-menu-title { animation-delay: 0.27s; }
.mega-menu-modal.active .mega-menu-column:nth-child(5) .mega-menu-title { animation-delay: 0.32s; }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Call center slide in */
.mega-menu-modal.active .mega-menu-bottom {
    animation: slideInRight 0.5s ease forwards 0.4s;
    opacity: 0;
    transform: translateX(20px);
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */

.mega-menu-content::-webkit-scrollbar {
    width: 6px;
}

.mega-menu-content::-webkit-scrollbar-track {
    background: #F5F5F5;
}

.mega-menu-content::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

/* ============================================
   MOBILE STYLES (0 - 767px) - HEADER ALTINDA
   ============================================ */

@media only screen and (max-width: 767px) {
    
    :root {
        --header-height: 60px;
        --container-padding: 15px;
    }
    
    /* Header */
    .main-header {
        height: 80px;
    }
    
    /* .header-logo .logo-img {
        height: 35px;
    } */
    
    .header-actions {
        gap: 10px;
    }
    
    /* Language Switcher */
    .lang-toggle {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .lang-option {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    /* Reach Us Button */
    .btn-reach-us {
        font-size: 14px;
    }
    
    .menu-text {
        font-size: 14px;
    }
    
    .menu-icon {
        width: 20px;
    }
    
    /* Menu open body styles */
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open .site-header {
        z-index: 1001;
    }
    
    /* ============================================
       HEADER ALTINDA MEGA MENU - MOBILE
       ============================================ */
    
    .mega-menu-modal {
        align-items: flex-start;
        justify-content: flex-start;
        background: rgba(0, 0, 0, 0.1);
        z-index: 1000; /* Header'dan düşük */
    }
    
    .mega-menu-content {
        max-width: none;
        width: 100%;
        height: auto;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        border-radius: 0;
        padding: 50px 20px 25px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        animation: slideDownMobile 0.3s ease;
        position: absolute;
        top: var(--header-height);
        left: 0;
        z-index: 1000;
        background: var(--color-white);
    }
    
    @keyframes slideDownMobile {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Close button - Header içine */
    .mega-menu-close {
        position: absolute;
        top: 5px;
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 18px;
        background: transparent;
        border-radius: 50%;
        color: var(--color-primary);
        z-index: 1002;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mega-menu-close:hover {
        background: var(--color-bg-light);
        color: var(--color-primary-dark);
        transform: rotate(90deg);
    }
    
    /* Single Column Layout */
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 30px;
        border-bottom: none;
    }
    
    .mega-menu-column {
        padding: 0 0 30px 0;
        min-height: auto;
        border-left: none;
        border-bottom: none;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .mega-menu-column:last-child {
        border-bottom: none;
    }
    
    /* Hide green lines on mobile */
    .menu-green-line {
        display: none !important;
    }
    
    /* Title with green underline */
    .mega-menu-title {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 18px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--color-primary);
        color: var(--color-primary-dark);
        animation: none !important;
        opacity: 1 !important;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    /* Menu items */
    .mega-menu-list {
        padding-left: 0;
    }
    
    .mega-menu-list li {
        margin-bottom: 0;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        border-bottom: 1px solid #F5F5F5;
    }
    
    .mega-menu-list li:last-child {
        border-bottom: none;
    }
    
    .mega-menu-list li a {
        font-size: 14px;
        padding: 14px 0;
        display: block;
        color: var(--color-text);
        font-weight: 400;
    }
    
    .mega-menu-list li a:hover {
        color: var(--color-primary);
        transform: none;
    }
    
    .mega-menu-list li a::after {
        display: none;
    }
    
    /* Stagger animation for columns */
    .mega-menu-modal.active .mega-menu-column {
        animation: slideInUp 0.4s ease forwards;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .mega-menu-modal.active .mega-menu-column:nth-child(1) { animation-delay: 0.05s; }
    .mega-menu-modal.active .mega-menu-column:nth-child(2) { animation-delay: 0.1s; }
    .mega-menu-modal.active .mega-menu-column:nth-child(3) { animation-delay: 0.15s; }
    .mega-menu-modal.active .mega-menu-column:nth-child(4) { animation-delay: 0.2s; }
    .mega-menu-modal.active .mega-menu-column:nth-child(5) { animation-delay: 0.25s; }
    
    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Call Center - At bottom */
    .mega-menu-bottom {
        grid-column: 1;
        padding: 30px 0 0;
        border-top: 2px solid #E8E8E8;
        margin-top: 20px;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .call-center-section {
        gap: 15px;
        align-items: stretch;
        text-align: center;
    }
    
    .call-center-label {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--color-text);
    }
    
    .call-center-number {
        font-size: 17px;
        font-weight: 700;
        padding: 15px 24px;
        width: 100%;
        box-shadow: 0 4px 15px rgba(0, 71, 152, 0.2);
        border-radius: 6px;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (0 - 480px)
   ============================================ */

@media only screen and (max-width: 480px) {
    
    .header-actions {
        gap: 8px;
    }
    
    .btn-reach-us {
        display: none;
    }
    
    .lang-toggle {
        padding: 5px 8px;
        font-size: 12px;
    }
    
    /* Header altında adjustments */
    .mega-menu-content {
        padding: 50px 20px 25px;
    }
    
    .mega-menu-close {
        top: 5px;
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .mega-menu-column {
        padding: 0 0 25px 0;
    }
    
    .mega-menu-title {
        font-size: 13px;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .mega-menu-list li a {
        font-size: 13px;
        padding: 12px 0;
    }
    
    .call-center-number {
        font-size: 16px;
        padding: 14px 20px;
    }
}
/* ============================================
   TABLET STYLES (768px - 1200px)
   ============================================ */

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    
    :root {
        --header-height: 65px;
        --container-padding: 20px;
    }
    
    .container {
        max-width: 960px;
    }
    
    /* Header */
    .main-header {
        height: 80px;
    }
    
    /* .header-logo .logo-img {
        height: 40px;
    }
     */
    .header-actions {
        gap: 15px;
    }
    
    .lang-toggle {
        padding: 7px 11px;
        font-size: 14px;
    }
    /* ============================================
       MEGA MENU TABLET - 3 COLUMNS
       ============================================ */
    
    .mega-menu-content {
        max-width: 95%;
        padding: 50px 30px 35px;
    }
    
    /* 3 Column Grid */
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mega-menu-column {
        padding: 0 20px 25px 20px;
        min-height: 200px;
        border-left: 2px solid #E8E8E8;
    }
    
    .mega-menu-column:first-child,
    .mega-menu-column:nth-child(3n+1) {
        border-left: none;
    }
    
    /* Hide green line for first column in each row */
    .mega-menu-column:nth-child(3n+1) .menu-green-line {
        display: none;
    }
    
    .menu-green-line {
        height: 60px;
        width: 4px;
        left: -3px;
    }
    
    .mega-menu-title {
        font-size: 12px;
        margin-bottom: 16px;
        padding-left: 10px;
    }
    
    .mega-menu-list li {
        margin-bottom: 11px;
    }
    
    .mega-menu-list {
        padding-left: 10px;
    }
    
    .mega-menu-list li a {
        font-size: 13px;
    }
    
    /* Call Center - Below Grid, Centered */
    .mega-menu-bottom {
        grid-column: 1 / -1;
        padding: 25px 0 0;
        align-items: center;
    }
    
    .call-center-section {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }
    
    .call-center-label {
        font-size: 11px;
    }
    
    .call-center-number {
        font-size: 15px;
        padding: 9px 26px;
    }
}

/* ============================================
   DESKTOP STYLES (1201px and above)
   ============================================ */

@media only screen and (min-width: 1201px) {
    
    .container {
        max-width: 1320px;
    }
    
    /* Header */
    /* .header-logo .logo-img {
        height: 45px;
    } */
    
    .header-actions {
        gap: 20px;
    }
    
    .lang-toggle {
        padding: 8px 12px;
    }
    
    /* ============================================
       MEGA MENU DESKTOP - 5 COLUMNS
       ============================================ */
    
    .mega-menu-content {
        max-width: 1000px;
        padding: 50px 40px 40px;
    }
    
    /* 5 Column Grid */
    .mega-menu-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .mega-menu-column {
        padding: 0 25px 30px 25px;
        border-left: 2px solid #E8E8E8;
    }
    
    .mega-menu-column:first-child {
        border-left: none;
    }
    
    /* First column has no green line */
    .mega-menu-column:first-child .menu-green-line {
        display: none;
    }
    
    .menu-green-line {
        height: 60px;
        width: 4px;
        left: -3px;
    }
    
    .mega-menu-title {
        font-size: 12px;
        padding-left: 10px;
    }
    
    .mega-menu-list {
        padding-left: 10px;
    }
    
    .mega-menu-list li a {
        font-size: 13px;
    }
    
    /* Call Center - In Last Column */
    .mega-menu-bottom {
        grid-column: 5 / 6;
        padding: 50px 25px 0;
    }
    
    .call-center-number {
        font-size: 16px;
    }
}

/* ============================================
   LARGE DESKTOP (1400px and above)
   ============================================ */

@media only screen and (min-width: 1400px) {
    
    .container {
        max-width: 1320px;
    }
    
    .mega-menu-content {
        max-width: 1100px;
        padding: 60px 50px 45px;
    }
    
    .mega-menu-column {
        padding: 0 30px 30px 30px;
    }
   
    
    .mega-menu-title {
        font-size: 13px;
        padding-left: 10px;
    }
    
    .mega-menu-list {
        padding-left: 10px;
    }
    
    .mega-menu-list li a {
        font-size: 14px;
    }
}
/* ============================================
   SOL MENÜ (Header Left Navigation)
   ============================================ */
.header-nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: auto;
    z-index: 1;
}

.header-nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-list li {
    margin: 0;
    padding: 0;
}

.header-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.header-link:hover {
    color: var(--color-primary);
}
/* ============================================
   HEADER GÖRÜNÜRLÜK AYARLARI
   ============================================ */
.desktop-only { display: flex; }
.mobile-only { display: none; }

@media (max-width: 767px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }

  .header-nav-left { display: none !important; } /* Sol menü gizle */
  .language-switcher { display: none !important; } /* Masaüstü dil seçici gizle */
}

/* ============================================
   MOBILE DİL SEÇİMİ - KÜÇÜK KUTUCUK STİLİ
   ============================================ */

@media only screen and (max-width: 767px) {
    
    /* Dil seçimi kolonu */
    .mega-menu-column.mobile-only {
        padding: 20px 0 0;
        border-top: 2px solid #E8E8E8;
        margin-top: 10px;
    }
    
    /* Dil seçimi başlığı */
    .mega-menu-column.mobile-only .mega-menu-title {
        font-size: 11px;
        font-weight: 700;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--color-primary);
        color: var(--color-text);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* Dil listesi - Flex Layout (yan yana küçük kutular) */
    .mega-menu-column.mobile-only .mega-menu-list {
        display: flex;
        gap: 10px;
        padding: 0;
        justify-content: center;
    }
    
    .mega-menu-column.mobile-only .mega-menu-list li {
        margin: 0;
        border: none;
        flex: 0 0 auto;
    }
    
    /* Dil butonları - Küçük kutucuk stil */
    .mega-menu-column.mobile-only .lang-option {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        min-width: 70px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--color-text);
        background: var(--color-white);
        border: 2px solid #E8E8E8;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    /* Hover durumu */
    .mega-menu-column.mobile-only .lang-option:hover {
        border-color: var(--color-primary);
        background: var(--color-bg-light);
        color: var(--color-primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(163, 222, 2, 0.2);
    }
    
    /* Active (seçili) dil */
    .mega-menu-column.mobile-only .lang-option.active {
        background: var(--color-primary);
        border-color: var(--color-primary);
        color: var(--color-primary-dark);
        font-weight: 700;
        box-shadow: 0 3px 12px rgba(163, 222, 2, 0.3);
    }
    
    .mega-menu-column.mobile-only .lang-option.active:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(163, 222, 2, 0.4);
    }
}

/* ============================================
   EXTRA SMALL MOBILE (0 - 480px)
   ============================================ */

@media only screen and (max-width: 480px) {
    
    .mega-menu-column.mobile-only .mega-menu-title {
        font-size: 10px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .mega-menu-column.mobile-only .mega-menu-list {
        gap: 8px;
    }
    
    .mega-menu-column.mobile-only .lang-option {
        padding: 8px 16px;
        min-width: 60px;
        font-size: 12px;
    }
}