/* 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);
}

/* Light Theme - Ultra-Black Background + Luxury Gold */
[data-theme="light"] {
    --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.7);
    --border-color: var(--platinum);
    --accent-color: var(--gold);
    --hover-accent: var(--dark-gold);
}

/* Dark Theme - Enhanced 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 */
.gold-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.gold-cta::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);
}

.gold-cta:hover::before {
    left: 100%;
}

.gold-cta:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Apply gold CTA visual styles to all CTA-like selectors in one place */
.mobile-glv-book-btn,
.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;
}

.mobile-glv-book-btn::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);
}

.mobile-glv-book-btn:hover::before {
    left: 100%;
}

.mobile-glv-book-btn:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    color: var(--ultra-black);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}



/* 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 */
.hamburger-book-btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hamburger-book-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.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-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    color: var(--gold);
    letter-spacing: 0.5px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.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 */
.why-goluxvanta {
    background: var(--ultra-black);
    padding: 4rem 0;
    border-right: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.why-goluxvanta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.why-content {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-panel {
    max-width: 350px;
    text-align: left;
}

.why-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    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;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-shadow: none;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.why-feature:nth-child(1) { animation-delay: 0.4s; }
.why-feature:nth-child(2) { animation-delay: 0.5s; }
.why-feature:nth-child(3) { animation-delay: 0.6s; }
.why-feature:nth-child(4) { animation-delay: 0.7s; }
.why-feature:nth-child(5) { animation-delay: 0.8s; }
.why-feature:nth-child(6) { animation-delay: 0.9s; }
.why-feature:nth-child(7) { animation-delay: 1.0s; }
.why-feature:nth-child(8) { animation-delay: 1.1s; }

.why-feature:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding-left: 1.25rem;
    border-left: 3px solid var(--gold);
    border-bottom-color: rgba(255, 215, 0, 0.4);
    transform: translateX(5px) translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.why-checkmark {
    background: linear-gradient(145deg, #F4E4C1 0%, #FFD700 30%, #DAA520 50%, #B8860B 70%, #8B6914 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    filter: drop-shadow(0 2px 3px rgba(212, 175, 55, 0.4));
}

.why-feature:hover .why-checkmark {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8)) drop-shadow(0 2px 4px rgba(212, 175, 55, 0.5));
}

.why-text {
    color: var(--soft-white);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    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);
}

.why-feature:hover .why-text {
    background: linear-gradient(145deg, #D4AF37 0%, #FFD700 50%, #DAA520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

/* Services and Why Section - Two Column Layout */
.services-why-section {
    background: var(--white);
    padding: 4rem 0;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    min-height: 600px;
}

.why-column {
    border-right: 2px solid var(--jet-black);
    padding-right: 3rem;
}

.services-column {
    padding-left: 2rem;
}

/* Mobile Responsive - Services and Why Sections */
@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }

    .why-column {
        border-right: none;
        padding-right: 0;
        border-bottom: 2px solid var(--jet-black);
        padding-bottom: 2rem;
    }

    .services-column {
        padding-left: 0;
        padding-top: 2rem;
    }

    .why-goluxvanta {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .services-why-section {
        padding: 3rem 0;
    }

    .two-column-layout {
        gap: 2.5rem;
    }

    .why-column {
        padding-bottom: 1.5rem;
    }

    .services-column {
        padding-top: 1.5rem;
    }

    .why-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .why-goluxvanta {
        text-align: center;
    }

    .why-panel {
        max-width: none;
        text-align: center;
        margin: 0 auto;
    }

    .why-features {
        align-items: center;
        justify-content: center;
    }

    .why-content {
        justify-content: center;
        text-align: center;
    }

    .why-feature {
        padding: 1rem 1.5rem;
        margin-bottom: 0.75rem;
        justify-content: center;
    }

    .why-goluxvanta {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .services-why-section {
        padding: 2.5rem 0;
    }

    .two-column-layout {
        gap: 2rem;
    }

    .why-column {
        padding-bottom: 1rem;
    }

    .services-column {
        padding-top: 1rem;
    }

    .why-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }

    .why-feature {
        padding: 0.75rem 1rem;
        margin-bottom: 0.5rem;
    }

    .why-text {
        font-size: 1rem;
    }

    .why-goluxvanta {
        padding: 2rem 1rem;
        text-align: center;
    }

    .why-content {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* 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);
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    backdrop-filter: blur(20px);
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
}

/* 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;
}

/* 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); }
}

.loader {
  border: 1px solid rgba(255, 215, 0, 0.3);
  animation: spinLoader 1s linear infinite;
}

.error-message.show {
  display: block;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}


.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;
}

.form-full {
    grid-column: span 2;
}

.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-form {
        margin: 2rem 1rem 0;
        padding: 2.5rem 1.5rem;
    }
    .booking-container {
        padding: 0; /* Remove internal padding */
    }
     .booking-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 768px) {
    .booking {
        padding: 3rem 0;
    }

    .booking-form {
        margin: 2rem 0.5rem 0;
        padding: 2rem 1rem;
        border-radius: 16px;
    }
.booking-container {
        padding: 0;
    }
    
    .booking-content {
        padding: 2rem 1rem;
    }
    
    #s2.booking-content {
        padding: 0;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .form-full {
        grid-column: span 1;
    }

    .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-form {
        margin: 1.5rem 0.25rem 0;
        padding: 1.5rem 0.75rem;
        border-radius: 12px;
    }
.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);
    }
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Icon Images */
.icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: var(--transition);
}

.service-card:hover .icon-img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}


/* Hide floating button on desktop */
@media (min-width: 769px) {
    /* Hide mobile GLV button on desktop */
    .mobile-glv-book-btn {
        display: none !important;
    }

    /* 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;
    }

    .logo-text {
        font-size: 1.8rem;
    }

    /* 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;
    }

    .logo-text {
        font-size: 1.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-column h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: block;
    padding: 0.25rem 0;
}

.footer-column ul li a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.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 */
.u-muted-small {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 13px;
}

.u-operating-hours {
    margin-top: 2rem;
}

.u-operating-hours h5 {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.u-operating-hours p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 0.5rem;
}

/* 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 */
.trust-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.trust-badge {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: var(--transition);
    font-weight: 500;
}

.trust-badge:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

/* Social Links - Clean & Simple */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.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,
.footer-column {
    opacity: 0;
    transform: translateY(20px);
    animation: footerFadeIn 0.6s ease forwards;
}

.footer-column:nth-child(2) { animation-delay: 0.1s; }
.footer-column:nth-child(3) { animation-delay: 0.2s; }
.footer-column:nth-child(4) { animation-delay: 0.3s; }

@keyframes footerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smart Accessibility */
@media (prefers-reduced-motion: reduce) {
    .footer-brand,
    .footer-column {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Focus Management */
.footer-column a:focus,
.contact-link:focus,
.social-link:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 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;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .trust-badges {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .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;
    }

    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

/* Enhanced Booking Modal Styles for Iframe Integration */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, var(--ultra-black) 0%, var(--charcoal) 100%);
    border: 3px solid var(--gold);
    border-radius: 25px;
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg,
        var(--ultra-black) 0%,
        var(--charcoal) 50%,
        var(--jet-black) 100%);
    position: relative;
}

.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold) 50%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.modal-header h2 {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    letter-spacing: 0.5px;
}

.modal-close {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border: none;
    color: var(--ultra-black);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.modal-close:hover {
    background: linear-gradient(135deg, var(--bright-gold) 0%, var(--gold) 100%);
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.modal-body {
    padding: 0;
    background: var(--bg-primary);
    position: relative;
}

.modal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--gold) 0%,
        var(--bright-gold) 50%,
        var(--gold) 100%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Modal Iframe Styling */
.modal-body iframe {
    width: 100%;
    height: 650px;
    border: none;
    background: var(--bg-primary);
    display: block;
}

/* Enhanced Mobile Modal Responsiveness */
@media (max-width: 1024px) {
    .booking-modal {
        padding-top: 3vh; /* Reduced top padding for tablets */
    }

    .modal-content {
        width: 95%;
        max-width: 900px;
        max-height: 95vh;
        border-radius: 20px;
    }

    .modal-header {
        padding: 1.5rem 2rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body iframe {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .booking-modal {
        padding: 1rem;
        align-items: flex-end;
    }

    .modal-content {
        width: 100%;
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    @keyframes modalSlideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }

    .modal-header {
        padding: 1.5rem;
        border-radius: 20px 20px 0 0;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .modal-body iframe {
        height: 550px;
    }
}

@media (max-width: 480px) {
    .booking-modal {
        padding: 0.5rem;
    }

    .modal-content {
        border-radius: 15px 15px 0 0;
        max-height: 95vh;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-header h2 {
        font-size: 1.1rem;
        letter-spacing: 0.3px;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .modal-body iframe {
        height: 500px;
    }
}

/* Enhanced Button States */
.booking-modal.closing {
    animation: modalFadeOut 0.3s ease-in;
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Focus Management for Accessibility */
.modal-close:focus {
    outline: 3px solid var(--bright-gold);
    outline-offset: 2px;
}

/* Enhanced Iframe Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.iframe-loading h3 {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.iframe-loading p {
    color: var(--text-secondary);
    font-size: 1rem;
    opacity: 0.8;
}

/* 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%;
}



/* Loading State for Iframe */
.modal-body.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

/* ✅ 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; }
}

.base-price {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: 0.25rem;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════ */