/* =====================================================
   LUVIA VIP TRANSFER — Premium Design System
   ===================================================== */

/* =====================================================
   1. CSS Variables / Design Tokens
   ===================================================== */
:root {
    /* Colors */
    --primary: #FFFFFF;
    --primary-light: #F9FAFB;
    --primary-medium: #F3F4F6;
    --accent: #ff5700;
    --accent-light: #ff752b;
    --accent-dark: #cc4600;
    --accent-glow: rgba(255, 87, 0, 0.15);
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --light-gray: #E5E7EB;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --text-dark: #002363;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #002363 0%, #ff5700 100%);
    --dark-gradient: transparent;
    --hero-overlay: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.95) 100%);

    /* Glass */
    --glass-bg: #FFFFFF;
    --glass-bg-light: #F9FAFB;
    --glass-border: #E5E7EB;
    --glass-border-light: #F3F4F6;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 10px 25px -5px rgba(255, 87, 0, 0.4);

    /* Typography */
    --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 60px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =====================================================
   2. Reset & Base
   ===================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 65px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--accent);
    color: var(--primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

/* =====================================================
   3. Typography
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-badge::before,
.section-badge::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--text-dark);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.section-subtitle.light {
    color: var(--text-secondary);
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   4. Layout
   ===================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 2;
}

.section.dark {
    background: var(--off-white);
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* =====================================================
   5. Navbar
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 90px;
    background: #FFFFFF;
    box-shadow: none;
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: none;
    border-bottom: none;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
}

.navbar-logo {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
}

.navbar-logo video {
    height: 220px;
    width: auto;
    transform: translateY(40px);
    transition: var(--transition);
    filter: contrast(1.3) brightness(1.2);
    mix-blend-mode: multiply;
}

.navbar-logo .logo-img {
    display: none;
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .navbar-logo video {
    display: none;
}

.navbar.scrolled .navbar-logo .logo-img {
    display: block;
    margin-left: 24px;
}

.footer-logo-video {
    filter: contrast(1.3) brightness(1.2);
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 36px !important;
    background: var(--accent);
    color: var(--primary) !important;
    font-weight: 600 !important;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    padding: 2px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lang-btn img {
    width: 20px;
    height: auto;
    border-radius: 2px;
    display: block;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lang-btn:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.lang-btn.active {
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(197, 165, 90, 0.4);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================================================
   6. Hero Section
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% + 200px);
    background-image: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 100px, rgba(255, 255, 255, 0.8) 180px, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.9) 70%, #FFFFFF 85%, #FFFFFF 100%), url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: center 90px;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    opacity: 0.55;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
    padding: 130px 24px 70px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-card {
    background: #FFFFFF;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-align: left;
    animation: fadeInUp 0.8s ease-out both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 87, 0, 0.1);
    border: 1px solid rgba(255, 87, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    width: max-content;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 .accent {
    color: var(--accent);
}

.hero-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 100%;
    margin: 0 0 32px;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.hero-form-side {
    width: 100%;
}

.hero-form-side .booking-form-wrapper {
    width: 100%;
    height: 100%;
}

.hero-form-side .booking-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-form-side .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.hero-form-side .btn-search {
    grid-column: span 1;
    width: 100%;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .hero {
        background: transparent;
    }
    
    .hero::before {
        height: 100%;
        background-position: center bottom;
        background-image: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 120px, rgba(255, 255, 255, 0.95) 220px, rgba(255, 255, 255, 0.2) 100%), url('assets/images/hero-bg.png');
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 120px;
    }
    
    .hero-text-card {
        height: auto;
        padding: 32px 24px;
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-description {
        margin: 0 auto 30px;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .hero-stat {
        text-align: center;
        min-width: 120px;
    }
    
    .hero-form-side .booking-form-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-form-side .booking-form-grid .form-group {
        grid-column: span 1 !important;
    }

    .hero-form-side .booking-form-grid .form-row {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    .hero-form-side .btn-search {
        grid-column: 1 / -1;
    }
}

/* =====================================================
   7. Booking Form (Step 1 — Hero)
   ===================================================== */
.booking-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.booking-form {
    background: #FFFFFF;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
}

.booking-form-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-form-title svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group label svg {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    color: var(--accent);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: #FFFFFF;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 0.9375rem;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    border-color: var(--accent);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C5A55A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

select.form-control option {
    background: #FFFFFF;
    color: var(--text-dark);
    padding: 8px;
}

input[type="date"].form-control,
input[type="time"].form-control {
    cursor: pointer;
    color-scheme: light;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    min-height: 50px;
}

.btn-search::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: 0.5s;
}

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

.btn-search:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-search svg {
    width: 18px;
    height: 18px;
}

/* =====================================================
   8. Services Section
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 90, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =====================================================
   9. Why Us / Trust Section
   ===================================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.trust-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: #FFFFFF;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-card:hover {
    background: #FFFFFF;
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.trust-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 90, 0.12);
    border-radius: var(--radius-md);
    color: var(--accent);
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-content h3 {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trust-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =====================================================
   10. Fleet Section
   ===================================================== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.fleet-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.fleet-card-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fleet-card-image img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
}

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

.fleet-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet-card-body {
    padding: 24px;
}

.fleet-card-body h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.fleet-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding: 4px 10px;
    background: var(--off-white);
    border-radius: var(--radius-full);
}

.fleet-feature svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.fleet-card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fleet-price {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.fleet-price strong {
    font-size: 1.375rem;
    color: var(--accent-dark);
    font-weight: 700;
}

.btn-fleet {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-fleet:hover {
    background: var(--accent);
    color: var(--primary);
}

/* =====================================================
   11. Popular Routes Section
   ===================================================== */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.route-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: #FFFFFF;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.route-card:hover {
    background: #FFFFFF;
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.route-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 165, 90, 0.12);
    border-radius: 50%;
    color: var(--accent);
}

.route-icon svg {
    width: 20px;
    height: 20px;
}

.route-info {
    flex: 1;
}

.route-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.route-info p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.route-price {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

/* =====================================================
   12. Testimonials Section
   ===================================================== */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 40px;
}

.testimonial-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    left: 30px;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    fill: var(--accent);
}

.testimonial-text {
    font-size: 1.0625rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-author-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-author-info p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.testimonial-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* =====================================================
   13. Footer
   ===================================================== */
.footer {
    background: #FFFFFF;
    color: var(--text-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--light-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-contact-item a {
    color: var(--text-secondary);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--light-gray);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* =====================================================
   14. Booking Modal (Steps 2-3)
   ===================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform var(--transition-slow);
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-header {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--light-gray);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    color: var(--text-muted);
}

.modal-close:hover {
    background: var(--error);
    color: var(--white);
}

.modal-close svg {
    width: 18px;
    height: 18px;
}

/* Step indicator */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-dot {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 700;
    background: var(--light-gray);
    color: var(--text-muted);
    transition: var(--transition);
}

.step-dot.active .step-number {
    background: var(--accent);
    color: var(--primary);
}

.step-dot.completed .step-number {
    background: var(--success);
    color: var(--white);
}

.step-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}

.step-dot.active .step-label {
    color: var(--text-dark);
}

.step-line {
    width: 40px;
    height: 2px;
    background: var(--light-gray);
    border-radius: 1px;
    transition: var(--transition);
}

.step-line.active {
    background: var(--accent);
}

.modal-body {
    padding: 32px;
}

/* Step 2 — Vehicle Selection */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.vehicle-card {
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.vehicle-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.vehicle-card.selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow), var(--shadow-md);
}

.vehicle-card-img {
    height: 160px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.vehicle-card-img img {
    max-height: 100%;
    object-fit: contain;
}

.vehicle-card-info {
    padding: 20px;
}

.vehicle-card-info h4 {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.vehicle-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.vehicle-card-features span {
    font-size: 0.75rem;
    padding: 3px 10px;
    background: var(--off-white);
    border-radius: var(--radius-full);
    color: var(--text-muted);
}

.vehicle-card-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vehicle-card-price .price {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.vehicle-card-price .price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
}

.btn-select-vehicle {
    padding: 8px 20px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-select-vehicle:hover {
    background: var(--accent-dark);
    color: var(--primary);
}

/* Step 3 — Personal Details */
.personal-form {
    max-width: 600px;
    margin: 0 auto;
}

.personal-form .form-group {
    margin-bottom: 20px;
}

.personal-form label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}

.personal-form .form-control {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    color: var(--text-dark);
    border-radius: var(--radius-md);
    padding: 14px 16px;
}

.personal-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: var(--white);
}

.personal-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
}

.form-check label {
    font-size: 0.875rem;
    color: var(--text-muted);
    cursor: pointer;
}

.form-check label a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.summary-box {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.summary-box h4 {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.875rem;
}

.summary-row .label {
    color: var(--text-muted);
}

.summary-row .value {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-row.total {
    border-top: 1px solid var(--light-gray);
    margin-top: 8px;
    padding-top: 12px;
}

.summary-row.total .value {
    color: var(--accent-dark);
    font-size: 1.125rem;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-submit::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: 0.5s;
}

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

.btn-submit:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.btn-submit.loading .spinner {
    display: block;
}

.btn-submit.loading .btn-text {
    display: none;
}

/* Success State */
.success-state {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.success-state.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s var(--transition-bounce);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--success);
}

.success-state h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.success-state p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
}

/* =====================================================
   15. Fixed Bottom Bar
   ===================================================== */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    z-index: 1500;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
}

.bottom-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.bottom-btn-call {
    color: var(--text-dark);
    background: transparent;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.bottom-btn-call:hover {
    background: rgba(0, 0, 0, 0.04);
}

.bottom-btn-call svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.bottom-btn-whatsapp {
    color: var(--white);
    background: #25D366;
}

.bottom-btn-whatsapp:hover {
    background: #22c55e;
}

.bottom-btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

/* =====================================================
   16. Animations
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =====================================================
   17. Responsive
   ===================================================== */
@media (max-width: 1024px) {
    .booking-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .btn-search {
        grid-column: 1 / -1;
    }

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

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        transition: var(--transition-slow);
        border-left: 1px solid var(--glass-border-light);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        width: 100%;
        font-size: 1rem;
    }

    .nav-links .lang-selector {
        margin-top: 24px;
        padding-top: 16px;
        width: 100%;
        justify-content: center;
        gap: 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 24px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .modal {
        border-radius: var(--radius-lg);
        max-height: 95vh;
    }

    .modal-body {
        padding: 24px;
    }

    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 0 16px;
    }

    .step-label {
        display: none;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .booking-form {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .route-card {
        flex-direction: column;
        text-align: center;
    }

    .bottom-btn {
        font-size: 0.8125rem;
    }
}
