/* ============================================
   TESSLIM360 - HEADER & MEGA MENU v6.0 BLACK
   - Premium Black Header Theme
   - Advanced Mega Menu with Animations
   - Mobile Menu 100% Fixed
   - Smooth Transitions & Effects
   ============================================ */

/* ============================================
   TOP INFO BAR - Premium Black Style
   ============================================ */
.top-info-bar {
    background: #000000;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    position: relative;
    z-index: 10026;
    overflow: visible;
    border-bottom: 1px solid rgba(227, 30, 36, 0.25);
}

.top-info-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    gap: 16px;
}

.top-info-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.top-info-item i {
    color: var(--primary);
    font-size: 0.78rem;
    width: 16px;
    text-align: center;
}

.top-info-item a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-info-item a:hover {
    color: var(--primary-light);
}

.top-info-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-info-social {
    display: flex;
    gap: 6px;
    align-items: center;
}

.top-info-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-info-social a:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.top-info-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
}

/* Topbar Language Mini Switcher */
.top-info-lang {
    position: relative;
}

.lang-switcher-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 600;
}

.lang-switcher-mini:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-switcher-mini img {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-switcher-mini i {
    font-size: 0.65rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.top-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    z-index: 10060;
    display: none;
    padding: 6px;
    border: 1px solid var(--gray-200);
    animation: fadeInDown 0.2s ease;
}

.top-lang-dropdown.active {
    display: block;
}

.top-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: var(--gray-700);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.top-lang-dropdown a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.top-lang-dropdown a.active {
    background: var(--primary-bg);
    color: var(--primary);
    font-weight: 700;
}

.top-lang-dropdown a img {
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Topbar responsive */
@media (max-width: 992px) {
    .top-info-bar {
        display: none;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .top-info-item span {
        display: none;
    }

    .top-info-left {
        gap: 16px;
    }
}

/* ============================================
   STICKY HEADER WRAPPER
   ============================================ */
.site-header-sticky {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10025;
    transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: headerSlideDown 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.site-header-sticky.is-scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-12px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header-sticky {
        animation: none;
    }
}

/* ============================================
   MAIN HEADER V2 - Black Premium Theme
   ============================================ */
.main-header-v2 {
    background: #000000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    width: 100%;
    z-index: 1;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.main-header-v2.scrolled {
    background: #000000;
    border-bottom: 1px solid rgba(227, 30, 36, 0.3);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.main-header .header-inner.header-inner-v2 {
    height: auto;
    min-height: var(--header-height);
}

.header-inner-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    max-width: 80%;
    /* Perfect visibility - centered layout */
    margin: 0 auto;
    gap: 24px;
}

/* ============================================
   CENTER SECTION - Logo & Navigation
   ============================================ */
.header-center-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 10px;
}

.logo-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 12px;
}

.logo-centered:hover {
    transform: scale(1.04);
}

.logo-centered .site-logo {
    height: 62px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-centered:hover .site-logo {
    transform: scale(1.02);
}

.logo-centered .logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    transition: all 0.3s ease;
}

.logo-centered .logo-text span {
    color: var(--primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   DESKTOP NAVIGATION V2 - BLACK PREMIUM
   ============================================ */
.main-nav-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.main-nav-v2:hover {
    border-color: rgba(227, 30, 36, 0.2);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.15);
}

.main-nav-v2 .nav-link {
    padding: 12px 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: visible;
    flex-shrink: 0;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.main-nav-v2 .nav-dropdown-wrapper {
    flex-shrink: 0;
}

.main-nav-v2 .nav-link .nav-icon-desktop {
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.main-nav-v2 .nav-link span {
    position: relative;
    z-index: 1;
    font-weight: 700;
    overflow: visible;
    text-overflow: clip;
    flex-shrink: 0;
}

.main-nav-v2 .nav-link:hover {
    color: var(--white);
    background: rgba(227, 30, 36, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.3), 0 0 20px rgba(227, 30, 36, 0.15);
}

.main-nav-v2 .nav-link:hover .nav-icon-desktop {
    transform: scale(1.15);
    color: var(--white);
}

.main-nav-v2 .nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, #d0171d 50%, #b91118 100%);
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(227, 30, 36, 0.5), 0 0 30px rgba(227, 30, 36, 0.25);
    transform: translateY(-2px);
}

.main-nav-v2 .nav-link.active .nav-icon-desktop {
    color: var(--white);
}

/* ============================================
   RIGHT SECTION - Search, Rent Car, Lang
   ============================================ */
.header-right-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.btn-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-search-toggle:hover {
    background: rgba(227, 30, 36, 0.15);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.4), 0 0 20px rgba(227, 30, 36, 0.2);
}

.btn-rent-car {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #d0171d 50%, #b91118 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.3);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-rent-car::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s;
}

.btn-rent-car:hover::before {
    left: 100%;
}

.btn-rent-car i {
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.btn-rent-car:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-rent-car:hover i {
    transform: scale(1.2) rotate(-5deg);
}

/* ============================================
   HEADER LANGUAGE SWITCHER
   ============================================ */
.header-lang-switcher {
    position: relative;
    margin-left: 8px;
}

.header-lang-switcher .lang-switcher-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header-lang-switcher .lang-switcher-btn:hover {
    background: rgba(227, 30, 36, 0.15);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.4);
    transform: translateY(-2px);
}

.header-lang-switcher .lang-flag {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.header-lang-switcher .lang-switcher-btn:hover .lang-flag {
    transform: scale(1.1);
}

.header-right-section .header-lang-switcher {
    display: flex !important;
}

/* ============================================
   DESKTOP: MEGA MENU PANEL - Fixed Conflicts
   ============================================ */
@media (min-width: 993px) {
    .nav-icon-mobile {
        display: none !important;
    }

    .mobile-nav-header {
        display: none !important;
    }

    .mobile-nav-cta {
        display: none !important;
    }

    .mobile-nav-lang {
        display: none !important;
    }

    .mobile-nav-overlay {
        display: none !important;
    }

    .mobile-toggle {
        display: none !important;
    }

    .btn-whatsapp-mobile {
        display: none !important;
    }

    .main-header-v2 {
        overflow: visible;
    }

    .header-inner-v2 {
        align-items: center;
        padding: 12px 28px;
        gap: 20px;
    }

    .header-center-section {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 18px;
        flex: 1 1 auto;
        min-width: 0;
        overflow: visible;
    }

    .logo-centered {
        flex-shrink: 0;
        padding: 4px 10px;
    }

    .logo-centered .site-logo {
        height: 56px;
    }

    .logo-centered .logo-text {
        font-size: 2rem;
    }

    .main-nav-v2 {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
        flex-wrap: nowrap;
        padding: 8px 12px;
        gap: 4px;
        overflow: visible;
    }

    .main-nav-v2 .nav-link {
        padding: 11px 16px;
        font-size: 0.9rem;
        gap: 8px;
    }

    .main-nav-v2 .nav-link.has-dropdown {
        padding-right: 14px;
        gap: 8px;
    }

    .main-nav-v2 .nav-link.has-dropdown .nav-dropdown-arrow {
        margin-left: 4px;
        flex-shrink: 0;
    }

    .main-nav-v2 .nav-link .nav-icon-desktop {
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .btn-search-toggle {
        width: 42px;
        height: 42px;
    }

    .btn-rent-car {
        padding: 11px 22px;
        font-size: 0.88rem;
    }

    .nav-dropdown-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }

    .nav-link.has-dropdown {
        padding-right: 14px;
    }

    .nav-dropdown-arrow {
        font-size: 0.75rem;
        transition: transform 0.3s ease;
        margin-left: auto;
        flex-shrink: 0;
    }

    .nav-link.has-dropdown:hover .nav-dropdown-arrow,
    .nav-link.has-dropdown.dropdown-open .nav-dropdown-arrow {
        transform: rotate(180deg);
        color: var(--primary);
    }

    /* Categories Panel - Safe width to prevent overflow */
    .mega-menu--categories-panel {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        background: var(--white);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 1px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 10050;
        pointer-events: none;
        width: 95vw;
        max-width: 1100px;
        overflow: hidden;
        border-top: 3px solid var(--primary);
        padding: 0;
        box-sizing: border-box;
    }

    /* Hide arrow and red top bar for ultra-clean look like the images */
    .mega-menu--categories-panel::before,
    .mega-menu--categories-panel::after {
        display: none;
    }

    /* Hover & open states */
    .nav-dropdown-wrapper[data-mega="categories"]:hover .mega-menu--categories-panel,
    .nav-dropdown-wrapper[data-mega="categories"].dropdown-open .mega-menu--categories-panel {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    /* Position categories panel below the nav wrapper */
    .nav-dropdown-wrapper[data-mega="categories"] {
        position: static;
    }

    /* Close other panels when one opens */
    .nav-dropdown-wrapper[data-mega="categories"]:hover~.nav-dropdown-wrapper[data-mega="brands"] .mega-menu--brands-panel,
    .nav-dropdown-wrapper[data-mega="brands"]:hover~.nav-dropdown-wrapper[data-mega="categories"] .mega-menu--categories-panel {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* Brands Panel - FIXED WIDTH to prevent screen overflow */
    .mega-menu--brands-panel {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        background: var(--white);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 10050;
        pointer-events: none;
        width: 95vw;
        max-width: 1150px;
        overflow: hidden;
        border-top: 3px solid var(--primary);
        padding: 0;
        box-sizing: border-box;
    }

    /* Hide arrow and red top bar */
    .mega-menu--brands-panel::before,
    .mega-menu--brands-panel::after {
        display: none;
    }

    .nav-dropdown-wrapper[data-mega="brands"]:hover .mega-menu--brands-panel,
    .nav-dropdown-wrapper[data-mega="brands"].dropdown-open .mega-menu--brands-panel {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    /* Position brands panel below the nav wrapper */
    .nav-dropdown-wrapper[data-mega="brands"] {
        position: static;
    }

    /* Hide panel headers to match image */
    .mega-menu-panel-header {
        display: none;
    }
        border-bottom: 1px solid var(--gray-200);
        background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mega-menu-panel-header--brands {
        background: linear-gradient(135deg, var(--primary-bg) 0%, var(--white) 100%);
    }

    .mega-menu-panel-title {
        font-size: 0.92rem;
        font-weight: 800;
        color: var(--secondary);
        text-transform: uppercase;
        letter-spacing: 0.8px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mega-menu-panel-title i {
        color: var(--primary);
        font-size: 1rem;
    }

    .mega-panel-link-all {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--primary);
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
    }

    .mega-panel-link-all:hover {
        gap: 10px;
    }

    .mega-panel-link-all::after {
        content: '\f061';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.75rem;
    }

    /* Category Scroll - Single horizontal row, no scroll */
    .nav-cat-scroll {
        overflow: visible;
        padding: 24px 30px 30px;
    }

    /* Category Cards - Single flex row matching the image */
    .nav-cat-cards {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
    }

    .nav-cat-card {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 0 0 110px;
        width: 110px;
        gap: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .nav-cat-card-cover {
        position: relative;
        width: 100%;
        height: 70px;
        border-radius: 12px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Remove overlay */
    .nav-cat-card::before { display: none; }

    .nav-cat-card:hover .nav-cat-card-cover {
        transform: scale(1.12);
    }

    .nav-cat-card-fallback {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-cat-card-fallback i {
        font-size: 2.5rem;
        color: rgba(0, 0, 0, 0.15);
    }

    .nav-cat-card:hover .nav-cat-card-fallback i {
        color: rgba(255, 255, 255, 0.25);
    }

    .nav-cat-card--all .nav-cat-card-cover {
        background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .nav-cat-card-label {
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--secondary);
        text-align: center;
        transition: color 0.3s ease;
        display: block;
        width: 100%;
    }

    .nav-cat-card:hover .nav-cat-card-label {
        color: var(--primary);
    }

    .nav-cat-card-label i { display: none; }
    .nav-cat-card-label::after { display: none; }

    .nav-cat-card:hover .nav-cat-card-label::after {
        opacity: 1;
        transform: translateX(0);
    }

    /* Brand Scroll - No overflow */
    .nav-brand-scroll {
        overflow: hidden;
        padding: 24px 15px 30px;
    }

    /* Brands Grid - 10 columns standard for better fit */
    .mega-brands-grid--full {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        gap: 5px;
        width: 100%;
    }

    .mega-brand-item--tile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 8px 4px;
        border-radius: 10px;
        border: none;
        background: transparent;
        transition: all 0.25s ease;
        text-align: center;
    }

    .mega-brand-item--tile:hover {
        background: var(--white);
        border-color: var(--primary);
        box-shadow: 0 4px 16px rgba(227, 30, 36, 0.12);
        transform: translateY(-4px) scale(1.03);
    }

    .mega-brand-item--tile .mega-brand-logo {
        width: 50px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mega-brand-item--tile .mega-brand-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: none;
        transition: transform 0.3s ease;
    }

    .mega-brand-item--tile:hover .mega-brand-logo img {
        transform: scale(1.15);
    }

    .mega-brand-item--tile .mega-brand-name {
        font-size: 0.65rem;
        font-weight: 700;
        color: var(--secondary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        transition: all 0.3s ease;
    }

    .mega-brand-item--tile:hover .mega-brand-name {
        color: var(--primary);
    }

    .mega-brand-logo--text {
        width: 60px;
        height: 42px;
        background: var(--primary-bg);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        font-weight: 900;
        color: var(--primary);
        letter-spacing: -0.5px;
    }
}

/* ============================================
   SEARCH MODAL - Enhanced
   ============================================ */

/* Body lock when search modal is open */
body.search-modal-open {
    overflow: hidden !important;
}

.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10060;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.search-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 700px;
    background: var(--white, #fff);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    z-index: 10061;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        visibility 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.search-modal-inner {
    padding: 32px;
}

.search-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.search-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.search-modal-header i {
    font-size: 2rem;
    color: var(--primary);
}

.search-modal-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0;
}

.search-modal-input-wrap {
    position: relative;
    margin-bottom: 20px;
}

.search-modal-input-wrap>i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--gray-400);
}

.search-modal-input-wrap input {
    width: 100%;
    padding: 16px 56px 16px 52px;
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-modal-input-wrap input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.search-modal-kbd {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px 8px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

.search-modal-filters {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    margin-bottom: 20px;
}

.search-modal-select {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-modal-select:focus {
    outline: none;
    border-color: var(--primary);
}

.search-modal-submit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #d0171d 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.3);
}

.search-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.search-modal-quick {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.search-modal-quick-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
}

.search-modal-quick-tag {
    padding: 6px 14px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.search-modal-quick-tag:hover {
    background: var(--primary-bg);
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   RESPONSIVE - Large Desktop (>1400px)
   ============================================ */
@media (min-width: 1400px) {
    .header-inner-v2 {
        padding: 14px 40px;
        max-width: 1600px;
        gap: 24px;
    }

    .logo-centered .site-logo {
        height: 64px;
    }

    .logo-centered .logo-text {
        font-size: 2.3rem;
    }

    .main-nav-v2 {
        gap: 6px;
        padding: 10px 14px;
    }

    .main-nav-v2 .nav-link {
        padding: 12px 18px;
        font-size: 0.92rem;
    }
}

/* Standard Desktop (993px - 1399px) */
@media (min-width: 993px) and (max-width: 1399px) {
    .header-inner-v2 {
        padding: 12px 20px;
        gap: 14px;
    }

    .logo-centered .site-logo {
        height: 52px;
    }

    .logo-centered .logo-text {
        font-size: 1.9rem;
    }

    .main-nav-v2 {
        gap: 3px;
        padding: 8px 10px;
    }

    .main-nav-v2 .nav-link {
        padding: 11px 14px;
        font-size: 0.88rem;
        gap: 7px;
    }

    .main-nav-v2 .nav-link .nav-icon-desktop {
        font-size: 0.92rem;
    }

    .btn-rent-car {
        padding: 10px 18px;
        font-size: 0.86rem;
    }
}

/* ============================================
   MOBILE - COMPLETE (max-width: 992px)
   ============================================ */
@media (max-width: 992px) {

    .btn-search-toggle {
        display: flex !important;
        width: 40px;
        height: 40px;
        padding: 0;
        flex-shrink: 0;
    }

    .main-header .header-inner.header-inner-v2 {
        min-height: 68px;
    }

    .header-inner-v2 {
        padding: 10px 12px;
        gap: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-header-v2 {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #000000;
    }

    /* Mobile Toggle Button — FULL LEFT */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        gap: 5px;
        cursor: pointer;
        z-index: 100;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
        border: 1.5px solid rgba(255, 255, 255, 0.12);
        transition: all 0.3s ease;
        flex-shrink: 0;
        order: -1;
        margin-right: auto;
    }

    .mobile-toggle:active {
        transform: scale(0.93);
    }

    .mobile-toggle span {
        width: 20px;
        height: 2.5px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 2px;
        transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        display: block;
    }

    .mobile-toggle.active {
        background: rgba(227, 30, 36, 0.2);
        border-color: var(--primary);
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--white);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background: var(--white);
    }

    /* Center Section Mobile — Logo bigger & centered */
    .header-center-section {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        pointer-events: auto;
    }

    .logo-centered {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo-centered .site-logo {
        height: 56px;
    }

    .logo-centered .logo-text {
        font-size: 1.85rem;
    }

    /* Right Section Mobile — FULL RIGHT */
    .header-right-section {
        gap: 8px;
        flex-shrink: 0;
        margin-left: auto;
    }

    .btn-whatsapp-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        color: white !important;
        border-radius: 12px;
        font-size: 1.3rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        text-decoration: none;
    }

    .btn-whatsapp-mobile:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
        color: white !important;
    }

    .btn-search-hide-mobile {
        display: none !important;
    }

    .btn-rent-car {
        padding: 10px 18px;
        font-size: 0.88rem;
        background: var(--primary) !important;
    }

    .btn-rent-car span {
        display: block !important;
    }

    .btn-rent-car i {
        font-size: 1.1rem;
    }

    /* Language Dropdown — Premium Dark Design */
    .header-lang-switcher .lang-switcher-btn {
        padding: 7px 12px;
        background: rgba(255, 255, 255, 0.06);
        border: 1.5px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        gap: 6px;
    }

    .header-lang-switcher .lang-dropdown {
        right: 0;
        left: auto;
        min-width: 180px;
        background: #111;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04);
        padding: 8px;
        margin-top: 8px;
        backdrop-filter: blur(20px);
    }

    .header-lang-switcher .lang-dropdown a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 10px;
        color: rgba(255,255,255,0.8);
        font-size: 0.88rem;
        font-weight: 600;
        transition: all 0.2s;
        text-decoration: none;
    }

    .header-lang-switcher .lang-dropdown a:hover {
        background: rgba(227, 30, 36, 0.15);
        color: #fff;
    }

    .header-lang-switcher .lang-dropdown a.active {
        background: linear-gradient(135deg, var(--primary), #d0171d);
        color: #fff;
        box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
    }

    .header-lang-switcher .lang-dropdown .lang-flag {
        width: 24px;
        height: 18px;
        border-radius: 3px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }

    /* ============================================
       MOBILE NAVIGATION DRAWER - COMPLETE FIX
       ============================================ */
    .main-nav-v2 {
        position: fixed;
        top: 0;
        left: 0;
        width: 88%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background: #0a0a0a;
        z-index: 10050;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        transform: translateX(-105%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
        border-radius: 0 20px 20px 0;
        border: none;
        border-right: 1px solid rgba(227, 30, 36, 0.2);
    }

    .main-nav-v2.active {
        transform: translateX(0);
    }

    /* Mobile Nav Header */
    .mobile-nav-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
        position: sticky;
        top: 0;
        z-index: 10;
        flex-shrink: 0;
    }

    .mobile-nav-header .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-nav-header .site-logo {
        height: 38px;
    }

    .mobile-nav-header .logo-text {
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--white);
    }

    .mobile-nav-close {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary) 0%, #d0171d 100%);
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        color: var(--white);
        font-size: 1.3rem;
        box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
    }

    .mobile-nav-close:hover {
        background: linear-gradient(135deg, #d0171d 0%, var(--primary) 100%);
        transform: rotate(90deg) scale(1.05);
    }

    /* Mobile Nav Links */
    .main-nav-v2>.nav-link,
    .main-nav-v2>.nav-dropdown-wrapper>.nav-link {
        padding: 16px 24px;
        font-size: 1rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        text-decoration: none;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        transform: none;
    }

    .main-nav-v2>.nav-link::before,
    .main-nav-v2>.nav-dropdown-wrapper>.nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-gradient);
        transform: scaleY(0);
        transition: transform 0.3s ease;
        border-radius: 0;
    }

    .main-nav-v2>.nav-link:hover,
    .main-nav-v2>.nav-link.active,
    .main-nav-v2>.nav-dropdown-wrapper>.nav-link:hover,
    .main-nav-v2>.nav-dropdown-wrapper>.nav-link.active {
        background: linear-gradient(90deg, rgba(227, 30, 36, 0.15) 0%, rgba(227, 30, 36, 0.03) 100%);
        color: var(--white);
        padding-left: 28px;
        border-color: transparent;
        box-shadow: none;
        transform: none;
    }

    .main-nav-v2>.nav-link:hover::before,
    .main-nav-v2>.nav-link.active::before,
    .main-nav-v2>.nav-dropdown-wrapper>.nav-link:hover::before,
    .main-nav-v2>.nav-dropdown-wrapper>.nav-link.active::before {
        transform: scaleY(1);
    }

    /* Mobile: override active link to not be white bg */
    .main-nav-v2>.nav-link.active {
        color: var(--white);
        background: linear-gradient(90deg, rgba(227, 30, 36, 0.15) 0%, transparent 100%);
    }

    .nav-icon-mobile {
        display: inline-flex !important;
        width: 24px;
        text-align: center;
        flex-shrink: 0;
        font-size: 1.1rem;
    }

    /* Hide car icon on mobile - doesn't look good */
    .main-nav-v2>.nav-dropdown-wrapper[data-mega="categories"] .nav-link .nav-icon-desktop,
    .main-nav-v2>.nav-dropdown-wrapper[data-mega="categories"] .nav-link .nav-icon-mobile {
        display: none !important;
    }

    /* Mobile Dropdown Arrow */
    .nav-dropdown-wrapper {
        position: relative;
        display: block;
    }

    .nav-dropdown-arrow {
        display: inline-flex !important;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.06);
        border: 1.5px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        transition: all 0.3s ease;
        cursor: pointer;
        z-index: 10;
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-dropdown-arrow:active {
        transform: scale(0.9);
        background: rgba(227, 30, 36, 0.2);
    }

    .has-dropdown.dropdown-open .nav-dropdown-arrow {
        transform: rotate(180deg);
        color: var(--white);
        background: rgba(227, 30, 36, 0.2);
        border-color: var(--primary);
    }

    /* Mobile Mega Menu Panels */
    .nav-dropdown-wrapper .mega-menu--categories-panel,
    .nav-dropdown-wrapper .mega-menu--brands-panel {
        position: static !important;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        transform: none !important;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease,
            padding 0.3s ease;
        opacity: 0;
        visibility: hidden;
        border: none;
        background: #0f0f0f;
        margin-top: 0;
        pointer-events: none;
        display: block;
    }

    .nav-dropdown-wrapper .mega-menu--categories-panel::before,
    .nav-dropdown-wrapper .mega-menu--brands-panel::before,
    .nav-dropdown-wrapper .mega-menu--categories-panel::after,
    .nav-dropdown-wrapper .mega-menu--brands-panel::after {
        display: none !important;
    }

    .nav-dropdown-wrapper .mega-menu--categories-panel.active,
    .nav-dropdown-wrapper .mega-menu--brands-panel.active {
        max-height: 5000px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Mobile panel header */
    .mega-menu-panel-header {
        padding: 14px 20px;
        background: #111111;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-menu-panel-header--brands {
        background: #111111;
    }

    .mega-menu-panel-title {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .mega-menu-panel-title i {
        display: none;
    }

    .mega-panel-link-all {
        font-size: 0.75rem;
        color: var(--primary);
    }

    /* Mobile category cards */
    .nav-cat-scroll {
        max-height: none;
        overflow: visible;
        padding: 16px;
    }

    .nav-cat-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .nav-cat-card {
        flex: none;
        width: 100%;
        height: 90px;
        border-radius: 14px;
        border: 2px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .nav-cat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
        z-index: 1;
    }

    .nav-cat-card:active {
        transform: scale(0.98);
    }

    .nav-cat-card-cover {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
    }

    .nav-cat-card-fallback {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-cat-card-fallback i {
        font-size: 2rem;
        color: rgba(0, 0, 0, 0.12);
    }

    .nav-cat-card-label {
        position: absolute;
        bottom: 10px;
        left: 12px;
        right: 12px;
        z-index: 2;
        color: #fff;
        font-size: 0.82rem;
        font-weight: 800;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .nav-cat-card-label i {
        font-size: 0.7rem;
        opacity: 0.7;
    }

    .nav-cat-card-label::after {
        display: none;
    }

    /* Mobile brands grid */
    .nav-brand-scroll {
        max-height: none;
        overflow: visible;
        padding: 16px;
    }

    .mega-brands-grid--full {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .mega-brand-item--tile {
        padding: 12px 8px;
        border-radius: 12px;
        border: 1.5px solid rgba(255, 255, 255, 0.08);
        background: #1a1a1a;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
        transition: all 0.25s ease;
    }

    .mega-brand-item--tile:active {
        transform: scale(0.96);
        border-color: var(--primary);
    }

    .mega-brand-item--tile .mega-brand-logo {
        width: 48px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mega-brand-item--tile .mega-brand-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: brightness(0) invert(1) opacity(0.7);
        transition: all 0.3s ease;
    }

    .mega-brand-item--tile:hover .mega-brand-logo img,
    .mega-brand-item--tile:active .mega-brand-logo img {
        filter: brightness(1) invert(0) opacity(1);
    }

    .mega-brand-item--tile .mega-brand-name {
        font-size: 0.72rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .mega-brand-logo--text {
        width: 48px;
        height: 36px;
        background: rgba(227, 30, 36, 0.15);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: 900;
        color: var(--primary);
    }

    /* Mobile CTA */
    .mobile-nav-cta {
        padding: 20px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: #0a0a0a;
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        flex-shrink: 0;
    }

    .mobile-nav-cta .btn {
        justify-content: center;
        padding: 14px 20px;
        font-weight: 700;
        font-size: 0.95rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    /* Mobile Language Switcher */
    .mobile-nav-lang {
        padding: 16px 24px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        background: #0a0a0a;
        flex-shrink: 0;
    }

    .mobile-lang-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 8px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        border: 1.5px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        font-weight: 700;
        font-size: 0.78rem;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.7);
    }

    .mobile-lang-item:hover,
    .mobile-lang-item.active {
        border-color: var(--primary);
        background: rgba(227, 30, 36, 0.15);
        color: var(--white);
    }

    .mobile-lang-item img {
        border-radius: 3px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
        width: 18px;
    }

    /* Mobile Nav Overlay */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 10040;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
        pointer-events: none;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Prevent body scroll */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        touch-action: none !important;
    }

    /* Search Modal Mobile */
    .search-modal {
        width: 95%;
        max-width: 500px;
    }

    .search-modal-inner {
        padding: 24px;
    }

    .search-modal-header h3 {
        font-size: 1.5rem;
    }

    .search-modal-filters {
        grid-template-columns: 1fr;
    }

    .search-modal-submit {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .main-header .header-inner.header-inner-v2 {
        min-height: 60px;
    }

    .header-inner-v2 {
        padding: 8px 10px;
    }

    .mobile-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-toggle span {
        width: 18px;
        height: 2px;
    }

    .logo-centered .site-logo {
        height: 48px;
    }

    .logo-centered .logo-text {
        font-size: 1.6rem;
    }

    /* Hide rent car button on mobile */
    .btn-rent-car {
        display: none !important;
    }

    .btn-whatsapp-mobile {
        width: 36px;
        height: 36px;
        font-size: 1.15rem;
    }

    .header-lang-switcher .lang-switcher-btn {
        padding: 6px 10px;
    }

    .mobile-nav-lang {
        grid-template-columns: repeat(4, 1fr);
    }

    .mega-brands-grid--full {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-cat-cards {
        grid-template-columns: 1fr;
    }
}

/* Masaüstü: header bir tık daha kompakt */
@media (min-width: 993px) {
    .top-info-content {
        padding: 5px 0;
    }

    .top-info-item {
        font-size: 0.74rem;
    }

    .top-info-item i {
        font-size: 0.72rem;
    }

    .top-info-social a {
        width: 26px;
        height: 26px;
        font-size: 0.72rem;
    }

    .header-inner-v2 {
        padding: 8px 28px;
        gap: 16px;
    }

    .header-center-section {
        gap: 6px;
    }

    .logo-centered {
        padding: 4px 8px;
    }

    .logo-centered .site-logo {
        height: 48px;
    }

    .logo-centered .logo-text {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }

    .main-nav-v2 .nav-link {
        padding: 8px 14px;
        font-size: 0.88rem;
        border-radius: 10px;
        border-width: 1px;
    }

    .main-nav-v2 .nav-link .nav-icon-desktop {
        font-size: 0.9rem;
    }

    .btn-search-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
        border-width: 1px;
    }

    .btn-rent-car {
        padding: 9px 18px;
        font-size: 0.875rem;
        border-radius: 10px;
        border-width: 1px;
    }

    .btn-rent-car i {
        font-size: 1rem;
    }

    .header-lang-switcher .lang-switcher-btn {
        padding: 6px 11px;
        border-radius: 10px;
        border-width: 1px;
    }

    .main-header .header-inner.header-inner-v2 {
        min-height: 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}