/* ==========================================================================
   AHMEDABAD TO UDAIPUR TAXI — CUSTOM PREMIUM REDESIGN CSS
   Design System: Aurora Glow / Modern Asymmetrical Card Layout
   ========================================================================== */

:root {
    /* Brand Color Tokens */
    --lux-primary: #0B6B54;         /* Rich Lighter Emerald Green */
    --lux-primary-glow: rgba(11, 107, 84, 0.15);
    --lux-secondary: #10B981;       /* Fresh Emerald Green */
    --lux-accent: #C5A880;          /* Champagne Gold */
    --lux-accent-hover: #B89568;    /* Warm Bronze Gold */
    --lux-accent-glow: rgba(197, 168, 128, 0.15);
    --lux-success: #10B981;         /* Emerald */
    --lux-success-glow: rgba(16, 185, 129, 0.12);
    
    /* Neutrals */
    --lux-white: #FFFFFF;
    --lux-bg-light: #FAF9F6;        /* Alabaster White / Warm Ivory */
    --lux-bg-soft: #F4F2EC;         /* Warm Cream */
    --lux-text-dark: #0D2A20;       /* Deep Forest Black */
    --lux-text-slate: #374F46;      /* Forest Slate */
    --lux-text-muted: #708A80;      /* Muted Green-Slate */
    --lux-border: #E1E8E5;          /* Soft Green-Slate Border */
    --lux-border-glow: rgba(225, 232, 229, 0.5);

    /* Shadows */
    --lux-shadow-sm: 0 4px 10px -2px rgba(15, 23, 42, 0.05);
    --lux-shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
    --lux-shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 12px 20px -8px rgba(15, 23, 42, 0.06);
    --lux-shadow-glow: 0 15px 35px -5px rgba(11, 107, 84, 0.2);

    /* Sizing & Transitions */
    --lux-radius: 1.25rem;
    --lux-radius-sm: 0.75rem;
    --lux-radius-capsule: 9999px;
    --lux-transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   1. LUXURY NAVBAR & MEGA MENU
   ========================================================================== */
.luxury-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--lux-border-glow);
    transition: var(--lux-transition);
}

.luxury-navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--lux-shadow-md);
    border-bottom-color: transparent;
}

.luxury-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.3s ease;
}

.luxury-navbar.scrolled .luxury-nav-inner {
    height: 70px;
}

.luxury-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.luxury-nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    height: 100%;
}

.lux-nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.lux-link {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lux-text-dark);
    padding: var(--space-2) 0;
    text-decoration: none;
    transition: var(--lux-transition);
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lux-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.lux-nav-item:hover .lux-link i {
    transform: rotate(180deg);
}

.lux-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lux-primary);
    transition: width 0.3s ease;
}

.lux-link:hover::after,
.lux-link.active::after {
    width: 100%;
}

.lux-link:hover,
.lux-link.active {
    color: var(--lux-primary);
}

/* Standard Dropdown (Services) */
.lux-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--lux-white);
    min-width: 260px;
    border-radius: var(--lux-radius-sm);
    box-shadow: var(--lux-shadow-lg);
    padding: var(--space-4) 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    border: 1px solid var(--lux-border);
}

.lux-dropdown-wrapper:hover .lux-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.lux-dropdown-link {
    display: block;
    padding: var(--space-3) var(--space-6);
    color: var(--lux-text-slate);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.lux-dropdown-link:hover {
    background: var(--lux-bg-light);
    color: var(--lux-primary);
    padding-left: calc(var(--space-6) + 5px);
}

/* Mega Menu (Routes) */
.lux-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--lux-white);
    width: 800px; /* Fixed wide width */
    max-width: 90vw;
    border-radius: var(--lux-radius-sm);
    box-shadow: var(--lux-shadow-lg);
    padding: var(--space-6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    border: 1px solid var(--lux-border);
}

.lux-mega-wrapper:hover .lux-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.lux-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2) var(--space-6);
}

.lux-mega-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    border-radius: var(--lux-radius-sm);
    color: var(--lux-text-slate);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lux-bg-soft);
    color: var(--lux-primary);
    border-radius: 8px;
    transition: var(--lux-transition);
}

.lux-mega-link:hover {
    background: var(--lux-bg-light);
    color: var(--lux-primary);
}

.lux-mega-link:hover .mega-icon {
    background: var(--lux-primary);
    color: var(--lux-white);
    transform: scale(1.1);
}

/* CTA Button in Nav */
.luxury-capsule-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--lux-primary);
    color: var(--lux-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--lux-radius-capsule);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--lux-shadow-md);
    transition: var(--lux-transition);
    text-decoration: none;
}

.luxury-capsule-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--lux-shadow-lg);
    background: var(--lux-text-dark);
}

.cta-pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--lux-accent);
    border-radius: 50%;
    position: relative;
}

.cta-pulse-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--lux-accent);
    animation: ctaPulse 1.8s infinite ease-in-out;
}

@keyframes ctaPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Hamburger mobile button */
.luxury-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

.hamburger-bar {
    width: 24px;
    height: 2px;
    background: var(--lux-text-dark);
    border-radius: 2px;
    transition: var(--lux-transition);
}

/* Mobile responsive navigation overrides */
@media (max-width: 1024px) {
    .luxury-nav-links, .luxury-nav-actions {
        display: none;
    }
    .luxury-hamburger {
        display: flex;
    }
}

/* ==========================================================================
   MOBILE FULL SCREEN OVERLAY MENU
   ========================================================================== */
.luxury-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--lux-white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-mobile-menu.open {
    transform: translateX(0);
}

.lux-mob-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--lux-border);
}

.lux-mob-logo img {
    height: 40px;
    width: auto;
}

.lux-mob-close {
    background: var(--lux-bg-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--lux-text-dark);
    cursor: pointer;
    transition: var(--lux-transition);
}

.lux-mob-close:hover {
    background: var(--lux-border);
}

.lux-mob-scroll-area {
    flex-grow: 1;
    overflow-y: auto;
    padding: var(--space-6);
    padding-bottom: 100px; /* space for bottom items */
}

.lux-mob-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.lux-mob-link,
.lux-mob-accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.lux-mob-accordion-toggle i {
    font-size: 0.9rem;
    color: var(--lux-text-slate);
    transition: transform 0.3s ease;
}

.lux-mob-accordion.active .lux-mob-accordion-toggle i {
    transform: rotate(180deg);
}

.lux-mob-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding-top: 0;
}

.lux-mob-accordion.active .lux-mob-accordion-content {
    padding-top: var(--space-4);
}

.lux-mob-sublink {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--lux-bg-light);
    border-radius: var(--lux-radius-sm);
    color: var(--lux-text-slate);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
}

.lux-mob-sublink i {
    color: var(--lux-primary);
    width: 20px;
    text-align: center;
}

.lux-mob-contacts {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.lux-mob-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--lux-text-dark);
    color: var(--lux-white);
    text-decoration: none;
    border-radius: var(--lux-radius-sm);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}

.lux-mob-contact-item.wa-item {
    background: #25D366;
}

/* Body lock utility */
body.menu-open {
    overflow: hidden;
}

/* =========================================
   13. HERO CTA GROUP RESPONSIVE REFINEMENT
   ========================================= */
.lux-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-top: var(--space-8);
}

.lux-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--lux-text-dark);
    padding: 0.95rem 2rem;
    border-radius: var(--lux-radius);
    border: 2px solid var(--lux-border);
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: var(--lux-transition);
}

.lux-btn-secondary:hover {
    border-color: var(--lux-primary);
    color: var(--lux-primary);
    background: var(--lux-bg-light);
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .lux-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-3);
    }
    
    .lux-btn-main, .lux-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/* =========================================
   14. AUTOCOMPLETE DROPDOWN REFINEMENT
   ========================================= */
.autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--lux-white);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-radius-sm);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 4px;
}

.autocomplete-suggestion {
    padding: var(--space-3) var(--space-4);
    cursor: pointer;
    color: var(--lux-text-dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: var(--lux-transition);
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--lux-white);
}

.autocomplete-suggestion:not(:last-child) {
    border-bottom: 1px solid var(--lux-border);
}

.autocomplete-suggestion:hover {
    background: var(--lux-bg-light);
    color: var(--lux-primary);
}

.autocomplete-suggestion i {
    color: var(--lux-primary);
}
/* ==========================================================================
   2. REDESIGNED HERO SECTION — ANIMATED LIGHT BACKGROUND
   ========================================================================== */
.lux-hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 180px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Warm light mesh gradient background */
    background:
        radial-gradient(ellipse at 70% 10%, rgba(16, 185, 129, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 90%, rgba(197, 168, 128, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(11, 107, 84, 0.04) 0%, transparent 70%),
        linear-gradient(135deg, #F8FDF9 0%, #FAFCF8 40%, #F4F9F6 70%, #FAF9F6 100%);
    overflow: hidden;
}

/* Animated diagonal ribbon stripes */
.lux-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 48px,
            rgba(11, 107, 84, 0.022) 48px,
            rgba(11, 107, 84, 0.022) 50px
        );
    z-index: 0;
    pointer-events: none;
}

/* Animated dot grid pattern */
.lux-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(11, 107, 84, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
    animation: heroGridShift 20s linear infinite;
}

/* Premium Taxi Route Background Animation */
.lux-hero-route-animation {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.lux-hero-route-animation svg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

@keyframes heroGridShift {
    0%   { background-position: 0 0; }
    100% { background-position: 32px 32px; }
}

/* Primary aurora glow — top right emerald */
.lux-aurora-glow-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.16) 0%, rgba(11, 107, 84, 0.06) 40%, transparent 70%);
    top: -250px;
    right: -150px;
    filter: blur(70px);
    animation: heroAuroraFloat1 14s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

/* Secondary aurora glow — bottom left champagne gold */
.lux-aurora-glow-2 {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.13) 0%, rgba(197, 168, 128, 0.04) 50%, transparent 70%);
    bottom: -180px;
    left: -120px;
    filter: blur(65px);
    animation: heroAuroraFloat2 18s ease-in-out infinite alternate-reverse;
    z-index: 0;
    pointer-events: none;
}

/* Third accent glow — centre-left soft teal */
.lux-aurora-glow-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 65%);
    top: 40%;
    left: 20%;
    filter: blur(80px);
    animation: heroAuroraFloat1 22s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes heroAuroraFloat1 {
    0%   { transform: translate(0, 0) scale(1);    opacity: 0.8; }
    50%  { transform: translate(30px, -40px) scale(1.08); opacity: 1; }
    100% { transform: translate(60px, -20px) scale(1.15); opacity: 0.85; }
}

@keyframes heroAuroraFloat2 {
    0%   { transform: translate(0, 0) scale(1);     opacity: 0.7; }
    50%  { transform: translate(-30px, 30px) scale(1.1); opacity: 0.95; }
    100% { transform: translate(-50px, 60px) scale(1.2); opacity: 0.75; }
}

/* Floating animated bokeh dots */
.hero-bokeh-dot {
    position: absolute;
    border-radius: 50%;
    animation: heroBokehFloat linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroBokehFloat {
    0%   { transform: translateY(0) scale(1);   opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.7; }
    100% { transform: translateY(-120px) scale(0.6); opacity: 0; }
}

/* Individual bokeh dot positions, sizes, timings — no inline styles */
.hero-bd-1 { width: 10px; height: 10px; background: rgba(16, 185, 129, 0.35);  bottom: 25%; left: 5%;  animation-duration: 8s;  animation-delay: 0s; }
.hero-bd-2 { width: 16px; height: 16px; background: rgba(197,168,128, 0.30);  bottom: 40%; left: 12%; animation-duration: 12s; animation-delay: 2s; }
.hero-bd-3 { width:  8px; height:  8px; background: rgba(11, 107, 84, 0.25);  bottom: 15%; left: 30%; animation-duration: 10s; animation-delay: 1s; }
.hero-bd-4 { width: 14px; height: 14px; background: rgba(16, 185, 129, 0.20);  bottom: 50%; left: 48%; animation-duration: 15s; animation-delay: 3s; }
.hero-bd-5 { width:  6px; height:  6px; background: rgba(197,168,128, 0.40);  bottom: 20%; left: 62%; animation-duration: 9s;  animation-delay: 0.5s; }
.hero-bd-6 { width: 12px; height: 12px; background: rgba(11, 107, 84, 0.18);  bottom: 35%; left: 75%; animation-duration: 11s; animation-delay: 4s; }
.hero-bd-7 { width:  9px; height:  9px; background: rgba(16, 185, 129, 0.30);  bottom: 10%; left: 85%; animation-duration: 13s; animation-delay: 1.5s; }
.hero-bd-8 { width: 18px; height: 18px; background: rgba(197,168,128, 0.18);  bottom: 55%; left: 92%; animation-duration: 16s; animation-delay: 2.5s; }



.lux-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.618fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .lux-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
}

.lux-rating-capsule {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(16, 185, 129, 0.10);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--lux-primary);
    padding: 0.5rem 1.1rem;
    border-radius: var(--lux-radius-capsule);
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: var(--space-5);
    animation: capsulePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes capsulePop {
    from { transform: scale(0.8) translateY(10px); opacity: 0; }
    to   { transform: scale(1) translateY(0);    opacity: 1; }
}

.lux-rating-capsule i {
    color: #FBBF24;
}

.lux-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--lux-text-dark);
    letter-spacing: -0.04em;
    margin-bottom: var(--space-5);
}

.text-gradient {
    background: linear-gradient(135deg, var(--lux-primary), var(--lux-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lux-hero-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--lux-text-slate);
    margin-bottom: var(--space-8);
}

/* Bullet list with custom checkmarks */
.lux-bullets {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.lux-bullet-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--lux-text-slate);
    font-weight: 500;
}

.lux-bullet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--lux-success-glow);
    color: var(--lux-success);
    border-radius: 50%;
    font-size: 0.75rem;
}

/* CTA Group */
.lux-cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.lux-btn-main {
    background: linear-gradient(135deg, var(--lux-secondary), var(--lux-primary));
    color: var(--lux-white);
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: var(--lux-radius);
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    box-shadow: var(--lux-shadow-md);
    transition: var(--lux-transition);
}

.lux-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: var(--lux-shadow-glow);
}

.lux-btn-secondary {
    border: 2px solid var(--lux-border);
    color: var(--lux-text-dark);
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: var(--lux-radius);
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    transition: var(--lux-transition);
}

.lux-btn-secondary:hover {
    border-color: var(--lux-text-dark);
    background: var(--lux-bg-light);
}

/* Glassmorphism Booking Card — Premium Light Frosted Glass */
.lux-booking-console {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1.5px solid rgba(11, 107, 84, 0.15);
    border-radius: 1.5rem;
    padding: 2.25rem;
    box-shadow:
        0 8px 32px rgba(11, 107, 84, 0.10),
        0 25px 50px -12px rgba(11, 107, 84, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    color: var(--lux-text-dark);
    position: relative;
    overflow: hidden;
}

/* Booking console shimmer top border */
.lux-booking-console::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lux-secondary), var(--lux-accent), var(--lux-secondary));
    background-size: 200% auto;
    animation: consoleTopShimmer 3s linear infinite;
    border-radius: 1.5rem 1.5rem 0 0;
}

@keyframes consoleTopShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Subtle inner glow background pulse */
.lux-booking-console::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 65%);
    border-radius: 50%;
    animation: consolePulse 6s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes consolePulse {
    0%   { transform: scale(1);    opacity: 0.5; }
    100% { transform: scale(1.3);  opacity: 1; }
}

.lux-console-tabs {
    display: flex;
    background: rgba(11, 107, 84, 0.06);
    padding: 5px;
    border-radius: var(--lux-radius-sm);
    margin-bottom: var(--space-6);
    border: 1px solid rgba(11, 107, 84, 0.12);
    position: relative;
    z-index: 1;
}

.lux-console-tab {
    flex: 1;
    padding: 0.75rem 0.5rem;
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--lux-text-muted);
    border-radius: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--lux-transition);
    position: relative;
    letter-spacing: 0.02em;
}

.lux-console-tab.active {
    background: var(--lux-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(11, 107, 84, 0.35), 0 2px 6px rgba(11, 107, 84, 0.2);
    transform: translateY(-1px);
}

.lux-console-tab:hover:not(.active) {
    background: rgba(11, 107, 84, 0.08);
    color: var(--lux-primary);
}


/* Console form styling */
.lux-form-group {
    margin-bottom: 1.15rem;
    position: relative;
}

.booking-form > .lux-form-row {
    position: relative;
}

/* Descending z-indexes for booking form child groups to prevent autocomplete dropdown overlapping issues */
.booking-form > *:nth-child(1) { z-index: 10; }
.booking-form > *:nth-child(2) { z-index: 9; }
.booking-form > *:nth-child(3) { z-index: 8; }
.booking-form > *:nth-child(4) { z-index: 7; }
.booking-form > *:nth-child(5) { z-index: 6; }
.booking-form > *:nth-child(6) { z-index: 5; }
.booking-form > *:nth-child(7) { z-index: 4; }
.booking-form > *:nth-child(8) { z-index: 3; }
.booking-form > *:nth-child(9) { z-index: 2; }
.booking-form > *:nth-child(10) { z-index: 1; }


.lux-form-group label {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--lux-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.lux-input {
    width: 100%;
    background: rgba(250, 253, 251, 0.95);
    border: 1.5px solid rgba(11, 107, 84, 0.15);
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    border-radius: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lux-text-dark);
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(11, 107, 84, 0.06) inset;
}

.lux-input::placeholder {
    color: var(--lux-text-muted);
    font-size: 0.875rem;
}

.lux-input:focus {
    outline: none;
    border-color: var(--lux-secondary);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12), 0 1px 3px rgba(11, 107, 84, 0.08);
    transform: translateY(-1px);
}

.lux-form-group > i {
    position: absolute;
    left: 0.9rem;
    top: 2.1rem;
    color: rgba(11, 107, 84, 0.45);
    font-size: 0.875rem;
    transition: all 0.25s ease;
    pointer-events: none;
    z-index: 2;
}

.lux-input:focus ~ i {
    color: var(--lux-primary);
    transform: scale(1.1);
}

.lux-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--lux-primary) 0%, var(--lux-secondary) 100%);
    color: #FFFFFF;
    padding: 1.05rem;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 0.875rem;
    box-shadow: 0 8px 20px -5px rgba(11, 107, 84, 0.40), 0 4px 10px rgba(11, 107, 84, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
}

.lux-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: none;
}

.lux-submit-btn:hover::before {
    animation: submitShimmer 0.6s ease forwards;
}

@keyframes submitShimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.lux-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -5px rgba(11, 107, 84, 0.50), 0 8px 16px rgba(11, 107, 84, 0.25);
    background: linear-gradient(135deg, var(--lux-secondary) 0%, var(--lux-primary) 100%);
}

.lux-submit-btn:active {
    transform: translateY(0);
}


/* Autocomplete suggestions dropdown (Frosted Light Glass style matching console) */
.autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.autocomplete-suggestions {
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: var(--lux-white);
    border: 1px solid var(--lux-border);
    z-index: 100;
    border-radius: var(--lux-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-height: 220px;
    overflow-y: auto;
    display: none;
}

.autocomplete-suggestion {
    padding: 0.85rem 1.1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lux-text-slate);
    cursor: pointer;
    transition: var(--lux-transition);
    border-bottom: 1px solid var(--lux-border);
}

.autocomplete-suggestion:last-child {
    border-bottom: none;
}

.autocomplete-suggestion:hover {
    background: var(--lux-bg-soft);
    color: var(--lux-primary);
}

.autocomplete-suggestion i {
    margin-right: 8px;
    color: var(--lux-primary);
}

/* Inline styling helpers replaced by CSS class properties */
.toggle-routes-container {
    display: flex;
    justify-content: center;
    margin-top: var(--space-8);
}

/* ==========================================================================
   3. ANIMATED HIGHWAY ROAD & CHAUFFEUR TAXI BACKGROUND
   ========================================================================== */
.lux-highway-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #022C22; /* Rich dark forest highway road */
    border-top: 5px solid var(--lux-accent); /* Gold curb */
    overflow: hidden;
    z-index: 1;
}

.lux-highway-dashed {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(90deg, #FFFFFF 0px, #FFFFFF 30px, transparent 30px, transparent 60px);
    transform: translateY(-50%);
    animation: roadMove 0.8s linear infinite;
}

@keyframes roadMove {
    0% { background-position-x: 0px; }
    100% { background-position-x: -60px; }
}

.lux-animated-car {
    position: absolute;
    bottom: 12px;
    right: 15%;
    z-index: 2;
    animation: carBounce 0.35s ease-in-out infinite alternate;
}

@keyframes carBounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-1.5px); }
}

/* Responsive adjustments for animated highway */
@media (max-width: 991px) {
    .lux-highway-bg {
        height: 70px;
    }
    .lux-animated-car {
        bottom: 4px;
        right: 10%;
    }
    .lux-animated-car svg {
        width: 140px;
        height: 60px;
    }
}

/* Zero Inline Style Helper Classes */
.lux-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 480px) {
    .lux-form-row {
        grid-template-columns: 1fr;
    }
}

.extra-route {
    display: none;
}

#toggle-routes-btn i {
    margin-left: 8px;
}

.lux-testimonial-card-hidden {
    display: none;
}

.why-icon-centered {
    margin: 0 auto 20px auto;
}

/* ==========================================================================
   4. MINIMALIST TICKER
   ========================================================================== */
.lux-ticker-strip {
    background: var(--lux-primary);
    color: var(--lux-white);
    padding: 1.25rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lux-ticker-wrap {
    display: flex;
    width: max-content;
    animation: luxTicker 25s linear infinite;
}

@keyframes luxTicker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.lux-ticker-block {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    padding-right: var(--space-8);
    flex-shrink: 0;
}

.lux-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lux-ticker-item i {
    color: var(--lux-accent);
}

/* ==========================================================================
   5. LUXURY CARDS: SERVICES
   ========================================================================== */
.lux-grid-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.lux-service-card {
    background: var(--lux-white);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-radius);
    padding: var(--space-8);
    transition: var(--lux-transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lux-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.02), rgba(244, 63, 94, 0.02));
    opacity: 0;
    transition: var(--lux-transition);
}

.lux-service-card:hover {
    transform: translateY(-6px);
    border-color: var(--lux-secondary);
    box-shadow: var(--lux-shadow-lg);
}

.lux-service-card:hover::before {
    opacity: 1;
}

.lux-card-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--lux-radius-sm);
    font-size: 1.5rem;
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 2;
}

.icon-blue { background: rgba(79, 70, 229, 0.08); color: var(--lux-secondary); }
.icon-red { background: rgba(244, 63, 94, 0.08); color: var(--lux-accent); }
.icon-green { background: var(--lux-success-glow); color: var(--lux-success); }
.icon-orange { background: rgba(245, 158, 11, 0.08); color: #D97706; }

.lux-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 2;
}

.lux-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--lux-text-slate);
    margin-bottom: var(--space-6);
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.lux-card-btn {
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--lux-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    position: relative;
    z-index: 2;
    transition: var(--lux-transition);
}

.lux-service-card:hover .lux-card-btn {
    color: var(--lux-accent);
}

/* ==========================================================================
   6. VISUAL DESTINATION CARDS: ROUTES
   ========================================================================== */
.lux-routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.lux-route-card {
    background: var(--lux-white);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-radius-sm);
    overflow: hidden;
    transition: var(--lux-transition);
    display: flex;
    flex-direction: column;
}

.lux-route-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 15px 35px rgba(11, 107, 84, 0.1);
}

.route-card-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.route-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lux-route-card:hover .route-card-img-wrap img {
    transform: scale(1.08);
}

.route-distance-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content !important;
    height: max-content !important;
    line-height: 1;
}

.route-card-content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lux-route-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    margin-bottom: var(--space-4);
    line-height: 1.4;
}

.lux-route-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-5);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--lux-text-slate);
    font-weight: 500;
}

.lux-route-price {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--lux-accent);
}

.lux-route-cta {
    width: 100%;
    text-align: center;
    background: var(--lux-bg-soft);
    color: var(--lux-secondary);
    padding: 0.75rem;
    border-radius: var(--lux-radius-sm);
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--lux-transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

.lux-route-cta i {
    transition: transform 0.3s ease;
}

.lux-route-card:hover .lux-route-cta {
    background: var(--lux-secondary);
    color: var(--lux-white);
}

.lux-route-card:hover .lux-route-cta i {
    transform: translateX(4px);
}

/* ==========================================================================
   7. VEHICLE SPECS DECK: FLEET
   ========================================================================== */
.lux-fleet-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-8);
}

.lux-fleet-card {
    background: var(--lux-white);
    border: 1.5px solid var(--lux-border);
    border-radius: var(--lux-radius);
    overflow: hidden;
    transition: var(--lux-transition);
    display: flex;
    flex-direction: column;
}

.lux-fleet-card:hover {
    border-color: var(--lux-secondary);
    box-shadow: var(--lux-shadow-lg);
    transform: translateY(-4px);
}

.lux-fleet-visual {
    background: var(--lux-bg-light);
    padding: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 180px;
}

.lux-fleet-visual img {
    max-height: 120px;
    object-fit: contain;
    transition: var(--lux-transition);
}

.lux-fleet-card:hover .lux-fleet-visual img {
    transform: scale(1.05);
}

.lux-fleet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--lux-accent);
    color: var(--lux-white);
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: var(--lux-radius-capsule);
    letter-spacing: 0.05em;
}

.lux-fleet-body {
    padding: var(--space-6);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lux-fleet-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    margin-bottom: 2px;
}

.lux-fleet-type {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--lux-text-muted);
    margin-bottom: var(--space-4);
}

.lux-fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    border-top: 1px solid var(--lux-border);
    border-bottom: 1px solid var(--lux-border);
    padding: var(--space-4) 0;
}

.lux-fleet-spec-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.825rem;
    color: var(--lux-text-slate);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.lux-fleet-spec-item i {
    color: var(--lux-secondary);
}

.lux-fleet-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.lux-fleet-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--lux-text-muted);
    display: block;
}

.lux-fleet-val {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lux-text-dark);
}

.lux-fleet-val small {
    font-size: 0.75rem;
    color: var(--lux-text-muted);
}

.lux-fleet-cta {
    background: var(--lux-secondary);
    color: var(--lux-white);
    padding: 0.6rem 1.25rem;
    border-radius: var(--lux-radius-sm);
    font-family: 'Sora', sans-serif;
    font-size: 0.825rem;
    font-weight: 700;
    transition: var(--lux-transition);
}

.lux-fleet-cta:hover {
    background: var(--lux-accent);
    box-shadow: var(--lux-shadow-sm);
}

/* ==========================================================================
   8. DUAL-COLUMN TESTIMONIALS SLIDER
   ========================================================================== */
.lux-testimonials-block {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
}

@media (max-width: 991px) {
    .lux-testimonials-block {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

.lux-rating-card {
    background: linear-gradient(135deg, var(--lux-primary), var(--lux-secondary));
    color: var(--lux-white);
    padding: var(--space-10);
    border-radius: var(--lux-radius);
    text-align: center;
    box-shadow: var(--lux-shadow-lg);
}

.lux-rating-num {
    font-family: 'Sora', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.lux-rating-stars {
    font-size: 1.25rem;
    color: #FBBF24;
    margin-bottom: var(--space-4);
}

.lux-rating-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.85;
}

.lux-slider-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    min-height: 280px;
    align-items: stretch;
}

.lux-testimonial-card {
    background: var(--lux-white);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-radius);
    padding: var(--space-8);
    box-shadow: var(--lux-shadow-md);
    transition: var(--lux-transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.lux-testimonial-text {
    font-family: 'DM Sans', sans-serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--lux-text-slate);
    margin-bottom: var(--space-6);
}

.lux-author-row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.lux-avatar {
    width: 48px;
    height: 48px;
    background: var(--lux-bg-soft);
    color: var(--lux-secondary);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lux-author-name {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    display: block;
}

.lux-author-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--lux-text-muted);
}

/* ==========================================================================
   9. SPLIT FAQ LAYOUT
   ========================================================================== */
.lux-faq-block {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-12);
}

@media (max-width: 991px) {
    .lux-faq-block {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

.lux-support-card {
    background: var(--lux-white);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-radius);
    padding: var(--space-8);
    box-shadow: var(--lux-shadow-md);
    text-align: center;
    height: fit-content;
}

.lux-support-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    margin-bottom: var(--space-3);
}

.lux-support-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--lux-text-slate);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.lux-support-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    background: var(--lux-secondary);
    color: var(--lux-white);
    padding: 1rem;
    border-radius: var(--lux-radius-sm);
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: var(--lux-shadow-sm);
    transition: var(--lux-transition);
}

.lux-support-phone-btn:hover {
    background: var(--lux-primary);
    box-shadow: var(--lux-shadow-glow);
}

.lux-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.lux-faq-item {
    background: var(--lux-white);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-radius-sm);
    overflow: hidden;
    transition: var(--lux-transition);
}

.lux-faq-item.open {
    border-color: var(--lux-secondary);
}

.lux-faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem var(--space-6);
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--lux-transition);
}

.lux-faq-question:hover {
    color: var(--lux-secondary);
}

.lux-faq-answer {
    padding: 0 var(--space-6) 1.25rem var(--space-6);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.925rem;
    line-height: 1.65;
    color: var(--lux-text-slate);
}

/* ==========================================================================
   10. LUXURY FOOTER
   ========================================================================== */
.lux-footer {
    background: var(--lux-text-dark);
    color: var(--lux-white);
    padding-top: var(--space-12);
    padding-bottom: var(--space-6);
    font-family: 'DM Sans', sans-serif;
    position: relative;
}

/* Animated Top Line for Footer */
.lux-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--lux-accent) 0 40px, transparent 40px 60px);
    animation: luxFooterRoad 1.5s linear infinite;
    opacity: 0.8;
}

@keyframes luxFooterRoad {
    from { background-position: 0 0; }
    to { background-position: 60px 0; }
}

.lux-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

@media (max-width: 991px) {
    .lux-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 640px) {
    .lux-footer-grid {
        grid-template-columns: 1fr;
    }
}

.lux-footer-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--lux-white);
    display: block;
    margin-bottom: var(--space-3);
}

.lux-footer-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.7;
    margin-bottom: var(--space-4);
}

.lux-footer-socials {
    display: flex;
    gap: var(--space-3);
}

.lux-social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--lux-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--lux-transition);
}

.lux-social-btn:hover {
    background: var(--lux-accent);
    transform: translateY(-2px);
}

.lux-footer-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--lux-white);
}

.lux-footer-links {
    list-style: none;
    padding: 0;
}

.lux-footer-links li {
    margin-bottom: var(--space-2);
}

.lux-footer-links a {
    color: var(--lux-white);
    opacity: 0.7;
    transition: var(--lux-transition);
    font-size: 0.9rem;
}

.lux-footer-links a:hover {
    opacity: 1;
    color: var(--lux-accent);
    padding-left: 4px;
}

.lux-footer-contacts {
    list-style: none;
    padding: 0;
}

.lux-footer-contacts li {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: 0.85rem;
    opacity: 0.7;
}

.lux-footer-contacts i {
    color: var(--lux-accent);
    margin-top: 3px;
}

.lux-footer-contacts address {
    font-style: normal;
}

.lux-footer-contacts a {
    color: var(--lux-white);
    transition: var(--lux-transition);
    text-decoration: none;
}

.lux-footer-contacts a:hover {
    color: var(--lux-accent);
}

/* Route Tag Cloud */
.lux-footer-tag-cloud {
    margin-bottom: var(--space-6);
}

.tag-cloud-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lux-white);
    margin-bottom: var(--space-3);
}

.tag-cloud-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tag-cloud-wrap a {
    background: rgba(255, 255, 255, 0.05);
    color: var(--lux-white);
    opacity: 0.75;
    padding: 0.3rem 0.7rem;
    border-radius: var(--lux-radius-capsule);
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--lux-transition);
}

.tag-cloud-wrap a:hover {
    background: var(--lux-secondary);
    opacity: 1;
}

.lux-footer-hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-4);
}

.lux-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.lux-copy-text a {
    color: var(--lux-accent);
    font-weight: 600;
    text-decoration: none;
    transition: var(--lux-transition);
}

.lux-copy-text a:hover {
    color: var(--lux-white);
}

@media (max-width: 640px) {
    .lux-footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

.lux-footer-sub-links a {
    color: var(--lux-white);
    margin-left: var(--space-4);
}

/* Floating components style rules */
.lux-wa-bubble {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: #25D366;
    color: var(--lux-white) !important;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.75rem 1.25rem;
    border-radius: var(--lux-radius-capsule);
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: var(--lux-transition);
    text-decoration: none;
}

.lux-wa-bubble:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.lux-scroll-top-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: var(--lux-white);
    color: var(--lux-text-dark);
    border: 1px solid var(--lux-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--lux-shadow-md);
    cursor: pointer;
    transition: var(--lux-transition);
    opacity: 0;
    visibility: hidden;
}

.lux-scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}


.lux-scroll-top-btn:hover {
    background: var(--lux-secondary);
    color: var(--lux-white);
    border-color: var(--lux-secondary);
    transform: translateY(-2px);
}

/* ==========================================================================
   11. PREMIUM CTA BANNER SECTION
   ========================================================================== */

.cta-banner-section {
    position: relative;
    padding: 6rem 0 5rem 0;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%); /* Light elegant green */
    overflow: hidden;
    z-index: 0;
}

/* Animated glow orbs in background */
.cta-banner-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.18) 0%, transparent 65%);
    top: -150px;
    right: -100px;
    border-radius: 50%;
    animation: ctaGlowFloat 10s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

.cta-banner-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 65%);
    bottom: -80px;
    left: -80px;
    border-radius: 50%;
    animation: ctaGlowFloat 14s ease-in-out infinite alternate-reverse;
    pointer-events: none;
    z-index: 1;
}

@keyframes ctaGlowFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -40px) scale(1.12); }
}

/* ---------- Particle Layer ---------- */
.cta-particles-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.cta-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.25);
    animation: ctaParticleFloat linear infinite;
}

.cta-p1 { width: 12px; height: 12px; top: 15%; left: 8%;  animation-duration: 8s;  animation-delay: 0s; }
.cta-p2 { width:  8px; height:  8px; top: 65%; left: 15%; animation-duration: 11s; animation-delay: 1.5s; }
.cta-p3 { width: 16px; height: 16px; top: 30%; left: 50%; animation-duration: 9s;  animation-delay: 3s; }
.cta-p4 { width:  6px; height:  6px; top: 70%; left: 70%; animation-duration: 13s; animation-delay: 2s; }
.cta-p5 { width: 10px; height: 10px; top: 20%; left: 85%; animation-duration: 7s;  animation-delay: 0.5s; }
.cta-p6 { width: 14px; height: 14px; top: 50%; left: 92%; animation-duration: 12s; animation-delay: 4s; }

@keyframes ctaParticleFloat {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50%  { opacity: 1; }
    100% { transform: translateY(-80px) rotate(360deg); opacity: 0; }
}

/* ---------- Road Animation Layer ---------- */
.cta-road-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52px;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
    overflow: hidden;
    border-top: 3px solid rgba(197, 168, 128, 0.5);
}

.cta-road-dash {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.7) 0px,
        rgba(255, 255, 255, 0.7) 28px,
        transparent 28px,
        transparent 56px
    );
    transform: translateY(-50%);
    animation: ctaRoadMove 0.8s linear infinite;
}

@keyframes ctaRoadMove {
    0%   { background-position-x: 0px; }
    100% { background-position-x: -56px; }
}

/* ---------- Banner Inner Layout ---------- */
.cta-banner-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding-bottom: 3.5rem;
}

/* ---------- Trust Badge Chips ---------- */
.cta-trust-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.cta-badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(11, 107, 84, 0.08); /* Light green tint */
    border: 1px solid rgba(11, 107, 84, 0.15); /* Subtle dark border */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--lux-text-dark); /* Dark text */
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    animation: ctaBadgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.cta-badge-chip:nth-child(2) { animation-delay: 0.1s; }
.cta-badge-chip:nth-child(3) { animation-delay: 0.2s; }

.cta-badge-chip i {
    color: #FBBF24;
}

@keyframes ctaBadgePop {
    from { transform: scale(0.7); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

/* ---------- Headline & Subtitle ---------- */
.cta-banner-content {
    max-width: 750px;
}

.cta-banner-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--lux-text-dark); /* Dark text for light bg */
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    text-shadow: none; /* Removed heavy drop shadow for light theme */
}

.cta-highlight {
    background: linear-gradient(90deg, #FBBF24 0%, #C5A880 50%, #FBBF24 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ctaGoldShimmer 4s linear infinite;
}

@keyframes ctaGoldShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.cta-banner-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--lux-text-slate); /* Gray text */
    font-weight: 400;
}

/* ---------- Stat Pills Row ---------- */
.cta-stat-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.cta-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(11, 107, 84, 0.05); /* Subtle dark tint */
    border: 1px solid rgba(11, 107, 84, 0.15); /* Subtle dark border */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 0.85rem 1.5rem;
    min-width: 110px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-stat-pill:hover {
    transform: translateY(-4px);
    background: rgba(11, 107, 84, 0.12); /* Darker on hover */
}

.cta-stat-pill strong {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lux-primary); /* Dark primary green for stats */
    line-height: 1;
    margin-bottom: 0.25rem;
}

.cta-stat-pill span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--lux-text-slate);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- CTA Action Buttons ---------- */
.cta-banner-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

/* Primary glow button */
.cta-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--lux-accent);
    color: #FFFFFF;
    padding: 1.1rem 2.25rem;
    border-radius: var(--lux-radius);
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.01em;
    overflow: hidden;
    box-shadow: 0 8px 30px -5px rgba(197, 168, 128, 0.5), 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.cta-btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    animation: ctaBtnShimmer 3s ease-in-out infinite;
}

@keyframes ctaBtnShimmer {
    0%   { transform: translateX(-100%); }
    60%  { transform: translateX(200%); }
    100% { transform: translateX(200%); }
}

.cta-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -5px rgba(197, 168, 128, 0.65), 0 8px 20px rgba(0, 0, 0, 0.25);
    color: #FFFFFF;
}

.cta-btn-arrow {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover .cta-btn-arrow {
    transform: translateX(4px);
}

/* Secondary outline phone button */
.cta-btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    border: 2px solid var(--lux-primary);
    color: var(--lux-primary);
    background: transparent;
    padding: 1.075rem 2.25rem;
    border-radius: var(--lux-radius);
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.cta-btn-secondary:hover {
    background: var(--lux-primary);
    border-color: var(--lux-primary);
    transform: translateY(-3px);
    color: #FFFFFF;
}

/* Pulsing call indicator dot */
.cta-call-pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #4ADE80;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.cta-call-pulse::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: rgba(74, 222, 128, 0.4);
    border-radius: 50%;
    animation: ctaCallPulse 1.8s ease-in-out infinite;
}

@keyframes ctaCallPulse {
    0%   { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* ---------- Animated Moving Taxi ---------- */
.cta-moving-taxi {
    position: absolute;
    bottom: -15px;
    left: -180px;
    z-index: 4;
    animation: ctaTaxiMove 10s linear infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

@keyframes ctaTaxiMove {
    0%   { left: -200px; }
    100% { left: calc(100% + 200px); }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .cta-banner-section {
        padding: 5rem 0 4.5rem 0;
    }

    .cta-stat-row {
        gap: 0.75rem;
    }

    .cta-stat-pill {
        min-width: 90px;
        padding: 0.7rem 1rem;
    }

    .cta-banner-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}

@media (max-width: 640px) {
    .cta-banner-section {
        padding: 4rem 0 4rem 0;
    }

    .cta-banner-inner {
        gap: 1.5rem;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .cta-stat-row {
        gap: 0.6rem;
    }

    .cta-stat-pill {
        min-width: 80px;
        padding: 0.6rem 0.8rem;
    }

    .cta-stat-pill strong {
        font-size: 1.05rem;
    }

    .cta-trust-badges {
        gap: 0.5rem;
    }

    .cta-badge-chip {
        font-size: 0.72rem;
        padding: 0.4rem 0.75rem;
    }

    .cta-moving-taxi {
        opacity: 0.5;
    }
}

/* Fare table */
.fare-table-wrapper {
    border-radius: var(--lux-radius-sm);
    border: 1px solid var(--lux-border);
    box-shadow: var(--lux-shadow-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--lux-white);
}

.fare-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
}

.fare-table thead tr {
    background: var(--lux-primary);
    color: var(--lux-white);
}

.fare-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.fare-table tbody tr {
    border-bottom: 1px solid var(--lux-border);
    transition: background 0.2s ease;
}

.fare-table tbody tr:last-child {
    border-bottom: none;
}

.fare-table tbody tr:hover {
    background: var(--lux-bg-soft);
}

.fare-table td {
    padding: 1rem 1.25rem;
    color: var(--lux-text-slate);
    vertical-align: middle;
}

.fare-table td strong {
    color: var(--lux-text-dark);
    font-weight: 700;
}

/* Slider controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    background: var(--lux-white);
    border: 1.5px solid var(--lux-border);
    color: var(--lux-text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--lux-transition);
    font-size: 0.875rem;
}

.slider-btn:hover:not(:disabled) {
    background: var(--lux-secondary);
    color: var(--lux-white);
    border-color: var(--lux-secondary);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: var(--lux-border);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--lux-transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--lux-secondary);
    width: 24px;
    border-radius: 4px;
}

/* Section-level utilities */
.why-section, .routes-section, .faq-section, .seo-content-section {
    padding: var(--space-20) 0;
}

.fleet-section, .fare-section, .testimonials-section {
    padding: var(--space-20) 0;
}

.bg-light {
    background: var(--lux-bg-light);
}

/* Scroll animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="zoom-in"] {
    transform: scale(0.9);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translate(0, 0);
}

[data-delay="50"]  { transition-delay: 0.05s; }
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.30s; }

/* Section badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--lux-primary-glow);
    border: 1px solid rgba(11, 107, 84, 0.2);
    color: var(--lux-primary);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--lux-text-dark);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.text-accent {
    color: var(--lux-secondary);
}

.section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    color: var(--lux-text-slate);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Generic btn */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--lux-radius-sm);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--lux-transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--lux-primary);
    color: var(--lux-white);
}

.btn-primary:hover {
    background: var(--lux-secondary);
    color: var(--lux-white);
}

/* Why section icon wrappers */
.why-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--lux-radius-sm);
    font-size: 1.5rem;
}

.why-icon-amber { background: rgba(197, 168, 128, 0.12); color: #B8956A; border: 1px solid rgba(197, 168, 128, 0.25); }

/* Reusable primary CTA button */
.lux-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--lux-primary) 0%, var(--lux-secondary) 100%);
    color: #FFFFFF;
    padding: 0.95rem 2rem;
    border-radius: var(--lux-radius);
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 20px -5px rgba(11, 107, 84, 0.35), 0 4px 10px rgba(11, 107, 84, 0.15);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lux-btn-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    animation: luxBtnShimmer 3s ease-in-out infinite;
}

@keyframes luxBtnShimmer {
    0%   { transform: translateX(-100%); }
    60%  { transform: translateX(200%); }
    100% { transform: translateX(200%); }
}

.lux-btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 28px -5px rgba(11, 107, 84, 0.50), 0 8px 16px rgba(11, 107, 84, 0.2);
    color: #FFFFFF;
}

/* ==========================================================================
   NEW A. WHY CHOOSE US SECTION
   ========================================================================== */

.why-choose-section {
    padding: 5rem 0;
    background: var(--lux-bg-light);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--lux-secondary), var(--lux-accent), var(--lux-secondary), transparent);
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-cards-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: var(--lux-white);
    border-radius: var(--lux-radius);
    padding: 2rem 1.75rem;
    border: 1px solid var(--lux-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.why-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--lux-secondary), var(--lux-accent));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transform: scaleY(0);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 16px 40px -10px rgba(11, 107, 84, 0.15),
                0 6px 16px rgba(11, 107, 84, 0.08);
}

.why-card:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

/* Card icon variants */
.why-card-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--lux-radius-sm);
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.why-card:hover .why-card-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.wci-emerald {
    background: rgba(16, 185, 129, 0.10);
    color: var(--lux-secondary);
    border: 1px solid rgba(16, 185, 129, 0.18);
}

.wci-gold {
    background: rgba(197, 168, 128, 0.12);
    color: var(--lux-accent-hover);
    border: 1px solid rgba(197, 168, 128, 0.22);
}

.wci-amber {
    background: rgba(197, 168, 128, 0.12);
    color: #B8956A;
    border: 1px solid rgba(197, 168, 128, 0.25);
}

.why-card-body {
    flex: 1;
}

.why-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.why-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--lux-text-slate);
}

/* Corner accent element */
.why-card-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.why-card:hover .why-card-accent {
    opacity: 1;
    transform: scale(2);
}


/* ==========================================================================
   NEW B. ANIMATED STATS COUNTER SECTION
   ========================================================================== */

.stats-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%); /* Light elegant green */
    overflow: hidden;
}

/* Background glow orbs */
.stats-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.stats-bg-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, transparent 65%);
    top: -150px;
    right: -100px;
    animation: statsGlowPulse 10s ease-in-out infinite alternate;
    filter: blur(40px);
}

.stats-bg-glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
    bottom: -80px;
    left: -60px;
    animation: statsGlowPulse 14s ease-in-out infinite alternate-reverse;
    filter: blur(30px);
}

@keyframes statsGlowPulse {
    0%   { transform: scale(1)   translate(0, 0); }
    100% { transform: scale(1.2) translate(30px, -20px); }
}

/* Road strip animation at bottom */
.stats-road-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.5) 0px,
        rgba(255, 255, 255, 0.5) 24px,
        transparent 24px,
        transparent 48px
    );
    animation: statsRoadMove 0.7s linear infinite;
}

@keyframes statsRoadMove {
    0%   { background-position-x: 0px; }
    100% { background-position-x: -48px; }
}

/* Stats grid */
.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }
}

@media (max-width: 480px) {
    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
    transition: background 0.3s ease;
}

.stats-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: rgba(11, 107, 84, 0.15); /* Darker divider for light bg */
}

@media (max-width: 991px) {
    .stats-item:nth-child(2)::after,
    .stats-item:last-child::after {
        display: none;
    }
}

.stats-item:hover {
    background: rgba(11, 107, 84, 0.04); /* Subtle dark hover */
    border-radius: var(--lux-radius-sm);
}

.stats-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(11, 107, 84, 0.08);
    border: 1px solid rgba(11, 107, 84, 0.15);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--lux-primary); /* Dark green icon */
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(8px);
}

.stats-item:hover .stats-icon-wrap {
    transform: scale(1.12) rotate(-5deg);
    background: rgba(11, 107, 84, 0.15);
}

.stats-number-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--lux-primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stats-suffix {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lux-accent);
    line-height: 1;
}

.stats-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    margin-bottom: 0.25rem;
}

.stats-sublabel {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--lux-text-slate);
    font-weight: 400;
}


/* ==========================================================================
   NEW C. OUR PROCESS — HOW IT WORKS SECTION
   ========================================================================== */

.process-section {
    padding: 5rem 0 4rem 0;
    background: var(--lux-white);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(11, 107, 84, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.7;
    pointer-events: none;
}

/* Timeline container */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

/* Horizontal dashed connector line */
.process-connector {
    position: absolute;
    top: 3.5rem;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--lux-secondary) 0px,
        var(--lux-secondary) 10px,
        transparent 10px,
        transparent 18px
    );
    z-index: 0;
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 0;
    }

    .process-connector {
        display: none;
    }
}

/* Individual step */
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Step number badge */
.process-step-number {
    font-family: 'Sora', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, var(--lux-primary), var(--lux-secondary));
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(11, 107, 84, 0.3);
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

/* Step card */
.process-step-card {
    background: var(--lux-bg-light);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-radius);
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease,
                background 0.35s ease;
    position: relative;
    overflow: hidden;
}

.process-step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lux-secondary), var(--lux-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-step:hover .process-step-card {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.3);
    background: #FFFFFF;
    box-shadow: 0 16px 40px -10px rgba(11, 107, 84, 0.14), 0 6px 16px rgba(11, 107, 84, 0.06);
}

.process-step:hover .process-step-card::after {
    transform: scaleX(1);
}

/* Process icon variants */
.process-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.process-step:hover .process-icon-wrap {
    transform: scale(1.12);
}

.psi-emerald {
    background: rgba(16, 185, 129, 0.10);
    color: var(--lux-secondary);
    border: 1.5px solid rgba(16, 185, 129, 0.2);
}

.psi-gold {
    background: rgba(197, 168, 128, 0.12);
    color: var(--lux-accent-hover);
    border: 1.5px solid rgba(197, 168, 128, 0.22);
}

.psi-amber {
    background: rgba(197, 168, 128, 0.12);
    color: #B8956A;
    border: 1.5px solid rgba(197, 168, 128, 0.25);
}

.process-step-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.process-step-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--lux-text-slate);
}

/* Bottom CTA */
.process-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 3rem;
}

.process-cta-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--lux-text-muted);
    font-weight: 500;
}

/* -------  Stats counter JS update -------- */
/* Re-wire the existing counter init to use our new selector */
.stats-section .stat-number[data-target] {
    font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   NEW D. PREMIUM TRAVEL SOLUTIONS (SERVICES)
   ========================================================================== */

.services-section {
    padding: 5rem 0;
    background: var(--lux-bg-light);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.8;
    pointer-events: none;
}

.svc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .svc-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .svc-cards-grid {
        grid-template-columns: 1fr;
    }
}

.svc-card {
    background: var(--lux-white);
    border-radius: var(--lux-radius);
    padding: 2.25rem 2rem;
    border: 1px solid var(--lux-border);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.svc-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--lux-secondary), var(--lux-accent));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transform: scaleY(0);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 16px 40px -10px rgba(11, 107, 84, 0.15),
                0 6px 16px rgba(11, 107, 84, 0.08);
}

.svc-card:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

/* Make the 7th card span full or center depending on grid */
@media (min-width: 992px) {
    .svc-card.svc-card-featured {
        grid-column: 2 / 3;
    }
}

/* Service Card icon variants */
.svc-card-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--lux-radius-sm);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.svc-card:hover .svc-card-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.sci-emerald {
    background: rgba(16, 185, 129, 0.10);
    color: var(--lux-secondary);
    border: 1px solid rgba(16, 185, 129, 0.18);
}

.sci-gold {
    background: rgba(197, 168, 128, 0.12);
    color: var(--lux-accent-hover);
    border: 1px solid rgba(197, 168, 128, 0.22);
}

.sci-amber {
    background: rgba(197, 168, 128, 0.12);
    color: #B8956A;
    border: 1px solid rgba(197, 168, 128, 0.25);
}

.svc-card-body {
    flex: 1;
}

.svc-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.svc-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--lux-text-slate);
}

.svc-card-link {
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lux-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
    z-index: 2;
}

.svc-card:hover .svc-card-link {
    color: var(--lux-accent);
}

.svc-link-arrow {
    transition: transform 0.3s ease;
}

.svc-card:hover .svc-link-arrow {
    transform: translateX(4px);
}

/* Corner accent element */
.svc-card-corner-glow {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.svc-card:hover .svc-card-corner-glow {
    opacity: 1;
    transform: scale(2);
}

/* ==========================================================================
   NEW E. PREMIUM FLEET CAROUSEL
   ========================================================================== */

.fleet-section {
    padding: 5rem 0;
    background: var(--lux-white);
    position: relative;
}

.fleet-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1199px) {
    .fleet-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .fleet-cards-grid {
        grid-template-columns: 1fr;
    }
}

.fleet-card {
    background: var(--lux-white);
    border-radius: var(--lux-radius);
    border: 1px solid var(--lux-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.4s ease, border-color 0.4s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(11, 107, 84, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

/* Visual Area (Top Half) */
.fleet-card-visual {
    position: relative;
    padding: 2.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lux-bg-light);
    overflow: hidden;
}

.fleet-visual-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    transition: opacity 0.4s ease;
}

.fv-emerald { background: linear-gradient(135deg, rgba(16,185,129,0.5), transparent); }
.fv-gold { background: linear-gradient(135deg, rgba(197,168,128,0.5), transparent); }
.fv-amber { background: linear-gradient(135deg, rgba(217,119,6,0.5), transparent); }

.fleet-card:hover .fleet-visual-bg {
    opacity: 0.25;
}

.fleet-car-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    mix-blend-mode: multiply; /* Magically removes the white background! */
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}

.fleet-card:hover .fleet-car-img {
    transform: scale(1.1) translateX(10px);
}

.fleet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.fb-emerald { background: var(--lux-white); color: var(--lux-secondary); border: 1px solid rgba(16,185,129,0.2); }
.fb-gold { background: var(--lux-white); color: var(--lux-accent-hover); border: 1px solid rgba(197,168,128,0.2); }
.fb-amber { background: var(--lux-white); color: #B8956A; border: 1px solid rgba(217,119,6,0.2); }


/* Body Area (Bottom Half) */
.fleet-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fleet-card-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lux-text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fleet-card-type {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--lux-text-muted);
    background: var(--lux-bg-light);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

/* Specs Grid */
.fleet-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.fleet-spec-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    color: var(--lux-text-slate);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fleet-spec-item i {
    color: var(--lux-secondary);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    opacity: 0.8;
}

/* Footer / Pricing */
.fleet-card-footer {
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--lux-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fleet-price {
    display: flex;
    flex-direction: column;
}

.fleet-price-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--lux-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.fleet-price-val {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lux-secondary);
}

.fleet-price-val small {
    font-size: 0.85rem;
    color: var(--lux-text-slate);
    font-weight: 500;
}

.fleet-cta-btn {
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--lux-white);
    background: var(--lux-secondary);
    padding: 0.6rem 1.25rem;
    border-radius: var(--lux-radius-sm);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.fleet-cta-btn:hover {
    background: var(--lux-primary);
    color: var(--lux-white);
    transform: translateY(-2px);
}

/* =========================================
   11. PREMIUM SEO CONTENT SECTION
   ========================================= */
.seo-content-section {
    padding: var(--space-20) 0;
    background: var(--lux-bg-light);
    position: relative;
    overflow: hidden;
}

.seo-content-wrapper {
    background: var(--lux-white);
    border: 1px solid var(--lux-border);
    border-radius: var(--lux-radius);
    padding: var(--space-12) var(--space-16);
    box-shadow: var(--lux-shadow-md);
    position: relative;
    /* max-width removed to match other sections width */
    margin: 0 auto;
}

.seo-title {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--lux-text-dark);
    margin-bottom: var(--space-6);
    line-height: 1.3;
    text-align: center;
}

.seo-content-inner {
    max-height: 300px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.seo-content-inner.expanded {
    max-height: 3000px; /* Big enough to fit all content */
}

.seo-content-inner p {
    color: var(--lux-text-slate);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

.seo-content-inner h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

.seo-content-inner ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--space-6);
}

.seo-content-inner li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: var(--space-3);
    color: var(--lux-text-slate);
    line-height: 1.6;
}

.seo-content-inner li::before {
    content: '\f058'; /* Check-circle icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--lux-primary);
}

.seo-content-inner a {
    color: var(--lux-secondary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.seo-content-inner a:hover {
    border-bottom-color: var(--lux-secondary);
}

.seo-read-more-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.95) 40%, rgba(255,255,255,1) 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: var(--space-6);
    border-bottom-left-radius: var(--lux-radius);
    border-bottom-right-radius: var(--lux-radius);
    transition: opacity 0.3s ease;
    z-index: 10;
}

.seo-content-inner.expanded + .seo-read-more-overlay,
.seo-read-more-overlay.overlay-open {
    position: relative;
    height: auto;
    background: transparent;
    padding-top: var(--space-6);
    padding-bottom: 0;
    pointer-events: auto;
    opacity: 1;
}

#seo-read-more-btn {
    background: var(--lux-primary);
    color: var(--lux-white);
    border: none;
    border-radius: var(--lux-radius-capsule);
    padding: 0.6rem 1.5rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--lux-shadow-md);
    transition: var(--lux-transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#seo-read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--lux-shadow-lg);
    background: var(--lux-text-dark);
}

@media (max-width: 768px) {
    .seo-content-wrapper {
        padding: var(--space-8) var(--space-6);
        border-radius: var(--lux-radius-sm);
    }
    .home-faq-title {
        font-size: 2rem;
    }
}

/* =====================================================================
   CINEMATIC CENTER-ALIGNED HERO (NEW DESIGN)
   ===================================================================== */
.cinematic-hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 20px 80px 20px;
}

.ch-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 79, 62, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.ch-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin-bottom: 50px;
}

.ch-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.ch-rating i {
    color: #FBBF24;
}

.ch-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.ch-title-highlight {
    color: var(--lux-accent);
}

.ch-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Horizontal Booking Console */
.ch-booking-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.ch-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: -15px; /* Pull it down into the glass */
    position: relative;
    z-index: 3;
}

.ch-tab {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 12px 12px 0 0;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    padding-bottom: 25px; /* extra to dip behind form */
}

.ch-tab.active {
    background: #fff;
    color: var(--lux-primary);
    border-color: #fff;
}

.ch-glass-bar {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 4;
}

.ch-form-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.ch-input-group {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ch-input-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ch-input-label i {
    color: var(--lux-primary);
}

.ch-input-field {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 15px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    width: 100%;
    outline: none;
    transition: all 0.3s;
}

.ch-input-field:focus {
    border-color: var(--lux-primary);
    box-shadow: 0 0 0 3px rgba(11, 107, 84, 0.1);
}

.ch-btn-submit {
    background: linear-gradient(135deg, var(--lux-primary) 0%, var(--lux-secondary) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ch-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(11, 107, 84, 0.3);
}

@media (max-width: 991px) {
    .ch-form-row {
        flex-direction: column;
        align-items: stretch;
    }
    .ch-btn-submit {
        margin-top: 10px;
        justify-content: center;
        padding: 18px;
    }
    .ch-glass-bar {
        padding: 20px;
    }
}

/* =========================================
   12. FOOTER LOGO
   ========================================= */
.lux-footer-logo-link {
    display: inline-block;
    margin-bottom: var(--space-2);
    text-decoration: none;
}

.footer-logo-img {
    height: auto;
    width: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* =========================================
   22. GLOBAL PHONE ICON DIRECTION
   ========================================= */
.fa-phone-alt {
    transform: scaleX(-1);
    display: inline-block;
}
