/* =============================================================
   LUXDRIVE AFRICA — PREMIUM DESIGN SYSTEM v2.0
   Dark luxury | Gold accents | Glassmorphism | Cinematic
============================================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* =============================================================
   CSS CUSTOM PROPERTIES — DESIGN TOKENS
============================================================= */
:root {
    /* ── Premium Color Palette ── */
    --accent:           #3B82F6;
    --accent-light:     #60A5FA;
    --accent-dark:      #2563EB;
    --accent-rgb:       59, 130, 246;
    --accent-glow:      #DBEAFE;
    --obsidian:       #000000;
    --deep-navy:      #050505;
    --navy:           #0A0A0A;
    --surface:        #121212;
    --surface-2:      #18181B;
    --surface-glass:  rgba(18, 18, 18, 0.6);
    --white:          #FFFFFF;
    --off-white:      #F9F7F2;
    --text-primary:   #EEE9DC;
    --text-secondary: #9AA5B4;
    --text-muted:     #5A687A;
    --success:        #10B981;
    --danger:         #EF4444;
    --accent-blue:    #3B82F6;

    /* ── Luxury Gradients ── */
    --grad-accent:      linear-gradient(135deg, #3B82F6 0%, #60A5FA 50%, #3B82F6 100%);
    --grad-accent-h:    linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --grad-dark:      linear-gradient(180deg, #060810 0%, #0C1220 100%);
    --grad-hero:      linear-gradient(135deg, #000000 0%, #050505 60%, #0A0A0A 100%);
    --grad-text-accent: linear-gradient(135deg, #FFFFFF 20%, #60A5FA 60%, #3B82F6 100%);
    --grad-card:      linear-gradient(145deg, rgba(59, 130, 246,0.04) 0%, rgba(0,0,0,0) 60%);
    --grad-shine:     linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);

    /* ── Glass / Borders ── */
    --glass-bg:       rgba(17, 24, 39, 0.55);
    --glass-border:   rgba(255, 255, 255, 0.08);
    --border-subtle:  rgba(255, 255, 255, 0.06);
    --border-mid:     rgba(255, 255, 255, 0.10);
    --border-accent:    rgba(59, 130, 246, 0.25);
    --border-accent-s:  rgba(255, 255, 255, 0.04);

    /* ── Shadows ── */
    --shadow-xs:  0 1px 3px rgba(0,0,0,0.4);
    --shadow-sm:  0 4px 12px rgba(0,0,0,0.5);
    --shadow-md:  0 12px 32px rgba(0,0,0,0.6);
    --shadow-lg:  0 24px 64px rgba(0,0,0,0.75);
    --shadow-xl:  0 40px 80px rgba(0,0,0,0.85);
    --glow-accent:  0 0 40px rgba(59,130,246,0.15);
    --glow-accent-s: 0 0 20px rgba(59,130,246,0.1);

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

    /* ── Transitions ── */
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast:  0.2s var(--ease-in-out);
    --t-mid:   0.35s var(--ease-out);
    --t-slow:  0.55s var(--ease-out);

    /* ── Typography ── */
    --font-display: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;
}

/* =============================================================
   RESET & BASE
============================================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--obsidian);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.65;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--obsidian);
    display: flex;
    flex-direction: column;
}

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

button, input, select, textarea {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

/* Focus styles */
*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Selection */
::selection {
    background: rgba(59, 130, 246,0.25);
    color: var(--white);
}

/* =============================================================
   SCROLLBAR
============================================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--obsidian); }
::-webkit-scrollbar-thumb {
    background: var(--accent-dark);
    border-radius: 3px;
}

/* =============================================================
   LAYOUT UTILITIES
============================================================= */
.container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.section {
    padding-block: clamp(5rem, 10vw, 8rem);
}

/* =============================================================
   GRADIENT TEXT
============================================================= */
.gradient-text {
    background: var(--grad-text-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* =============================================================
   SKIP LINK (ACCESSIBILITY)
============================================================= */
.skip-link {
    position: fixed;
    top: -100%;
    left: 1rem;
    background: var(--accent);
    color: var(--obsidian);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    z-index: 9999;
    transition: top var(--t-fast);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   BUTTONS
============================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--t-mid);
    min-height: 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Shine sweep animation */
.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--grad-shine);
    transition: left 0.6s ease;
}
.btn:hover::after { left: 100%; }

/* Primary — Gold */
.btn-primary {
    background: var(--grad-accent);
    color: var(--obsidian);
    box-shadow: 0 4px 20px rgba(59, 130, 246,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
    background: var(--grad-accent-h);
    box-shadow: 0 8px 30px rgba(59, 130, 246,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

/* Secondary — Glass */
.btn-secondary {
    border: 1px solid var(--border-accent);
    color: var(--accent-light);
    background: rgba(59, 130, 246,0.04);
    backdrop-filter: blur(12px);
}
.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(59, 130, 246,0.10);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--glow-accent);
}

/* Ghost */
.btn-ghost {
    border: 1px solid var(--border-mid);
    color: var(--text-secondary);
    background: transparent;
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    background: rgba(59, 130, 246,0.05);
}

/* Large */
.btn-large {
    padding: 1.1rem 2.75rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
    min-height: 58px;
}

/* =============================================================
   ORNAMENT DIVIDER
============================================================= */
.ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-block: 0.5rem;
}
.ornament::before,
.ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    max-width: 80px;
    background: linear-gradient(90deg, transparent, var(--accent-dark));
}
.ornament::after {
    background: linear-gradient(90deg, var(--accent-dark), transparent);
}
.ornament-diamond {
    width: 6px;
    height: 6px;
    background: var(--accent);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* =============================================================
   HEADER / NAVIGATION
============================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    height: 80px;
    transition: all var(--t-mid);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,8,16,0.98) 0%, rgba(6,8,16,0.92) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    opacity: 0;
    transition: opacity var(--t-mid);
    z-index: -1;
}

.header.scrolled::before { opacity: 1; }

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.65rem;
    letter-spacing: -0.5px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.1em;
    z-index: 10;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--grad-accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.4rem;
    flex-shrink: 0;
}

.logo-accent {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-africa {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    line-height: 1;
}

/* Nav list */
.nav {
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--obsidian);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--t-mid);
    z-index: 99;
    border-top: 1px solid var(--border-subtle);
}

.nav.active { transform: translateX(0); }

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--t-fast);
    display: flex;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -1px;
    width: 0; height: 1px;
    background: var(--grad-accent);
    transition: width var(--t-mid);
}

.nav-link:hover { color: var(--accent-light); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--accent); }

.nav-cta { display: none; }

/* Hamburger */
.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    position: relative;
    z-index: 101;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    background: rgba(255,255,255,0.03);
    transition: all var(--t-fast);
}

.mobile-nav-toggle:hover {
    border-color: var(--border-accent);
    background: rgba(59, 130, 246,0.06);
}

.hamburger {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text-primary);
    position: relative;
    transition: background var(--t-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1.5px;
    background: var(--text-primary);
    left: 0;
    transition: transform var(--t-fast), top var(--t-fast);
}

.hamburger::before { top: -6px; }
.hamburger::after  { top: 6px; }

.mobile-nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* =============================================================
   HERO SECTION
============================================================= */
.hero-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: var(--grad-hero);
}

/* Cinematic background */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 40%, rgba(59, 130, 246,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(59,130,246,0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Grid texture */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    padding-block: 4rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(59, 130, 246,0.08);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-full);
    padding: 0.4rem 1rem 0.4rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-light);
    margin-bottom: 1.75rem;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 1.75rem;
    color: var(--off-white);
}

.hero-title em {
    font-style: italic;
    background: var(--grad-text-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 2.75rem;
    max-width: 520px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

/* Hero stats bar */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-subtle);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

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

.hero-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero image */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glow {
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(59, 130, 246,0.15) 0%, transparent 65%);
    filter: blur(30px);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    max-width: 620px;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.9)) drop-shadow(0 0 80px rgba(59, 130, 246,0.05));
    animation: float-car 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

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

/* Trust badges */
.hero-trust-badges {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    right: 0;
    bottom: 10%;
}

.trust-badge {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    transform: translateX(30px);
    opacity: 0;
    animation: slide-in-badge var(--t-slow) var(--ease-out) forwards;
}

.trust-badge:nth-child(2) { animation-delay: 0.2s; }
.trust-badge:nth-child(3) { animation-delay: 0.4s; }

@keyframes slide-in-badge {
    to { transform: translateX(0); opacity: 1; }
}

.trust-badge-icon {
    width: 28px;
    height: 28px;
    background: rgba(59, 130, 246,0.12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

/* =============================================================
   QUICK BOOKING BAR
============================================================= */
.booking-bar-section {
    position: relative;
    z-index: 10;
    padding-block: 2rem;
}

.booking-bar {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.booking-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.booking-bar-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    grid-column: 1/-1;
}

.booking-bar .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-bar label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-bar select,
.booking-bar input[type="date"] {
    width: 100%;
    height: 50px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 0 1rem;
    color: var(--text-primary);
    font-size: 0.92rem;
    transition: all var(--t-fast);
    -webkit-appearance: none;
    appearance: none;
}

.booking-bar select:focus,
.booking-bar input:focus {
    border-color: var(--accent);
    background: rgba(59, 130, 246,0.04);
    box-shadow: 0 0 0 3px rgba(59, 130, 246,0.10);
    outline: none;
}

.booking-bar select option {
    background: var(--surface);
    color: var(--text-primary);
}

.btn-search {
    align-self: end;
    height: 50px;
    font-size: 0.9rem;
}

/* =============================================================
   SECTION HEADER
============================================================= */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(3.5rem, 7vw, 5.5rem);
}

.section-header-flex {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.section-eyebrow::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.15;
    color: var(--off-white);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    line-height: 1.65;
}

/* =============================================================
   WHY CHOOSE US — B2B FOCUS
============================================================= */
.why-us-section {
    background: var(--deep-navy);
    border-block: 1px solid var(--border-subtle);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.why-card {
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: all var(--t-mid);
    position: relative;
    overflow: hidden;
    group: true;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--grad-card);
    opacity: 0;
    transition: opacity var(--t-mid);
    pointer-events: none;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-mid);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-lg), var(--glow-gold-s);
}

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

.why-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246,0.07);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-sm);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: all var(--t-fast);
}

.why-card:hover .why-icon-box {
    background: var(--grad-accent);
    color: var(--obsidian);
    border-color: transparent;
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 8px 20px rgba(59, 130, 246,0.3);
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--off-white);
}

.why-card-text {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* =============================================================
   PARTNER B2B SECTION (NEW)
============================================================= */
.partner-section {
    background: var(--obsidian);
    padding-block: clamp(4rem, 8vw, 6rem);
    border-bottom: 1px solid var(--border-subtle);
}

.partner-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.partner-content {}

.partner-content .section-title {
    margin-bottom: 1.5rem;
}

.partner-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.partner-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-block: 2rem;
}

.partner-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.93rem;
    color: var(--text-secondary);
}

.partner-feature-icon {
    width: 20px;
    height: 20px;
    background: rgba(59, 130, 246,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.partner-card {
    background: var(--surface);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--glow-gold-s);
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(59, 130, 246,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.partner-card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 0.5rem;
}

.partner-card-sub {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.partner-pricing-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.partner-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-subtle);
}

.partner-pricing-row:last-child { border-bottom: none; padding-bottom: 0; }

.partner-pricing-row strong {
    color: var(--accent-light);
    font-weight: 700;
}

/* =============================================================
   FLEET SECTION
============================================================= */
.fleet-section {
    background: var(--obsidian);
}

.fleet-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tab {
    padding: 0.55rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--t-fast);
    min-height: 44px;
    background: transparent;
}

.filter-tab:hover {
    border-color: var(--border-accent);
    color: var(--accent-light);
    background: rgba(59, 130, 246,0.04);
}

.filter-tab.active {
    background: var(--grad-accent);
    border-color: transparent;
    color: var(--obsidian);
    box-shadow: 0 4px 16px rgba(59, 130, 246,0.25);
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Car Card */
.car-card {
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--t-mid);
    display: flex;
    flex-direction: column;
    position: relative;
}

.car-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-shine);
    background-size: 200% 100%;
    background-position: -100%;
    pointer-events: none;
    z-index: 2;
    transition: background-position 0.6s ease;
    opacity: 0;
}

.car-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-xl), var(--glow-gold-s);
}

.car-img-wrapper {
    position: relative;
    padding-top: 58%;
    background: radial-gradient(ellipse at 60% 40%, rgba(59, 130, 246,0.05) 0%, rgba(0,0,0,0.3) 100%);
    overflow: hidden;
}

.car-img-wrapper img {
    position: absolute;
    top: 50%; left: 50%;
    width: 88%; height: 88%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    transition: transform var(--t-slow);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.7));
}

.car-card:hover .car-img-wrapper img {
    transform: translate(-50%, -53%) scale(1.06);
}

.car-category {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(6,8,16,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-accent);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    z-index: 3;
}

.car-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--grad-accent);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--obsidian);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.car-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    gap: 1rem;
}

.car-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.2;
}

.car-price-box { text-align: right; flex-shrink: 0; }

.car-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
}

.car-price-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.2rem;
}

.car-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.55;
    flex-grow: 1;
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding-block: 1.1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

.spec-icon { color: var(--accent); }

.car-card .btn {
    width: 100%;
    font-size: 0.88rem;
}

/* =============================================================
   HOW IT WORKS
============================================================= */
.how-section {
    background: var(--deep-navy);
    border-block: 1px solid var(--border-subtle);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.how-step {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--t-mid);
}

.how-step:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md), var(--glow-gold-s);
    transform: translateY(-4px);
}

.step-number-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(59, 130, 246,0.2);
    user-select: none;
}

.step-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(59, 130, 246,0.2), transparent);
}

.how-step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--off-white);
}

.how-step-text {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* =============================================================
   TESTIMONIALS
============================================================= */
.testimonials-section {
    background: var(--obsidian);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all var(--t-mid);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-family: var(--font-display);
    font-size: 6rem;
    color: rgba(59, 130, 246,0.07);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-md), var(--glow-gold-s);
    transform: translateY(-5px);
}

.testimonial-rating {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 0.97rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-style: normal;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    border: 2px solid rgba(59, 130, 246,0.2);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--off-white);
    font-size: 0.92rem;
}

.author-title {
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 500;
}

/* =============================================================
   STATS SECTION
============================================================= */
.stats-section {
    background: var(--surface);
    border-block: 1px solid var(--border-accent);
    padding-block: 5rem;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(59, 130, 246,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    text-align: center;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    background: var(--grad-text-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================================
   FINAL CTA
============================================================= */
.cta-section {
    padding-block: clamp(4rem, 8vw, 7rem);
    background: var(--obsidian);
}

.cta-container {
    background: var(--surface);
    border: 1px solid var(--border-accent);
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--glow-accent);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% -20%, rgba(59, 130, 246,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 30% 120%, rgba(59,130,246,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-content { max-width: 700px; margin-inline: auto; }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--off-white);
    line-height: 1.15;
}

.cta-text {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.65;
}

.cta-action {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cta-note svg { color: var(--accent); }

/* =============================================================
   FOOTER
============================================================= */
.footer {
    background: #04060E;
    padding-top: 5.5rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem 2rem;
    padding-bottom: 4.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.65;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--t-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--t-fast);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 0.5rem;
}

.footer-links a:hover::before { width: 12px; }

.contact-details li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-contact-icon { color: var(--accent); flex-shrink: 0; }

.social-links { display: flex; gap: 0.75rem; }

.social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--t-fast);
    background: rgba(255,255,255,0.02);
}

.social-link:hover {
    border-color: var(--accent);
    background: rgba(59, 130, 246,0.07);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--glow-gold-s);
}

.footer-bottom {
    padding-block: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: color var(--t-fast);
}

.footer-bottom-links a:hover { color: var(--accent-light); }

/* =============================================================
   BOOKING MODAL
============================================================= */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 14, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-mid);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--surface);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 660px;
    max-height: 90dvh;
    overflow-y: auto;
    padding: clamp(2rem, 5vw, 3rem);
    position: relative;
    box-shadow: var(--shadow-xl), var(--glow-accent);
    transform: scale(0.92) translateY(20px);
    transition: transform var(--t-slow);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

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

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--t-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    background: rgba(255,255,255,0.02);
}

.modal-close:hover {
    color: var(--white);
    border-color: var(--border-accent);
    background: rgba(59, 130, 246,0.07);
}

.modal-header-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    color: var(--off-white);
}

/* Summary Box */
.booking-summary-box {
    background: rgba(59, 130, 246,0.04);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-car-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-car-img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-xs);
}

.summary-car-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--off-white);
}

.summary-car-cat {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: var(--text-secondary);
}

.pricing-row strong { color: var(--off-white); font-weight: 600; }

.summary-divider {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin-block: 1rem;
}

.total-row { font-size: 1.05rem; }
.total-row span { font-weight: 700; color: var(--off-white); }
.total-row strong { color: var(--accent-light); font-size: 1.25rem; }

/* Modal Form */
.modal-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-fieldset { border: none; }

.form-fieldset legend {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-form label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.modal-form input {
    height: 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xs);
    padding: 0 1rem;
    color: var(--text-primary);
    transition: all var(--t-fast);
}

.modal-form input:focus {
    border-color: var(--accent);
    background: rgba(59, 130, 246,0.04);
    box-shadow: 0 0 0 3px rgba(59, 130, 246,0.08);
    outline: none;
}

.modal-form input::placeholder { color: var(--text-muted); font-size: 0.9rem; }

.btn-submit-booking { margin-top: 0.5rem; width: 100%; }

/* Success Screen */
.booking-success-screen {
    position: absolute;
    inset: 0;
    background: var(--surface);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-mid);
    border-radius: var(--radius-xl);
}

.booking-success-screen.active {
    opacity: 1;
    pointer-events: all;
}

.success-icon-box {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: pop-in 0.5s var(--ease-out) forwards;
}

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

.success-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
    color: var(--off-white);
}

.success-msg {
    color: var(--text-secondary);
    font-size: 0.97rem;
    max-width: 400px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

#success-close-btn { min-width: 200px; }

/* =============================================================
   SCROLL REVEAL ANIMATIONS
============================================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(0.92); }

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* Stagger delay utility */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* =============================================================
   RESPONSIVE — 640px
============================================================= */
@media (min-width: 640px) {
    .booking-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-search {
        grid-column: span 2;
    }

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

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

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

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

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

/* =============================================================
   RESPONSIVE — 992px (Desktop)
============================================================= */
@media (min-width: 992px) {
    /* Navigation */
    .mobile-nav-toggle { display: none; }

    .nav {
        position: static;
        padding: 0;
        background: transparent;
        transform: translateX(0);
        display: block;
        width: auto;
        border-top: none;
    }

    .nav-list {
        flex-direction: row;
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.75px;
        padding: 0.5rem 0;
        border-bottom: none;
    }

    .nav-link::after {
        bottom: 0;
    }

    .nav-cta { display: inline-flex; }

    /* Hero */
    .hero-container {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3rem;
        min-height: calc(100svh - 80px);
        padding-block: 6rem;
    }

    .hero-content { text-align: left; }
    .hero-subtitle { margin-left: 0; }
    .hero-actions { justify-content: flex-start; }

    .hero-image { max-width: 100%; }

    /* Booking bar */
    .booking-bar {
        grid-template-columns: repeat(4, 1fr) auto;
        padding: 2.25rem 2.5rem;
        border-radius: var(--radius-xl);
    }

    .booking-bar-title {
        grid-column: 1/-1;
        margin-bottom: 0;
    }

    .btn-search {
        grid-column: auto;
        min-width: 160px;
    }

    /* Grids */
    .why-us-grid { grid-template-columns: repeat(4, 1fr); }
    .fleet-grid  { grid-template-columns: repeat(3, 1fr); }
    .how-grid    { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

    .fleet-filters { justify-content: flex-end; }

    .section-header-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    /* How — connector */
    .how-step {
        position: relative;
    }

    .how-step::after {
        content: '';
        position: absolute;
        top: 50%; right: -1rem;
        width: 2rem; height: 1px;
        background: var(--border-accent);
        z-index: 1;
    }

    .how-step:last-child::after { display: none; }

    /* CTA */
    .cta-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .cta-content {
        margin-left: 0;
        margin-right: 0;
    }

    .cta-action { flex-direction: column; align-items: flex-end; }

    /* Partner section */
    .partner-inner {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* =============================================================
   REDUCED MOTION
============================================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .hero-image { animation: none; }
    [data-reveal] { opacity: 1; transform: none; }
}
