/* GoLuxVanta - Ultra-Black & Gold Luxury Theme */
/* Compatible with both localhost and production servers */

/* CSS Custom Properties - Ultra-Black Background + Luxury Gold */
:root {
    --ultra-black: #050505;         /* Primary Background */
    --jet-black: #0A0A0A;           /* Secondary Background */
    --charcoal: #1A1A1A;            /* Cards & Sections */
    --soft-white: #FAFAFA;          /* Primary Text */
    --platinum: #E5E4E2;            /* Subtle Accents */
    --gold: #FFD700;                /* Luxury Accents */
    --dark-gold: #B8860B;           /* Hover Gold */
    --bright-gold: #DAA520;         /* Bright Gold */
    --rose-gold: #CD853F;           /* Rose Gold */
    --vanta: #000000;               /* Pure Black */
    --text-primary: #ffffff;        /* Primary Text */
    --text-secondary: rgba(255,255,255,0.85); /* Secondary Text */
    --text-muted: rgba(255,255,255,0.65);     /* Muted Text */
    --glass-bg: rgba(0,0,0,0.3);    /* Glass Background */
    --glass-border: rgba(212,175,55,0.2); /* Glass Border */
    --shadow-color: rgba(0,0,0,0.8); /* Shadow Color */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Theme - Luxury Dark */
[data-theme="dark"] {
    --bg-primary: var(--ultra-black);
    --bg-secondary: var(--jet-black);
    --bg-tertiary: var(--charcoal);
    --text-primary: var(--soft-white);
    --text-secondary: var(--platinum);
    --text-muted: rgba(250, 250, 250, 0.8);
    --border-color: rgba(255, 215, 0, 0.2);
    --accent-color: var(--gold);
    --hover-accent: var(--dark-gold);
}

/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.loaded {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    text-align: center;
}

.diamond-icon {
    font-size: 3rem;
    color: var(--gold);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--gold);
    color: var(--vanta);
    padding: 8px;
    text-decoration: none;
    border-radius: 8px;
    z-index: 1000;
    transition: var(--transition);
}

.skip-link:focus {
    top: 6px;
}

/* Mobile Menu Toggle - Essential for Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Ensure hamburger lines are always visible */
.hamburger-line {
    background: var(--gold) !important;
    opacity: 1;
    box-shadow: 0 0 2px rgba(255, 215, 0, 0.5);
}

/* CRITICAL: Show hamburger menu on mobile/tablet - see larger media block further down for full rules */

/* Essential Mobile Navigation - Single Implementation */
/* Essential Mobile Navigation - Single Implementation */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex !important;
        order: 3;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .nav-container {
        gap: 1rem;
        justify-content: space-between;
        padding: 1rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        gap: 1.75rem;
        padding: 1rem;
    }

    .mobile-menu-toggle {
        padding: 8px;
  }

    .hamburger-line {
        width: 24px;
        height: 2px;
    }

    /* Mobile floating button styling */
    .floating-book-btn {
        width: 65px;
        height: 65px;
        font-size: 0.7rem;
        top: 120px;
        right: 1.5rem;
    }
} /* ✅ CLOSING BRACE ADDED */

@media (max-width: 480px) {
    .nav-container {
        gap: 1.5rem;
        padding: 0.75rem;
    }

    .mobile-menu-toggle {
        padding: 6px;
    }

    .hamburger-line {
        width: 22px;
        height: 2px;
    }

    /* Small mobile floating button styling */
    .floating-book-btn {
        width: 60px;
        height: 60px;
        font-size: 0.65rem;
        top: 100px;
        right: 1.25rem;
    }
}

/* Enhanced hamburger animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}



/* Header - Banner Background + Luxury Gold */
/* Header - Banner Background + Luxury Gold */
/* Desktop Banner - Full detailed banner */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 140px;
    background: url('https://img1.wsimg.com/isteam/ip/05accd0c-8648-451b-96c7-409791e06622/LAPTOP%20BANNER%201920x600%20SMALL.png') center/cover no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

/* Scrolled state - dimmed banner with centered logo */
.header.scrolled {
    background: 
        linear-gradient(rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.9)),
        url('https://img1.wsimg.com/isteam/ip/05accd0c-8648-451b-96c7-409791e06622/LAPTOP%20BANNER%201920x600%20SMALL.png') center/cover no-repeat !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
}

/* Centered logo when scrolled */
.header.scrolled::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 120px;
    background: url('https://img1.wsimg.com/isteam/ip/05accd0c-8648-451b-96c7-409791e06622/LOGO%20SVG%20COLOR%20WEB%20DORADO.png') center/contain no-repeat;
    opacity: 0.95;
    z-index: 1;
    pointer-events: none;
}

/* Luxury gold accent lines on both sides of logo */
.header.scrolled::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 215, 0, 0.2) 15%,
        rgba(255, 215, 0, 0.6) 25%,
        rgba(255, 215, 0, 0.8) 30%,
        transparent 35%,
        transparent 65%,
        rgba(255, 215, 0, 0.8) 70%,
        rgba(255, 215, 0, 0.6) 75%,
        rgba(255, 215, 0, 0.2) 85%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

/* Tablet - Medium banner */
@media (max-width: 1024px) {
    .header {
        height: 240px;
        background: url('https://img1.wsimg.com/isteam/ip/05accd0c-8648-451b-96c7-409791e06622/LAPTOP%20BANNER%201920x600-cf58e10.png') center/cover no-repeat;
    }
    
    .header.scrolled::after {
        width: 280px;  /* ✅ BIGGER */
        height: 95px;
    }
    
    .header.scrolled::before {
        width: 450px;
    }
}

/* Mobile - Compact banner */
@media (max-width: 768px) {
    .header {
        height: 180px;
        background: url('https://img1.wsimg.com/isteam/ip/05accd0c-8648-451b-96c7-409791e06622/LAPTOP%20BANNER%201920x600-cf58e10.png') center/cover no-repeat;
    }
    
    .header.scrolled::after {
        width: 280px;  /* ✅ BIG */
        height: 95px;  /* ✅ BIG */
    }
    
    .header.scrolled::before {
        width: 90%;
        max-width: 420px;
    }
}

/* Small mobile - Smallest banner */
@media (max-width: 480px) {
    .header {
        height: 130px;
        background: url('https://img1.wsimg.com/isteam/ip/05accd0c-8648-451b-96c7-409791e06622/LAPTOP%20BANNER%201920x600-cf58e10.png') center/cover no-repeat;
    }
    
    .header.scrolled::after {
        width: 240px;  /* ✅ BIGGER - Keep this one! */
        height: 85px;  /* ✅ BIGGER - Keep this one! */
    }
    
    .header.scrolled::before {
        width: 90%;
        max-width: 360px;
    }
}
/* Small mobile - Smallest banner */
@media (max-width: 480px) {
    .header {
        height: 130px;
        background: url('https://img1.wsimg.com/isteam/ip/05accd0c-8648-451b-96c7-409791e06622/LAPTOP%20BANNER%201920x600-cf58e10.png') center/cover no-repeat;
    }
    
    .header.scrolled::after {
        width: 130px;
        height: 45px;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

/* Logo */
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}


/* Mobile Logo - Cleaned up */

/* Floating Book Now Button - Under Banner */
.floating-book-btn {
    position: fixed;
    top: 150px;
    right: 2rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(145deg, #F4E4C1 0%, #E6D8B5 10%, #D4AF37 25%, #FFD700 45%, #DAA520 55%, #B8860B 75%, #8B6914 90%, #6B5610 100%);
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow:
        0 2px 4px rgba(139, 105, 20, 0.3),
        0 4px 8px rgba(212, 175, 55, 0.2),
        0 8px 16px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.floating-book-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: goldShine 3s ease-in-out infinite;
}

.floating-book-btn:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(145deg, #FFE5B4 0%, #F4E4C1 10%, #FFD700 25%, #F0E68C 45%, #DAA520 55%, #D4AF37 75%, #B8860B 90%, #8B6914 100%);
    box-shadow:
        0 4px 8px rgba(139, 105, 20, 0.4),
        0 8px 16px rgba(212, 175, 55, 0.3),
        0 12px 24px rgba(255, 215, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.floating-book-btn .btn-text {
    display: block;
    line-height: 1.2;
}

/* Reusable gold CTA utility for consistent gradient, shimmer and hover */




/* Apply gold CTA visual styles to all CTA-like selectors in one place */
.cta-link,
.cta-button,
.vehicle-cta,
.nav-menu.active .desktop-book-now-item a {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    color: var(--ultra-black) !important;
}






/* Navigation Menu - Hidden on Desktop, shown via hamburger */
.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

/* Mobile Navigation - Critical for Mobile Experience */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex !important;
        order: 3;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex !important;
    }

    /* Show floating book now button on mobile */
    .floating-book-btn {
        display: flex !important; /* ✅ ADD THIS */
    }

    .nav-container {
        gap: 2rem;
        justify-content: space-between;
        padding: 1rem 2rem;
    }
}
.nav-link {
    font-family: 'Montserrat', sans-serif;
    color: var(--soft-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Hamburger menu Book Now button styling */


.cta-link {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(145deg, #F4E4C1 0%, #E6D8B5 10%, #D4AF37 25%, #FFD700 45%, #DAA520 55%, #B8860B 75%, #8B6914 90%, #6B5610 100%);
    color: #1a1a1a !important;
    padding: 12px 24px !important;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 2px 4px rgba(139, 105, 20, 0.3),
        0 4px 8px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.3),
        0 -1px 0 rgba(0, 0, 0, 0.2);
}

.cta-link::before,
.cta-button::before,
.vehicle-cta::before,
.nav-menu.active .desktop-book-now-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-link:hover::before,
.cta-button:hover::before,
.vehicle-cta:hover::before,
.nav-menu.active .desktop-book-now-item a:hover::before {
    left: 100%;
}

.cta-link:hover,
.nav-menu.active .desktop-book-now-item a:hover {
    background: linear-gradient(145deg, #FFE5B4 0%, #F4E4C1 10%, #FFD700 25%, #F0E68C 45%, #DAA520 55%, #D4AF37 75%, #B8860B 90%, #8B6914 100%);
    color: #1a1a1a !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 4px 8px rgba(139, 105, 20, 0.4),
        0 8px 16px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4),
        0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    padding-top: 0;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.35)),
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1.5s ease 0.5s forwards;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-logo-container {
    margin-bottom: 1.5rem;
}

/* Base style - NO max-width here */
.hero-content .hero-logo-container .hero-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Desktop - smallest logo */
@media (min-width: 1025px) {
    .hero-content .hero-logo-container .hero-logo-img {
        max-width: 260px !important;
        margin-top: 50px;
    }
}

/* Tablet - medium logo */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content .hero-logo-container .hero-logo-img {
        max-width: 300px !important;
    }
}

/* Mobile - larger logo */
@media (max-width: 768px) {
    .hero-content .hero-logo-container .hero-logo-img {
        max-width: 320px !important;
        width: 90%;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-content .hero-logo-container .hero-logo-img {
        max-width: 280px !important;
        width: 85%;
    }
}
@keyframes heroLogoEntrance {
    0% {
        transform: scale(0.7) translateY(40px) rotate(-2deg);
        opacity: 0;
        filter:
            drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
    }
    30% {
        transform: scale(1.05) translateY(-5px) rotate(1deg);
        opacity: 0.8;
        filter:
            drop-shadow(0 0 25px rgba(255, 215, 0, 0.5));
    }
    100% {
        transform: scale(1) translateY(0) rotate(0deg);
        opacity: 1;
        filter:
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.4))
            drop-shadow(0 5px 15px rgba(255, 215, 0, 0.2));
    }
}


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



.hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--soft-white);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 1rem 2.5rem;
    /* Ultra-brilliant metallic gold with enhanced depth */
    background: linear-gradient(145deg,
        #F4E4C1 0%, #E6D8B5 5%, #D4AF37 15%, #FFD700 35%, #F0E68C 50%,
        #DAA520 65%, #B8860B 80%, #8B6914 95%, #6B5610 100%);
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    /* Brilliant multi-layer shadow system */
    box-shadow:
        0 2px 8px rgba(139, 105, 20, 0.4),
        0 4px 16px rgba(212, 175, 55, 0.3),
        0 8px 32px rgba(255, 215, 0, 0.2),
        0 16px 64px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.5),
        0 -1px 1px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 215, 0, 0.3);
    /* Ultra-sharp rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 25%,
        rgba(255, 255, 255, 0.6) 45%,
        rgba(255, 215, 0, 0.8) 50%,
        rgba(255, 255, 255, 0.6) 55%,
        transparent 75%
    );
    transform: rotate(45deg);
    animation: goldShine 4s ease-in-out infinite;
}

@keyframes goldShine {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 1;
    }
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-button:hover,
.cta-button:focus {
    background: linear-gradient(145deg,
        #FFE5B4 0%, #F4E4C1 5%, #FFD700 15%, #F0E68C 35%, #DAA520 50%,
        #D4AF37 65%, #B8860B 80%, #8B6914 95%, #6B5610 100%);
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 6px 20px rgba(139, 105, 20, 0.5),
        0 12px 40px rgba(212, 175, 55, 0.4),
        0 24px 80px rgba(255, 215, 0, 0.3),
        0 48px 160px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4);
    text-shadow:
        0 1px 2px rgba(255, 255, 255, 0.6),
        0 -1px 1px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.6);
    outline: none;
}

.cta-button:focus {
    box-shadow:
        0 6px 20px rgba(139, 105, 20, 0.5),
        0 12px 40px rgba(212, 175, 55, 0.4),
        0 24px 80px rgba(255, 215, 0, 0.3),
        0 48px 160px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 215, 0, 0.3);
}

/* Section Titles */
.section-title {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    background: linear-gradient(145deg, #F4E4C1 0%, #E6D8B5 10%, #D4AF37 25%, #FFD700 45%, #DAA520 55%, #B8860B 75%, #8B6914 90%, #6B5610 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    line-height: 1.3;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Why GoLuxVanta Section - Ultra-Black & Gold Luxury */













/* Services and Why Section - Two Column Layout */




/* Mobile Responsive - Services and Why Sections */
@media (max-width: 1024px) {



}

@media (max-width: 768px) {










}

@media (max-width: 480px) {








}

/* Services Section - Ultra-Black Background + Gold Accents */
.services {
    padding: 0;
    background: var(--ultra-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    background: linear-gradient(135deg, var(--jet-black) 0%, var(--charcoal) 100%);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 50%, transparent 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--jet-black) 100%);
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, #F4E4C1 0%, #D4AF37 25%, #FFD700 50%, #DAA520 75%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 2px 3px rgba(212, 175, 55, 0.3));
}

.service-description {
    font-family: 'Open Sans', sans-serif;
    color: var(--soft-white);
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--bright-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

/* Fleet Section - Ultra-Black Background + Gold Accents */
.fleet {
    padding: 6rem 0;
    background: var(--ultra-black);
    position: relative;
}

/* Fleet Mobile Spacing */
@media (max-width: 1024px) {
    .fleet {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .fleet {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .fleet {
        padding: 3rem 0;
    }
}

.fleet .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.section-subtitle {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-size: 1.2rem;
    color: var(--soft-white);
    margin-bottom: 4rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Fleet Section Mobile Enhancements */
@media (max-width: 768px) {
    .fleet .section-title {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .fleet .section-title {
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Fleet Mobile Responsiveness */
@media (max-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .fleet {
        padding: 4rem 0;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .fleet {
        padding: 3rem 0;
    }

    .fleet-grid {
        gap: 1.5rem;
        padding: 0 0.75rem;
        max-width: 400px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
}

.vehicle-card {
    background: linear-gradient(135deg, var(--jet-black) 0%, var(--charcoal) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: slideInUp 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

/* Vehicle Card Mobile Optimization */

@media (max-width: 768px) {
    .vehicle-card {
        max-width: 100%;
        margin: 0 auto 1rem;
        border-radius: 12px;
    }
    .vehicle-image {
        height: 160px;
        border-radius: 12px 12px 0 0;
       border: 2px solid var(--gold);


    }
  

    .vehicle-info {
        padding: 1.5rem;
    }

    .vehicle-name {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .vehicle-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .vehicle-features {
        margin-bottom: 1rem;
    }

    .vehicle-features li {
        padding: 0.4rem 0;
        font-size: 0.9rem;
    }

    .vehicle-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
  .vehicle-card {
    margin: 0 auto 0.75rem;
    border-radius: 10px;
  }



    .vehicle-image {
        height: 140px;
        border-radius: 10px 10px 0 0;
    }

    .vehicle-info {
        padding: 1.25rem;
    }

    .vehicle-name {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .vehicle-description {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .vehicle-features li {
        padding: 0.3rem 0;
        font-size: 0.85rem;
    }

    .vehicle-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
}

.vehicle-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--jet-black) 100%);
}

.vehicle-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 16px 16px 0 0;
    display: block;
    margin: 0 auto;
}

.vehicle-info {
    padding: 2rem;
    text-align: center;
}

.vehicle-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    background: linear-gradient(145deg, #F4E4C1 0%, #D4AF37 25%, #FFD700 50%, #DAA520 75%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 3px rgba(212, 175, 55, 0.3));
}

.vehicle-description {
    font-family: 'Open Sans', sans-serif;
    color: var(--soft-white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.vehicle-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: center;
}

.vehicle-features li {
    padding: 0.5rem 0;
    color: var(--soft-white);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.vehicle-cta {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(145deg, #F4E4C1 0%, #E6D8B5 10%, #D4AF37 25%, #FFD700 45%, #DAA520 55%, #B8860B 75%, #8B6914 90%, #6B5610 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 2px 4px rgba(139, 105, 20, 0.3),
        0 4px 8px rgba(212, 175, 55, 0.2),
        0 8px 16px rgba(255, 215, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.3),
        0 -1px 0 rgba(0, 0, 0, 0.2);
}

.vehicle-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: goldShine 3s ease-in-out infinite;
}

.vehicle-cta:hover {
    background: linear-gradient(145deg, #FFE5B4 0%, #F4E4C1 10%, #FFD700 25%, #F0E68C 45%, #DAA520 55%, #D4AF37 75%, #B8860B 90%, #8B6914 100%);
    color: #1a1a1a;
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 4px 8px rgba(139, 105, 20, 0.4),
        0 8px 16px rgba(212, 175, 55, 0.3),
        0 12px 24px rgba(255, 215, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4),
        0 -1px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Booking Section */
.booking {
    padding: 6rem 0;
    background: var(--ultra-black);
    text-align: center;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--soft-white);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}


/* Advanced Booking Form - Multi-Step Interface */
.booking-container {
    max-width: 500px; /* ✅ Match WebBooker width */
    margin: 0 auto;
    background: var(--charcoal);
    border: none;
    border-radius: 0;
    position: relative;
    box-shadow: 0 0 20px var(--shadow-color);
    overflow: hidden;
    min-height: 100vh;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* ✅ ADD THIS LINE */
}

/* ✅ ADD THESE NEW RULES RIGHT AFTER */
/* ZOOM OUT EFFECT for Step 2 - Vehicle Selection */
/* ZOOM OUT EFFECT for Step 2 - Vehicle Selection - SHOW ALL 3 CARS */
.booking-container.zoomed-out {
    transform: scale(0.75); /* ✅ MORE zoom out to show all 3 cars */
    transform-origin: top center;
}

/* Tablet - moderate zoom */
@media (max-width: 1024px) {
    .booking-container.zoomed-out {
        transform: scale(0.80);
    }
}

/* Mobile - less zoom out */
@media (max-width: 768px) {
    .booking-container.zoomed-out {
        transform: scale(0.85);
    }
}

@media (max-width: 480px) {
    .booking-container.zoomed-out {
        transform: scale(0.90);
    }
}
.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.step-circle.active {
    background: var(--gold);
    color: var(--ultra-black);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.step-circle.completed {
    background: var(--dark-gold);
    color: var(--gold);
    border-color: var(--dark-gold);
}

.step-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: capitalize;
}

.step-label.active {
    color: var(--gold);
    font-weight: 700;
}

.booking-content {
    padding: 1.5rem;
    min-height: auto;
}

.booking-content.hidden {
    display: none;
}

.trip-type-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.toggle-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--ultra-black);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ✅ ADD PICKUP TIME STYLES RIGHT HERE */
/* Pickup Time - Prominent Gold Banner Style */
/* Pickup Time - Prominent Gold Banner Style */
.pickup-time-group {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.pickup-time-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.pickup-time-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.pickup-time-group input[type="datetime-local"] {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-size: 1.1rem;
    background: var(--jet-black);
    color: var(--text-primary);
    font-family: inherit;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pickup-time-group input[type="datetime-local"]:focus {
    outline: none;
    border-color: var(--bright-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: scale(1.02);
    background: var(--charcoal);
}

.pickup-time-group input[type="datetime-local"]:hover {
    border-color: var(--bright-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pickup-time-group {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .pickup-time-group label {
        font-size: 1rem !important;
        letter-spacing: 1px;
    }
    
    .pickup-time-group input[type="datetime-local"] {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pickup-time-group {
        padding: 1rem;
    }
    
    .pickup-time-group label {
        font-size: 0.95rem !important;
    }
    
    .pickup-time-group input[type="datetime-local"] {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
}  /* ✅ THIS IS THE LAST LINE - CLOSING BRACE FOR @media (max-width: 480px) */

/* ✅ AFTER THIS, YOUR NEXT CSS RULE STARTS */
.location-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    /* ... rest of your CSS continues ... */
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--jet-black);
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.location-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.location-icon {
    position: absolute;
    left: 1rem;
    top: 2.75rem;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    z-index: 1;
    pointer-events: none;
}

.form-group > div {
    position: relative;
}

.location-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--ultra-black);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.location-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.airline-section {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.airline-search-container {
    position: relative;
}

.airline-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    border: 2px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.airline-option {
    padding: 1rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.airline-option:last-child {
    border-bottom: none;
}

.airline-option:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.airline-option.selected {
    background-color: rgba(255, 215, 0, 0.2);
    color: var(--gold);
}

.flight-number-container input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--jet-black);
    color: var(--text-primary);
    font-family: inherit;
    margin-top: 0.5rem;
}

.flight-number-container input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.selected-airline {
    margin-top: 1rem;
}

.airline-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--jet-black);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 1rem;
}

#change-airline {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--ultra-black);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#change-airline:hover {
    background: var(--dark-gold);
    transform: translateY(-1px);
}

.duration-section select,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--jet-black);
    color: var(--text-primary);
    font-family: inherit;
    cursor: pointer;
}

.duration-section select:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin: 1.5rem 0;
}

/* ✅ FIX: Flight number checkbox - Better mobile support */
.flight-number-container .checkbox-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin: 1rem 0 0 0;
    cursor: pointer;
    user-select: none;
    min-height: 60px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.flight-number-container .checkbox-group input[type=checkbox] {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
    margin: 0 !important;
    position: relative;
    z-index: 10;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: var(--jet-black);
    border: 2px solid var(--gold);
    border-radius: 4px;
}

.flight-number-container .checkbox-group input[type=checkbox]:checked {
    background: var(--gold);
    border-color: var(--gold);
}

.flight-number-container .checkbox-group input[type=checkbox]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--ultra-black);
    font-size: 24px;
    font-weight: bold;
}

.flight-number-container .checkbox-label-text {
    cursor: pointer;
    flex: 1;
    color: var(--text-primary) !important;
    text-transform: none !important;
    font-size: 17px !important;
    letter-spacing: normal !important;
    font-weight: 400 !important;
    line-height: 1.4;
}

.flight-number-container .checkbox-group:active {
    background: rgba(255, 215, 0, 0.15);
}

/* ✅ Mobile enhancement */
@media (max-width: 768px) {
    .flight-number-container .checkbox-group {
        padding: 1.75rem 1.5rem;
        gap: 1.5rem;
        min-height: 70px;
    }
    
    .flight-number-container .checkbox-group input[type=checkbox] {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }
    
    .flight-number-container .checkbox-label-text {
        font-size: 18px !important;
        line-height: 1.5;
    }
}


/* Step 2 - Pricing Options - Clean Horizontal Lines (All Screens) */
/* Step 2 - Pricing Options - Compact Style with Fleet-like centering */
/* Step 2 - Simple Clean Vehicle Selection */
/* Step 2 - Price Top Right Layout - Clean & Scannable */
#vehicle-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
}

#vehicle-container .vehicle-card {
    display: grid;
    grid-template-columns: 110px 1fr 120px;
    grid-template-rows: auto auto;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--jet-black);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    align-items: start;
}

#vehicle-container .vehicle-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

/* Vehicle image - left side, spans 2 rows */
#vehicle-container .vehicle-image {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 110px !important;
    height: 75px !important;
    max-width: 110px !important;
    object-fit: contain !important;
    margin: 0 !important;
    border-radius: 8px !important;
    padding: 5px !important;
    background: rgba(0, 0, 0, 0.2) !important;
    flex-shrink: 0;
}

/* Vehicle info - middle */
.vehicle-main-info {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}

.vehicle-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.vehicle-subtitle {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 12px;
    line-height: 1.3;
    opacity: 0.8;
}

.vehicle-capacity {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 13px;
    color: var(--text-secondary);
}

.capacity-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Price - top right, prominent */
.vehicle-pricing {
    grid-column: 3;
    grid-row: 1;
    text-align: right;
    align-self: start;
}

.price-amount {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--gold);
    display: block;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* Actions row - bottom spanning full width */
.pricing-actions {
    grid-column: 1 / 4;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.select-btn {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--ultra-black);
    padding: 0.85rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
}

/* Round trip toggle - Click checkbox only */
.roundtrip-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    user-select: none;
    flex: 1;
    pointer-events: none; /* ✅ Disable click on container */
}

.roundtrip-checkbox {
    width: 48px;
    height: 28px;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    pointer-events: auto; /* ✅ Enable click on checkbox only */
}

.roundtrip-checkbox::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    top: 3px;
    left: 3px;
    transition: all 0.3s ease;
    pointer-events: none; /* ✅ Don't block checkbox clicks */
}

.roundtrip-checkbox:checked {
    background: var(--gold);
}

.roundtrip-checkbox:checked::before {
    left: 23px;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    pointer-events: none; /* ✅ Text is not clickable */
}

.toggle-icon {
    font-size: 16px;
}
/* Mobile responsive */
@media (max-width: 768px) {
    #vehicle-container .vehicle-card {
        grid-template-columns: 100px 1fr 100px;
        padding: 1.25rem;
        gap: 1rem;
    }

    #vehicle-container .vehicle-image {
        width: 100px !important;
        height: 65px !important;
    }

    .vehicle-title {
        font-size: 16px;
    }

    .price-amount {
        font-size: 28px !important;
    }

    .pricing-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .select-btn {
        width: 100%;
        padding: 1rem;
    }

    .roundtrip-toggle {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    #vehicle-container .vehicle-card {
        grid-template-columns: 85px 1fr 85px;
        padding: 1rem;
        gap: 0.75rem;
    }

    #vehicle-container .vehicle-image {
        width: 85px !important;
        height: 58px !important;
    }

    .vehicle-title {
        font-size: 15px;
    }

    .price-amount {
        font-size: 24px !important;
    }
}


/* Google Maps Autocomplete Dropdown - Override */
.pac-container {
    font-family: inherit !important;
    z-index: 10000 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.8) !important;
    background: #1A1A1A !important;
    margin-top: 4px !important;
    border: 1px solid #FFD700 !important;
}

.pac-item {
    padding: 12px 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    border-bottom: 1px solid rgba(255,215,0,0.2) !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    color: #FAFAFA !important;
    background: #1A1A1A !important;
}

.pac-item:hover {
    background-color: rgba(255,215,0,0.15) !important;
}

.pac-item-query {
    color: #FAFAFA !important;
    font-size: 14px !important;
}

.pac-matched {
    font-weight: 700 !important;
    color: #FFD700 !important;
}

.pac-icon {
    color: #FFD700 !important;
}

.pac-item:last-child {
    border-bottom: none !important;
}

.select-btn {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--ultra-black);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.distance-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.5rem 0;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.disclaimer {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--gold);
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
    line-height: 1.5;
}

.phone-input {
    display: flex;
    gap: 1rem;
}

.country-code {
    flex: 0 0 150px;
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--jet-black);
    color: var(--text-primary);
    font-family: inherit;
    cursor: pointer;
    height: 55px; /* ✅ ADD THIS */
}

.phone-input input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--jet-black);
    color: var(--text-primary);
    font-family: inherit;
    height: 55px; /* ✅ ADD THIS */
}

.phone-input input:focus,
.country-code:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* ✅ NEW SECTION - Step 3 Explicit Input Heights for Desktop */
#s3 .form-group input:not([type="checkbox"]):not([type="radio"]),
#s3 .form-group select {
    height: 55px;
    padding: 1rem;
    font-size: 1rem;
}

#s3 .form-group textarea {
    min-height: 120px;
    padding: 1rem;
    font-size: 1rem;
}

/* Desktop explicit sizing */
@media (min-width: 769px) {
    #s3 .form-group input:not([type="checkbox"]):not([type="radio"]),
    #s3 .form-group select {
        height: 55px !important;
        padding: 1rem !important;
        font-size: 1rem !important;
    }
    
    #s3 .country-code,
    #s3 .phone-input input {
        height: 55px !important;
        padding: 1rem !important;
        font-size: 1rem !important;
    }
}
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--jet-black);
    color: var(--text-primary);
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Order Summary - Step 4 - Perfect Alignment */
.order-summary {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.order-summary h3 {
    color: var(--gold);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--jet-black);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 2rem;
}

.summary-image {
    width: 110px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
    background: transparent !important;
    padding: 5px;
}

.summary-details {
    flex: 1;
    min-width: 0;
}

.summary-details h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gold);
    line-height: 1.2;
}

.summary-details p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.summary-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
}

.summary-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.25rem;
    font-size: 16px;
    line-height: 1.5;
    padding: 0;
}

.summary-row span:last-child strong {
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-top: 0.25rem;
}

.summary-row span:last-child strong:first-child {
    margin-top: 0;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--jet-black);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.total-amount span:first-child {
    font-size: 22px;
    color: var(--text-primary);
}

.total-price {
    color: var(--gold);
    font-size: 32px;
    font-weight: 700;
}

/* Mobile Responsive Order Summary */
@media (max-width: 768px) {
    .order-summary h3 {
        font-size: 24px;
        margin-bottom: 1.25rem;
    }

    .summary-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .summary-image {
        width: 100px;
        height: 60px;
        margin: 0 auto;
    }

    .summary-details {
        text-align: center;
    }

    .summary-details h4 {
        font-size: 20px;
    }

    .summary-details p {
        font-size: 14px;
    }

    .summary-price {
        font-size: 24px;
        margin: 0.5rem 0 0 0;
    }

    .summary-row {
        grid-template-columns: 120px 1fr;
        gap: 0.75rem;
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .summary-row span:first-child {
        font-size: 15px;
    }

    .total-amount {
        font-size: 20px;
        padding: 1.25rem;
    }

    .total-amount span:first-child {
        font-size: 20px;
    }

    .total-price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .order-summary h3 {
        font-size: 22px;
    }

    .summary-row {
        grid-template-columns: 100px 1fr;
        gap: 0.5rem;
        font-size: 13px;
    }

    .summary-row span:first-child {
        font-size: 14px;
    }

    .total-amount {
        font-size: 18px;
        padding: 1rem;
    }

    .total-price {
        font-size: 24px;
    }
}

.back-btn {
    width: 100%;
    padding: 1rem;
    background: var(--jet-black);
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--charcoal);
    border-color: var(--bright-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.next-btn,
.pay-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--ultra-black);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.next-btn:hover,
.pay-btn:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.error-message {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.error-message.show {
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════
   STEP 4 — PAYMENT LAYOUT (two-column: summary + Stripe element)
   ═══════════════════════════════════════════════════════════════════ */

/* Back button repositioned for payment step */
.pay-back-btn {
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201,169,97,.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.pay-back-btn:hover {
    background: rgba(201,169,97,.08);
    border-color: var(--gold);
}

/* Two-column payment layout */
.payment-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    align-items: start;
}

/* ─── LEFT: Summary Panel ──────────────────────────────────────── */
.payment-summary-panel {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,169,97,.15);
    border-radius: 14px;
    padding: 1.5rem;
    position: sticky;
    top: 1rem;
}

.payment-summary-title {
    font-family: var(--font-serif, Georgia, serif);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201,169,97,.2);
}

.pay-vehicle-block {
    margin-bottom: 1.25rem;
    text-align: center;
}

.pay-vehicle-img {
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.pay-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1rem;
}

.pay-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.5rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    align-items: start;
}

.pay-row-label {
    font-size: 0.78rem;
    color: var(--text-secondary, #8a8a8a);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-top: 0.05rem;
}

.pay-row-value {
    font-size: 0.875rem;
    color: var(--text-primary, #e8e0d0);
    line-height: 1.4;
}

.pay-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(201,169,97,.25);
    margin-top: 0.5rem;
}

.pay-total-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary, #e8e0d0);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pay-total-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-serif, Georgia, serif);
}

/* ─── RIGHT: Stripe Payment Panel ─────────────────────────────── */
.payment-form-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Stripe Payment Element container */
#payment-element-wrapper {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(201,169,97,.15);
    border-radius: 14px;
    padding: 1.5rem;
    min-height: 200px;
}

/* Express Checkout (Apple Pay / Google Pay) container */
#express-checkout-element {
    /* Stripe injects the iframe; height handled by buttonHeight in JS */
    min-height: 0;
}
#express-checkout-element:empty {
    display: none;
}

/* Divider shown only when wallet buttons actually render */
.express-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0 1.25rem;
    color: rgba(201,169,97,.7);
    font-family: "Georgia", serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.express-divider::before,
.express-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(201,169,97,.2);
}
.express-divider.hidden {
    display: none;
}

/* Loading state inside wrapper */
.pay-element-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 3rem 1rem;
    color: var(--gold);
    font-size: 0.9rem;
}

.pay-element-error {
    padding: 1rem;
    color: #f87171;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: center;
}

/* Inline spinner (loading inside wrapper) */
.pay-spinner-inline {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(201,169,97,.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Pay button spinner */
.pay-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,0,0,.3);
    border-top-color: var(--ultra-black);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}

/* Pay confirm button */
#pay-submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--ultra-black);
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(201,169,97,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 56px;
}

#pay-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,169,97,.5);
}

#pay-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Payment error message */
.pay-error-msg {
    color: #f87171;
    background: rgba(248,113,113,.08);
    border: 1px solid rgba(248,113,113,.25);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    text-align: center;
}

/* --------------------------------------------------------------------
   Step 4 – hidden-state rules scoped to payment elements.
   The booking code uses the generic 'hidden' class to toggle visibility
   of these three elements, but styles.css only defines '.hidden' inside
   specific scopes (.booking-content.hidden, .express-divider.hidden,
   .gps-spinner-ring.hidden, etc.). Without these rules the spinner was
   always visible inside the pay button, and #payment-message left an
   empty red strip above the button even when it had no text.
   The ':empty' rule is belt-and-suspenders: even if JS forgets to add
   the hidden class, an empty error box never renders the red frame.
   -------------------------------------------------------------------- */
#payment-message.hidden,
#payment-message:empty {
    display: none !important;
}

#pay-btn-text.hidden,
#pay-btn-spinner.hidden {
    display: none !important;
}

/* Disclaimer footer */
.pay-disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary, #8a8a8a);
    text-align: center;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.pay-disclaimer svg {
    flex-shrink: 0;
    color: var(--gold);
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 820px) {
    .payment-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .payment-summary-panel {
        position: static;
    }
    .pay-vehicle-img {
        max-width: 200px;
    }
}

/* --------------------------------------------------------------------
   Step 4 – desktop width override.
   .booking-container is capped at 500px for steps 1-3 (WebBooker style).
   Step 4 has a 2-column grid (340px summary + 1fr payment form) that
   does NOT fit inside 500px, which is why the Stripe Payment Element
   was being clipped on desktop (the "lin…", "Secu…", "12345…" cut-off
   reported on the full-screen view).
   Only widen when #s4 is the currently-visible content and only above
   the 820px responsive breakpoint — below that, payment-layout already
   collapses to a single column and the narrow container is fine.
   -------------------------------------------------------------------- */
@media (min-width: 821px) {
    .booking-container:has(#s4:not(.hidden)) {
        max-width: 1100px;
    }
}

@media (max-width: 480px) {
    .payment-layout {
        gap: 1rem;
    }
    #payment-element-wrapper {
        padding: 1rem;
    }
    #pay-submit-btn {
        font-size: 0.9rem;
        padding: 1rem;
    }
}


/* Loading spinner for payment button */
.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spinLoader 1s linear infinite;
}

@keyframes spinLoader {
  to { transform: rotate(360deg); }
}


.error-message.show {
  display: block;
}




.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--jet-black);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: var(--text-primary);
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    background: var(--charcoal);
}

.form-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}


.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--bright-gold), var(--rose-gold));
    color: var(--vanta);
    padding: 20px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--bright-gold), var(--gold), var(--rose-gold));
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Mobile Booking Form - Complete Responsive Solution */
@media (max-width: 1024px) {
    .booking {
        padding: 4rem 0;
    }

    .booking-container {
        padding: 0; /* Remove internal padding */
    }
     .booking-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .booking {
        padding: 3rem 0;
    }

.booking-container {
        padding: 0;
    }
    
    .booking-content {
        padding: 2rem 1rem;
    }
    
    #s2.booking-content {
        padding: 0;
    }


    .form-group input,
    .form-group select {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 6px;
        height: 45px;
    }

    .form-group label {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .submit-btn {
        padding: 16px 20px;
        font-size: 15px;
        border-radius: 25px;
        margin-top: 1rem;
        height: 50px;
    }

    .booking-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .booking {
        padding: 2.5rem 0;
    }

.booking-container {
        padding: 0;
    }
    
    .booking-content {
        padding: 1.5rem 0.75rem;
    }
    
    #s2.booking-content {
        padding: 0;
    }
    .form-group input,
    .form-group select {
        padding: 10px 12px;
        font-size: 13px;
        height: 42px;
        border-radius: 6px;
    }

    .form-group label {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .submit-btn {
        padding: 14px 18px;
        font-size: 14px;
        border-radius: 20px;
        height: 48px;
        min-height: 48px;
        width: 100%;
    }

    .booking-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        text-align: center;
        line-height: 1.4;
    }

    /* Improve touch targets for mobile */
    .form-group input,
    .form-group select,
    .submit-btn {
        min-height: 44px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}

/* Animations */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}




/* Hide floating button on desktop */
@media (min-width: 769px) {
    /* Hide mobile GLV button on desktop */

    /* Hide floating book now button on desktop */
    .floating-book-btn {
        display: none !important;
    }

    /* Show Book Now button in hamburger menu on desktop */
    .nav-menu.active .desktop-book-now-item {
        display: block !important;
        order: -1;
        margin-bottom: 1rem;
    }

    .nav-menu.active .desktop-book-now-item a {
        color: var(--vanta) !important;
        padding: 12px 20px;
        border-radius: 10px;
        font-weight: 700;
        text-align: center;
        width: 100%;
        border: none;
        display: block;
    }
}

/* Smart Mobile Header - Progressive Enhancement */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .cta-link {
        padding: 10px 20px !important;
        font-size: 0.9rem;
    }
}

/* Consolidated Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        gap: 1rem;
    }


    /* Show key navigation items on mobile */
    .nav-menu li:nth-child(2),
    .nav-menu li:nth-child(3),
    .nav-menu li:last-child {
        display: block !important;
    }

    .nav-menu li:last-child {
        order: -1;
        margin-bottom: 1rem;
    }

    .cta-link {
        padding: 10px 18px !important;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem;
        gap: 0.5rem;
    }


    .nav-menu {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    /* On very small screens, hide some nav items but keep Book Now */
    .nav-menu li:nth-child(2),
    .nav-menu li:nth-child(3) {
        display: none;
    }

    .nav-menu li:last-child {
        display: block !important;
        order: -1;
    }

    .cta-link {
        padding: 10px 16px !important;
        font-size: 0.85rem;
    }
}

/* Smart Footer Styles - Performance Optimized */
.footer {
    background: linear-gradient(135deg, var(--vanta) 0%, var(--charcoal) 100%);
    padding: 4rem 3rem 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    text-align: left;
}

.footer-brand {
    padding-right: 2rem;
    border-right: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-brand h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    margin: 1.5rem 0;
}







.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.5px;
    max-width: 800px;
    margin: 0 auto;
}
/* Utility classes to replace inline footer styles in markup */




/* Smart Contact & Social Section */
.contact-info {
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.contact-link:hover {
    color: var(--gold);
}

/* Trust Badges - Simplified */



/* Social Links - Clean & Simple */

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 50%;
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 14px;
    font-weight: bold;
}

.social-link:hover {
    background: var(--gold);
    color: var(--vanta);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Simple Footer Animation */
.footer-brand {
    opacity: 0;
    transform: translateY(20px);
    animation: footerFadeIn 0.6s ease forwards;
}


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

/* Smart Accessibility */
@media (prefers-reduced-motion: reduce) {
    .footer-brand {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Focus Management */
.contact-link:focus,
.social-link:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Screen Reader Only */

/* Smart Mobile Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        border-right: none;
        padding-right: 0;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }





    .contact-info {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-brand h3 {
        font-size: 20px;
    }



    .social-link {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

/* Enhanced Booking Modal Styles for Iframe Integration */

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


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








/* Modal Iframe Styling */

/* Enhanced Mobile Modal Responsiveness */
@media (max-width: 1024px) {




}

@media (max-width: 768px) {


    @keyframes modalSlideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }




}

@media (max-width: 480px) {





}



/* Focus Management for Accessibility */

/* Enhanced Iframe Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* Ensure smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced button hover effects for booking buttons */
.cta-button[onclick*="openBookingModal"],
.vehicle-cta[onclick*="openBookingModal"],
.floating-book-btn[onclick*="openBookingModal"] {
    position: relative;
    overflow: hidden;
}

.cta-button[onclick*="openBookingModal"]::before,
.vehicle-cta[onclick*="openBookingModal"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button[onclick*="openBookingModal"]:hover::before,
.vehicle-cta[onclick*="openBookingModal"]:hover::before {
    left: 100%;
}




/* ✅ ADD THIS NEW SECTION RIGHT HERE AT THE END */
/* ═══════════════════════════════════════════════════════════
   🎯 DYNAMIC PRICING SURGE BADGE
   ═══════════════════════════════════════════════════════════ */

/* Dynamic Pricing Surge Badge */
.surge-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, rgba(255, 99, 71, 0.2), rgba(255, 140, 0, 0.15));
    border: 1.5px solid #FF6347;
    border-radius: 6px;
    padding: 0.35rem 0.65rem;
    font-size: 11px;
    font-weight: 700;
    color: #FF6347;
    margin-bottom: 0.35rem;
    box-shadow: 0 2px 6px rgba(255, 99, 71, 0.2);
}

.surge-icon {
    font-size: 13px;
}

/* Discount Badge - Green Style */
.discount-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.15));
    border: 1.5px solid #22C55E;
    color: #22C55E;
}

.discount-badge .surge-icon {
    font-size: 13px;
}
.surge-badge.pulse .surge-icon {
    animation: surgePulse 1.5s infinite;
}

@keyframes surgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
}


/* ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   📍 GPS / CURRENT LOCATION STYLES
   ═══════════════════════════════════════════════════════════ */

/* Wrapper for pickup input + inline GPS button */
.pickup-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Inline GPS crosshair button (inside input row) */
.gps-inline-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--gold);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 2;
}

.gps-inline-btn:hover {
    background: rgba(201, 169, 97, 0.15);
    transform: translateY(-50%) scale(1.15);
}

.gps-inline-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.gps-crosshair-icon {
    color: var(--gold);
    display: block;
}

/* Gold spinning ring (loading state - inline button) */
.gps-spinner-ring {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: gpsSpinRing 0.7s linear infinite;
    display: block;
}

.gps-spinner-ring.hidden,
.gps-crosshair-icon.hidden {
    display: none !important;
}

@keyframes gpsSpinRing {
    to { transform: rotate(360deg); }
}

/* GPS status feedback line */
.gps-status {
    font-size: 0.82rem;
    margin-top: 0.4rem;
    min-height: 1.1rem;
    transition: all 0.3s ease;
}

.gps-status--loading {
    color: var(--gold);
    opacity: 0.85;
}

.gps-status--success {
    color: #4ade80;   /* green */
    font-weight: 600;
}

.gps-status--error {
    color: #f87171;   /* soft red */
}

/* Full-width GPS button: loading state */
#gps-btn-full:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Ensure pickup input has room for the inline button */
#pickup.location-input {
    padding-right: 42px;
}

/* ═══════════════════════════════════════════════════════════
   📍 GPS ADDRESS PICKER DROPDOWN
   ═══════════════════════════════════════════════════════════ */

.gps-results-dropdown {
    margin-top: 0.5rem;
    background: #12192b;
    border: 1px solid rgba(201, 169, 97, 0.45);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    animation: gpsDropdownIn 0.18s ease;
}

@keyframes gpsDropdownIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.gps-results-header {
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    background: rgba(201, 169, 97, 0.06);
}

.gps-result-option {
    padding: 0.8rem 1rem;
    font-size: 0.875rem;
    color: #d8d8d8;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1.4;
}

.gps-result-option:last-child {
    border-bottom: none;
}

.gps-result-option:hover,
.gps-result-option:focus {
    background: rgba(201, 169, 97, 0.13);
    color: var(--gold);
    outline: none;
}

.gps-result-option:active {
    background: rgba(201, 169, 97, 0.22);
}

/* ═══════════════════════════════════════════════════════════
   LANDING PAGE IMPROVEMENTS — 2026
   ═══════════════════════════════════════════════════════════ */

/* ── Shared helpers ─────────────────────────────────────── */
.gold-text { color: var(--gold); }

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* ── Hero fade-in animation ─────────────────────────────── */
.hero-content {
    animation: heroFadeIn 1.1s ease both;
}

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

.hero-subtitle {
    position: relative;
    display: inline-block;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    animation: underlineGrow 1s ease 0.9s forwards;
}

@keyframes underlineGrow {
    to { width: 100%; }
}

/* ── Trust Ticker ───────────────────────────────────────── */
.trust-ticker {
    background: rgba(201, 169, 97, 0.08);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    overflow: hidden;
    padding: 0.7rem 0;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    gap: 0;
    animation: tickerScroll 35s linear infinite;
}

.trust-ticker:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0 2.5rem;
}

.ticker-dot {
    color: var(--gold);
    font-size: 0.55rem;
}

/* ── Services section (new layout) ─────────────────────── */
.services-section {
    padding: 5rem 0 4rem;
    background: var(--bg-primary);
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.25;
}

.services-section .services-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
    .services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .services-section .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: rgba(201, 169, 97, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    background: rgba(201, 169, 97, 0.15);
    border-color: var(--gold);
    transform: scale(1.08);
}

/* ── Why GoLuxVanta (icon-cards) ────────────────────────── */
.why-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

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

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

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

.why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: rgba(201, 169, 97, 0.5);
    background: rgba(201, 169, 97, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    background: rgba(201, 169, 97, 0.2);
    border-color: var(--gold);
}

.why-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.why-card-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── Coverage Area ──────────────────────────────────────── */
.coverage-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.coverage-section .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .coverage-grid { grid-template-columns: repeat(3, 1fr); }
}

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

.coverage-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201, 169, 97, 0.12);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    cursor: default;
}

.coverage-item:hover {
    border-color: rgba(201, 169, 97, 0.4);
    background: rgba(201, 169, 97, 0.07);
    color: var(--gold);
    transform: translateY(-2px);
}

.coverage-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

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

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

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: rgba(201, 169, 97, 0.12);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(201, 169, 97, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

/* ── Fleet badges ───────────────────────────────────────── */
.vehicle-card { position: relative; }

.fleet-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.75);
    border: 1px solid rgba(201, 169, 97, 0.5);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.popular-badge {
    background: linear-gradient(135deg, rgba(201,169,97,0.25), rgba(201,169,97,0.1));
    border-color: var(--gold);
    color: var(--gold);
}

.fleet-popular {
    border-color: rgba(201, 169, 97, 0.4) !important;
    box-shadow: 0 0 24px rgba(201, 169, 97, 0.08);
}

/* ── Footer improvements ────────────────────────────────── */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 3.5rem 0 2rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}

@media (max-width: 900px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 500px) {
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 8px rgba(201,169,97,0.3));
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,169,97,0.1);
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.2s ease;
}

.footer-contact-link:hover { color: var(--gold); }

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-cta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.55rem 1.2rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.2s ease;
}

.footer-cta:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0 0.5rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .footer-bottom { flex-direction: column; gap: 0.3rem; text-align: center; }
}

/* ── Call Floating Button (mobile) ──────────────────────── */


@media (max-width: 768px) {
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SPEED DIAL FAB
   ═══════════════════════════════════════════════════════════ */



.fab-container {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}


/* Backdrop — closes FAB when clicking outside */
.fab-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: -1;
}
.fab-container.open .fab-backdrop { display: block; }

/* Speed dial options wrapper */
.fab-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 12px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(16px) scale(0.95);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.fab-container.open .fab-options {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Individual option */
.fab-option {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fab-option:hover {
    transform: translateX(-4px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.5);
}

/* Label (hidden on desktop, shown on mobile) */
.fab-opt-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    padding: 0 0 0 1rem;
    letter-spacing: 0.02em;
}

/* Icon bubble */
.fab-opt-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

/* Per-option colors */
.fab-opt-call    { background: rgba(20,20,20,0.85); backdrop-filter: blur(8px); }
.fab-opt-call .fab-opt-icon    { background: linear-gradient(135deg, #c9a961, #8b6914); }

.fab-opt-whatsapp { background: rgba(20,20,20,0.85); backdrop-filter: blur(8px); }
.fab-opt-whatsapp .fab-opt-icon { background: #25d366; }

.fab-opt-sms    { background: rgba(20,20,20,0.85); backdrop-filter: blur(8px); }
.fab-opt-sms .fab-opt-icon    { background: #3b82f6; }

.fab-opt-contact { background: rgba(20,20,20,0.85); backdrop-filter: blur(8px); }
.fab-opt-contact .fab-opt-icon { background: linear-gradient(135deg, #7c3aed, #4f46e5); }

/* Pulse animation for FAB beacon effect */
@keyframes fabPulse {
    0%   { transform: scale(1);    opacity: 0.7; }
    70%  { transform: scale(1.9);  opacity: 0; }
    100% { transform: scale(1.9);  opacity: 0; }
}

/* Main FAB button */
.fab-main {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0c96a, #c9a961, #8b6914);
    border: 2px solid rgba(255, 215, 0, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow:
        0 0 0 0 rgba(201, 169, 97, 0.6),
        0 8px 28px rgba(201, 169, 97, 0.55),
        0 0 40px rgba(201, 169, 97, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    z-index: 1;
    animation: fabBounceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Pulse ring — ::before */
.fab-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.55);
    animation: fabPulse 2s ease-out infinite;
    z-index: -1;
}

/* Stop pulse when open */
.fab-container.open .fab-main::before {
    animation: none;
}

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

.fab-main:hover {
    transform: scale(1.1);
    box-shadow:
        0 0 0 6px rgba(201, 169, 97, 0.15),
        0 10px 32px rgba(201, 169, 97, 0.7),
        0 0 50px rgba(201, 169, 97, 0.35);
}

.fab-container.open .fab-main {
    background: linear-gradient(135deg, #555, #333);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

.fab-main-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s ease, transform 0.15s ease;
    font-size: 1.1rem;
    font-weight: 700;
}

.fab-main-icon.hidden {
    opacity: 0;
    transform: rotate(90deg) scale(0.6);
    pointer-events: none;
}

/* Desktop: hide FAB, keep theme toggle at bottom-right */
@media (min-width: 769px) {
    .fab-container { display: none; } /* hidden on desktop */
}


/* Staggered animation for each option */
.fab-opt-call    { transition-delay: 0.00s; }
.fab-opt-whatsapp { transition-delay: 0.04s; }
.fab-opt-sms     { transition-delay: 0.08s; }
.fab-opt-contact { transition-delay: 0.12s; }

/* ═══════════════════════════════════════════════════════════
   ✕ INPUT CLEAR BUTTON  (used in booking steps 1 & 2)
   Injected by JS (attachClearButton) — shown only when the
   input has a value. Gold × consistent with brand identity.
   ═══════════════════════════════════════════════════════════ */
.input-clear-btn {
    position: absolute;
    top: 50%;
    right: 10px;                /* overridden inline when needed (e.g. #pickup: 48px) */
    transform: translateY(-50%);
    width: 30px;                /* larger visible size */
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.18);
    color: var(--gold);
    border: 1px solid rgba(201, 169, 97, 0.45);
    border-radius: 50%;
    font-size: 20px;            /* bigger × for visibility */
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
    z-index: 5;                 /* above Google Places .pac-container edges */
    touch-action: manipulation; /* removes 300ms tap delay on mobile */
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
}

/* Expand the hit area beyond the visible 30px without resizing the circle:
   a transparent pseudo-element gives a ~44px tap target (Apple's HIG min). */
.input-clear-btn::before {
    content: "";
    position: absolute;
    inset: -7px;                /* 30 + 2*7 = 44 */
    border-radius: 50%;
}

.input-clear-btn:hover {
    background: rgba(201, 169, 97, 0.28);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.input-clear-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.input-clear-btn[hidden] {
    display: none !important;
}

/* Wrapper auto-injected around inputs inside .form-group (where a <label>
   sibling exists) so the × vertically centers on the input box, not on the
   whole group. Keeps the input's full-width layout unchanged. */
.input-clear-wrapper {
    position: relative;
    display: block;
    width: 100%;
}
.input-clear-wrapper > input,
.input-clear-wrapper > textarea {
    width: 100%;
}

/* Give inputs that carry a clear-× extra right padding so the text
   doesn't slide under the button. Pickup hosts both GPS (right:10px)
   and × (right:48px) so it needs the most room. */
#pickup.location-input {
    padding-right: 84px;
}
#dropoff.location-input,
#return-pickup.location-input,
#airline-search.location-input {
    padding-right: 46px;
}
#flight-number {
    padding-right: 46px;
}

/* Step 3 inputs — add right padding so text doesn't slide under the × */
#fn,
#ln,
#em,
#pn {
    padding-right: 46px;
}

/* ═══════════════════════════════════════════════════════════
   🌑 BROWSER AUTOFILL — keep dark theme on autocompleted fields
   Chrome/Safari paint autofilled inputs with a white/yellow
   background via :-webkit-autofill.  The only reliable override
   is an inset box-shadow with a huge spread (visually replaces
   the background) plus -webkit-text-fill-color for the text.
   We use very high-specificity selectors + every scope variant
   + !important so nothing on the page out-specificities us.
   ═══════════════════════════════════════════════════════════ */
.booking input:-webkit-autofill,
.booking input:-webkit-autofill:hover,
.booking input:-webkit-autofill:focus,
.booking input:-webkit-autofill:active,
.booking textarea:-webkit-autofill,
.booking select:-webkit-autofill,
#s1 input:-webkit-autofill,
#s1 input:-webkit-autofill:hover,
#s1 input:-webkit-autofill:focus,
#s2 input:-webkit-autofill,
#s2 input:-webkit-autofill:hover,
#s2 input:-webkit-autofill:focus,
#s3 input:-webkit-autofill,
#s3 input:-webkit-autofill:hover,
#s3 input:-webkit-autofill:focus,
#s3 input:-webkit-autofill:active,
#s3 textarea:-webkit-autofill,
#s3 select:-webkit-autofill,
#s3 .form-group input:-webkit-autofill,
#s3 .form-group select:-webkit-autofill,
#s3 .form-group textarea:-webkit-autofill,
#s3 .phone-input input:-webkit-autofill,
.phone-input input:-webkit-autofill,
.form-group input:-webkit-autofill,
.form-group select:-webkit-autofill,
.form-group textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--jet-black) inset !important;
            box-shadow: 0 0 0 1000px var(--jet-black) inset !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    background-color: var(--jet-black) !important;
    background-image: none !important;
    color: var(--text-primary) !important;
    caret-color: var(--text-primary) !important;
    border-color: rgba(255, 215, 0, 0.3) !important;
    /* Marathon transition: blocks the browser from re-applying the
       autofill yellow after the animation frame that triggers it. */
    -webkit-transition: background-color 9999999s ease-in-out 0s,
                        color            9999999s ease-in-out 0s !important;
            transition: background-color 9999999s ease-in-out 0s,
                        color            9999999s ease-in-out 0s !important;
}

/* Firefox / standards-track equivalent */
.booking input:autofill,
.booking textarea:autofill,
.booking select:autofill,
#s3 input:autofill,
#s3 textarea:autofill,
#s3 select:autofill,
.form-group input:autofill,
.form-group select:autofill,
.form-group textarea:autofill {
    background-color: var(--jet-black) !important;
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    box-shadow: 0 0 0 1000px var(--jet-black) inset !important;
}

/* ═══════════════════════════════════════════════════════════
   ← BACK BUTTON AT TOP  (steps 2 & 3)
   Small outlined pill in gold, mirrors the .pay-back-btn on
   step 4 so the UX pattern is consistent across the flow.
   ═══════════════════════════════════════════════════════════ */
.back-btn-top {
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201,169,97,.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    /* Override any inherited .back-btn block/full-width styling */
    width: auto;
    max-width: none;
}
.back-btn-top:hover {
    background: rgba(201,169,97,.08);
    border-color: var(--gold);
}
