        /* --- Desktop Header Style --- */
        .site-header {
            position: absolute; /* Assuming it overlays a hero image */
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            padding: 20px 40px;
            box-sizing: border-box;
        }

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

        /* Logo Area */
        .site-logo {
            flex: 1;
            display: flex;
            align-items: center;
        }
        
        .site-logo img {
            max-height: 40px; /* Adjust according to your logo */
            width: auto;
        }

        /* Center Navigation Pill */
        .desktop-nav {
			background: rgb(227 227 227 / 20%);
			backdrop-filter: blur(15px);
			border-radius: 14px;
			padding: 8px 35px;
			display: flex;
			align-items: center;
		}

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

        .desktop-nav li {
            position: relative;
        }

        .desktop-nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px; /* Updated to 18px */
            padding: 8px 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .desktop-nav a:hover {
            color: #e5e7eb;
        }

        .desktop-nav a i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }
          
        .desktop-nav a.active-pill, .desktop-nav a:hover {
			background: #ffffff!important;
            color: #1f2937!important;
/* 			padding: 6px 14px; */
		}


        /* Active/Dropdown trigger styling (White Pill) */
        .desktop-nav .has-dropdown > a.active-pill,
        .desktop-nav .has-dropdown:hover > a {
            background: #ffffff!important;
            color: #1f2937;
        }

        .desktop-nav .has-dropdown:hover > a i {
            transform: rotate(180deg);
        }

        /* Desktop Dropdown Menu */
        .desktop-nav .dropdown {
            position: absolute;
            top: calc(100% + 15px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: #ffffff;
            border-radius: 8px;
            min-width: 190px;
            padding: 20px 0;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            flex-direction: column;
            gap: 0;
            transition: all 0.3s ease;
        }

        /* Dropdown triangle pointer */
        .desktop-nav .dropdown::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 12px;
            height: 12px;
            background: #ffffff;
        }

        .desktop-nav .has-dropdown:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .desktop-nav .dropdown a {
            color: #4b5563;
            background: transparent;
            border-radius: 0;
            padding: 10px 24px;
            font-weight: 500;
            font-size: 18px;
            width: 100%;
            box-sizing: border-box;
        }

        .desktop-nav .dropdown a:hover {
			border-radius:8px!important;
            color: #fff!important;
            background: #000!important;
        }

        /* CTA Button Area */
        .header-cta {
            flex: 0.7;
            display: flex;
            justify-content: flex-end;
        }

        .phone-btn {
            border: 1px solid rgba(255, 255, 255, 0.5);
            color: #ffffff;
            text-decoration: none;
            padding: 15px 20px;
            border-radius: 8px;
            font-size: 18px; /* Updated to 18px */
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .phone-btn i {
            font-size: 14px;
        }

        .phone-btn:hover {
            background: #e11c2a;
            color: #ffffff;
            border-color: #e11c2a;
        }

        /* --- Mobile Toggle Button --- */
        .mobile-toggle-btn {
            display: none;
            background: rgba(65, 80, 88, 0.95);
            border: none;
            color: #ffffff;
            font-size: 24px;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            backdrop-filter: blur(8px);
        }

        /* --- Mobile Menu Overlay --- */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background: #ffffff;
            z-index: 10000;
            box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
            transition: left 0.4s ease;
            padding: 80px 30px 40px;
            box-sizing: border-box;
            overflow-y: auto;
        }

        .mobile-menu-overlay.is-open {
            left: 0;
        }

        .mobile-menu-close {
            position: absolute;
            top: 25px;
            right: 25px;
            background: #f3f4f6;
            border: none;
            border-radius: 8px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #6b7280;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .mobile-menu-close:hover {
            background: #e5e7eb;
            color: #1f2937;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-nav a {
            color: #1f2937;
            text-decoration: none;
            font-size: 18px; /* Updated to 18px */
            font-weight: 500;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s;
        }

        /* Mobile Dropdown Styling */
        .mobile-nav .has-dropdown > a i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        /* The Exact Red Color Request */
        .mobile-nav .has-dropdown.is-active > a {
            color: #e11c2a;
        }

        .mobile-nav .has-dropdown.is-active > a i {
            transform: rotate(180deg);
        }

        .mobile-nav .dropdown {
            display: none;
            padding-left: 15px;
            margin-top: 15px;
            flex-direction: column;
            gap: 15px;
            border-left: 2px solid #f3f4f6;
        }

        .mobile-nav .dropdown a {
            color: #1f2937;
            font-size: 18px;
            font-weight: 500;
        }

        .mobile-menu-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s ease;
        }

        .mobile-menu-backdrop.is-open {
            opacity: 1;
            visibility: visible;
        }


        /* --- Responsive Breakpoints --- */
        @media (max-width: 1024px) {
            .header-container { padding: 0 15px; }
            .site-header { padding: 15px 0; }
            
            /* Hide Desktop Elements */
            .desktop-nav, .header-cta { display: none; }
            
            /* Show Mobile Toggle */
            .mobile-toggle-btn { display: block; }
        }
