/**
 * File Path: public/assets/css/frontend/components/header.css
 * Header Component Styles for FinPluss - Version 3
 * Updated: Top bar always visible, Calculator menu 2 columns
 */

/* ============================================
   CSS Variables & Root
   ============================================ */
:root {
    --primary-orange: #F36D21;
    --primary-blue: #243E93;
    --primary-black: #000000;
    --header-height: 60px;
    --header-mobile-height: 60px;
    --topbar-height: 36px;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Header Wrapper
   ============================================ */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    height: calc(var(--header-height) + var(--topbar-height));
    transition: box-shadow 0.3s var(--transition-smooth);
    overflow: visible;
}

.header-wrapper.header-scrolled {
    height: calc(var(--header-height) + var(--topbar-height)); /* Keep full height */
}

/* Removed the hiding behavior for scrolled state */
.header-wrapper.header-scrolled .header-topbar {
    transform: translateY(0); /* Keep at 0 */
    opacity: 1; /* Keep visible */
    pointer-events: auto; /* Keep interactive */
}

/* ============================================
   Top Bar
   ============================================ */
.header-topbar {
    background: linear-gradient(135deg, #0b1f5f 0%, #0d2571 100%);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s var(--transition-smooth); /* Only transition opacity now */
    z-index: 2;
}

.header-topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 93, 4, 0.2), transparent);
    animation: shimmer 6s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-topbar-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header-topbar-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-topbar-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-topbar-item i {
    color: var(--primary-orange);
    font-size: 12px;
}

.header-topbar-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-topbar-item a:hover {
    color: var(--primary-orange);
}

.header-topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-quick-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.header-quick-link:hover {
    background: rgba(243, 109, 33, 0.2);
    color: white;
}

/* ============================================
   Main Header
   ============================================ */
.header-main {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: absolute;
    top: var(--topbar-height); /* Position below topbar */
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 40px rgba(36, 62, 147, 0.08);
    transition: box-shadow 0.3s var(--transition-smooth);
}

.header-wrapper.header-scrolled .header-main {
    box-shadow: 0 4px 30px rgba(36, 62, 147, 0.12);
}

.header-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ============================================
   Logo
   ============================================ */
.header-logo {
    flex-shrink: 0;
}

.header-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.header-logo-link:hover .header-logo-img {
    transform: scale(1.05);
}

/* ============================================
   Navigation
   ============================================ */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.header-nav-item {
    position: relative;
}

.header-nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-nav-link:hover {
    background: linear-gradient(135deg, rgba(243, 109, 33, 0.08), rgba(243, 109, 33, 0.04));
    color: var(--primary-orange);
}

.header-nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), #ff8c42);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.header-nav-link:hover .header-nav-indicator,
.header-nav-link.active .header-nav-indicator {
    width: 80%;
}

.header-dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
    color: #999;
}

.header-nav-item:hover .header-dropdown-icon {
    transform: rotate(180deg);
    color: var(--primary-orange);
}

/* ============================================
   Mega Menu - Precise Hover Zones
   ============================================ */
.header-has-dropdown {
    position: relative;
    z-index: 1001;
}

/* Remove the wide invisible bridge - only keep small connection area */
.header-has-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px; /* Reduced from 20px */
    z-index: 10001;
    pointer-events: none; /* Allow mouse to pass through except when menu is open */
}

/* Only activate bridge when dropdown is visible */
.header-has-dropdown:hover::before {
    pointer-events: auto;
}

.header-mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(36, 62, 147, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
    overflow: hidden;
    pointer-events: none;
    z-index: 10000;
}

/* Add invisible connector only between nav link and menu */
.header-mega-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    pointer-events: auto;
}

.header-services-menu {
    width: 1300px;
}

.header-calculators-menu {
    width: 700px; /* Updated from 900px for 2 columns */
}

/* Only trigger on nav link hover, not the entire dropdown container */
.header-nav-link.header-dropdown-toggle:hover ~ .header-mega-menu,
.header-mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.header-nav-item:nth-child(2) .header-services-menu {
    left: 55%;
}

.header-mega-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange), var(--primary-blue));
    background-size: 200% 100%;
    animation: gradient-move 3s ease infinite;
}

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-mega-grid {
    padding: 30px;
    gap: 25px;
}

.header-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.header-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* New 2-column grid for calculators */
.header-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.header-mega-double {
    grid-column: span 2;
}

.header-mega-double-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.header-mega-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.header-mega-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.header-mega-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Section Header Icon Colors */
.header-services-menu .header-mega-column:nth-child(1) .header-mega-icon {
    background: linear-gradient(135deg, rgba(36, 62, 147, 0.1), rgba(36, 62, 147, 0.05));
    color: var(--primary-blue);
}

.header-services-menu .header-mega-column:nth-child(2) .header-mega-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    color: #EF4444;
}

.header-services-menu .header-mega-column:nth-child(3) .header-mega-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    color: #8B5CF6;
}

.header-services-menu .header-mega-column:nth-child(4) .header-mega-icon,
.header-services-menu .header-mega-column:nth-child(5) .header-mega-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: #10B981;
}

.header-calculators-menu .header-mega-column:nth-child(1) .header-mega-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    color: #F59E0B;
}

.header-calculators-menu .header-mega-column:nth-child(2) .header-mega-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
    color: #06B6D4;
}

.header-mega-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0;
}

.header-mega-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-mega-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    transition: all 0.2s ease;
    position: relative;
}

.header-mega-link:hover {
    background: linear-gradient(135deg, rgba(243, 109, 33, 0.08), rgba(243, 109, 33, 0.04));
    color: var(--primary-orange);
    padding-left: 16px;
}

.header-mega-link i {
    font-size: 12px;
    width: 16px;
    text-align: center;
    transition: all 0.2s ease;
}

.header-mega-link:hover i {
    transform: scale(1.2);
}

/* Dropdown Item Icon Colors - Match Section Colors */
.header-services-menu .header-mega-column:nth-child(1) .header-mega-link i {
    color: #7B8FD4;
    opacity: 0.8;
}

.header-services-menu .header-mega-column:nth-child(1) .header-mega-link:hover i {
    color: var(--primary-blue);
    opacity: 1;
}

.header-services-menu .header-mega-column:nth-child(2) .header-mega-link i {
    color: #F87171;
    opacity: 0.8;
}

.header-services-menu .header-mega-column:nth-child(2) .header-mega-link:hover i {
    color: #EF4444;
    opacity: 1;
}

.header-services-menu .header-mega-column:nth-child(3) .header-mega-link i {
    color: #A78BFA;
    opacity: 0.8;
}

.header-services-menu .header-mega-column:nth-child(3) .header-mega-link:hover i {
    color: #8B5CF6;
    opacity: 1;
}

.header-services-menu .header-mega-column:nth-child(4) .header-mega-link i,
.header-services-menu .header-mega-column:nth-child(5) .header-mega-link i {
    color: #34D399;
    opacity: 0.8;
}

.header-services-menu .header-mega-column:nth-child(4) .header-mega-link:hover i,
.header-services-menu .header-mega-column:nth-child(5) .header-mega-link:hover i {
    color: #10B981;
    opacity: 1;
}

.header-calculators-menu .header-mega-column:nth-child(1) .header-mega-link i {
    color: #FCD34D;
    opacity: 0.8;
}

.header-calculators-menu .header-mega-column:nth-child(1) .header-mega-link:hover i {
    color: #F59E0B;
    opacity: 1;
}

.header-calculators-menu .header-mega-column:nth-child(2) .header-mega-link i {
    color: #67E8F9;
    opacity: 0.8;
}

.header-calculators-menu .header-mega-column:nth-child(2) .header-mega-link:hover i {
    color: #06B6D4;
    opacity: 1;
}

.header-mega-footer {
    padding: 15px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e8e8e8;
    text-align: center;
}

.header-mega-footer-link {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.header-mega-footer-link:hover {
    color: #e55d11;
    transform: translateX(3px);
}

/* ============================================
   Desktop CTA Button
   ============================================ */
.header-cta {
    flex-shrink: 0;
}

.header-cta-button {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 109, 33, 0.25);
    position: relative;
    overflow: hidden;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 109, 33, 0.35);
}

.header-cta-button i {
    font-size: 14px;
}

/* ============================================
   Mobile Toggle
   ============================================ */
.header-mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    z-index: 10002;
}

.header-hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.header-hamburger:nth-child(1) {
    top: 12px;
}

.header-hamburger:nth-child(2) {
    top: 19px;
}

.header-hamburger:nth-child(3) {
    top: 26px;
}

.header-mobile-toggle.active .header-hamburger:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 19px;
}

.header-mobile-toggle.active .header-hamburger:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scale(0);
}

.header-mobile-toggle.active .header-hamburger:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 19px;
}

/* ============================================
   Mobile Menu
   ============================================ */
.header-mobile-menu {
    position: fixed;
    top: var(--header-mobile-height);
    left: 0;
    right: 0;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth);
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-mobile-menu.active {
    max-height: calc(100vh - var(--header-mobile-height));
    overflow-y: auto;
}

.header-mobile-content {
    padding: 15px 20px;
}

.header-mobile-nav {
    display: flex;
    flex-direction: column;
}

.header-mobile-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 0;
}

.header-mobile-item:last-child {
    border-bottom: none;
}

.header-mobile-link,
.header-mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.header-mobile-link:hover,
.header-mobile-dropdown-toggle:hover {
    color: var(--primary-orange);
}

.header-mobile-dropdown-toggle i {
    font-size: 12px;
    color: #999;
    transition: transform 0.3s ease;
}

.header-mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
    color: var(--primary-orange);
}

.header-mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    margin: 0 -20px;
    padding: 0;
}

.header-mobile-dropdown.active {
    max-height: 600px;
    padding: 10px 20px;
}

.header-mobile-section {
    margin-bottom: 15px;
}

.header-mobile-section:last-child {
    margin-bottom: 0;
}

.header-mobile-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}

.header-mobile-section:nth-child(1) h4 {
    color: var(--primary-blue);
}

.header-mobile-section:nth-child(2) h4 {
    color: #EF4444;
}

.header-mobile-section:nth-child(3) h4 {
    color: #8B5CF6;
}

.header-mobile-section:nth-child(4) h4 {
    color: #10B981;
}

.header-mobile-product-link {
    display: block;
    padding: 8px 10px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-mobile-product-link:hover {
    color: var(--primary-orange);
    padding-left: 15px;
    background: rgba(243, 109, 33, 0.05);
}

.header-mobile-cta-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0 10px;
}

.header-mobile-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-orange), #ff8c42);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(243, 109, 33, 0.25);
    transition: all 0.3s ease;
}

.header-mobile-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(243, 109, 33, 0.35);
}

.header-mobile-cta-button i {
    font-size: 14px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1400px) {
    .header-services-menu {
        width: 95vw;
        max-width: 1300px;
    }
    
    .header-calculators-menu {
        width: 90vw;
        max-width: 700px; /* Updated from 900px */
    }
}

@media (max-width: 1350px) {
    .header-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .header-services-menu {
        width: 1100px;
    }
}

@media (max-width: 1200px) {
    .header-services-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 20px;
        gap: 15px;
    }
    
    .header-mega-double {
        grid-column: span 3;
    }
    
    .header-mega-double-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .header-services-menu {
        width: 95vw;
        max-width: 900px;
    }
}

@media (max-width: 992px) {
    .header-topbar {
        display: none !important;
    }
    
    .header-wrapper {
        height: var(--header-mobile-height) !important;
        transition: box-shadow 0.3s var(--transition-smooth);
    }
    
    .header-wrapper.header-scrolled {
        height: var(--header-mobile-height) !important;
        box-shadow: 0 4px 30px rgba(36, 62, 147, 0.12);
    }
    
    .header-nav,
    .header-cta {
        display: none !important;
    }
    
    .header-mobile-toggle {
        display: block;
    }
    
    .header-main {
        height: var(--header-mobile-height) !important;
        position: static;
        top: 0; /* Reset top position */
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .header-logo-img {
        height: 36px;
    }
    
    /* Keep 2 columns for calculators menu on smaller desktop */
    .header-grid-2col {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-calculators-menu {
        width: 95vw;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .header-wrapper,
    .header-wrapper.header-scrolled {
        height: var(--header-mobile-height) !important;
    }
    
    .header-main {
        height: var(--header-mobile-height) !important;
    }
    
    .header-mobile-menu {
        top: var(--header-mobile-height);
    }
    
    .header-mobile-menu.active {
        max-height: calc(100vh - var(--header-mobile-height));
    }
    
    .header-logo-img {
        height: 32px;
    }
    
    .header-mobile-toggle {
        width: 38px;
        height: 38px;
    }
    
    .header-hamburger {
        width: 22px;
    }
    
    .header-hamburger:nth-child(1) { top: 11px; }
    .header-hamburger:nth-child(2) { top: 18px; }
    .header-hamburger:nth-child(3) { top: 25px; }
    
    .header-mobile-toggle.active .header-hamburger:nth-child(1) { top: 18px; }
    .header-mobile-toggle.active .header-hamburger:nth-child(3) { top: 18px; }
    
    /* Single column for calculators on mobile */
    .header-grid-2col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .header-calculators-menu {
        width: 90vw;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .header-wrapper,
    .header-wrapper.header-scrolled {
        height: var(--header-mobile-height) !important;
    }
    
    .header-main {
        height: var(--header-mobile-height) !important;
    }
    
    .header-mobile-menu {
        top: var(--header-mobile-height);
    }
    
    .header-mobile-menu.active {
        max-height: calc(100vh - var(--header-mobile-height));
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .header-logo-img {
        height: 30px;
    }
    
    .header-mobile-toggle {
        width: 36px;
        height: 36px;
    }
    
    .header-hamburger {
        width: 20px;
    }
    
    .header-hamburger:nth-child(1) { top: 10px; }
    .header-hamburger:nth-child(2) { top: 17px; }
    .header-hamburger:nth-child(3) { top: 24px; }
    
    .header-mobile-toggle.active .header-hamburger:nth-child(1) { top: 17px; }
    .header-mobile-toggle.active .header-hamburger:nth-child(3) { top: 17px; }
    
    .header-mobile-content {
        padding: 12px 15px;
    }
    
    .header-mobile-link,
    .header-mobile-dropdown-toggle {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .header-mobile-product-link {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .header-mobile-cta-button {
        font-size: 14px;
        padding: 12px 24px;
    }
}

/* ============================================
   Body Offset
   ============================================ */
body {
    padding-top: calc(var(--header-height) + var(--topbar-height));
    transition: padding-top 0.3s ease;
    margin: 0;
}

body.header-scrolled {
    padding-top: calc(var(--header-height) + var(--topbar-height)); /* Keep full height */
}

@media (max-width: 992px) {
    body,
    body.header-scrolled {
        padding-top: var(--header-mobile-height) !important;
    }
}

@media (max-width: 768px) {
    body,
    body.header-scrolled {
        padding-top: var(--header-mobile-height) !important;
    }
}

@media (max-width: 480px) {
    body,
    body.header-scrolled {
        padding-top: var(--header-mobile-height) !important;
    }
}

/* Active page styles */
.header-nav-link.active {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Print Styles */
@media print {
    .header-wrapper {
        position: relative;
        box-shadow: none;
        height: auto;
    }
    
    .header-mobile-toggle,
    .header-mobile-menu {
        display: none !important;
    }
}