/* ============================================
   EUROPE TAXI CAB - Premium Taxi Service
   Clean, Reliable, Trustworthy Design
   ============================================ */

:root {
    /* ── Europe Taxi Cab brand palette: charcoal ink + warm amber gold ──
       Stesso DNA "premium" del precedente, ma identità differenziata:
       il blu reale lascia spazio a un grafite sofisticato, e l'oro caldo
       sostituisce il cyan come accento (richiamo al taxi cab). */
    --primary: #111827;
    --primary-dark: #030712;
    --primary-light: #1F2937;
    --accent: #D4A017;
    --accent-light: #FBE7B0;
    --success: #2E7D32;
    --warning: #C2410C;
    --bg: #FFFFFF;
    --bg-alt: #F7F8FA;
    --bg-dark: #0B0F19;
    --text: #111827;
    --text-secondary: #475569;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --border-light: #F1F3F6;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.14);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --max-width: 1200px;
    --nav-height: 70px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --lux-ink: #0B0F19;
    --lux-navy: #1F2937;
    --lux-cobalt: #374151;
    --lux-gold: #D4A017;
    --lux-gold-soft: #FBE7B0;
    --lux-surface: #FAFAFB;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   BASE STYLES - MOBILE FIRST
   ============================================ */
html { 
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--border) var(--bg-alt);
}

/* Webkit scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-width: 320px;
    overflow-x: hidden;
    touch-action: manipulation;
}

/* Improve touch targets */
button, a, input, select, textarea, label {
    touch-action: manipulation;
}

/* Prevent text overflow — keep whole words together */
h1, h2, h3, h4, h5, h6, p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: color 0.2s;
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block;
}

/* ============================================
   NAVIGATION - Professional & Clean
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    height: var(--nav-height);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-wordmark {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
    user-select: none;
    color: #0f172a;
}

.logo-by {
    color: var(--primary);
}

.logo-dot {
    font-weight: 500;
    color: #94a3b8;
    font-size: 0.75em;
    letter-spacing: 0;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.nav-toggle:hover {
    background: var(--bg-alt);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    transition: all 0.3s;
    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);
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 300px;
    max-height: 560px;
    margin-top: var(--nav-height);
    overflow: hidden;
    background: #0a0e1a;
}

.hc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}
.hc-slide.hc-active {
    opacity: 1;
    z-index: 1;
}

.hc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 14, 26, 0.35) 0%,
        rgba(10, 14, 26, 0.55) 50%,
        rgba(10, 14, 26, 0.75) 100%
    );
    z-index: 1;
}

.hc-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    color: #fff;
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.hc-active .hc-content {
    opacity: 1;
    transform: translateY(0);
}

.hc-content h2 {
    font-size: clamp(1.5rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 10px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hc-content p {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
    max-width: 520px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.hc-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.hc-dot:hover {
    border-color: #fff;
    transform: scale(1.2);
}
.hc-dot.hc-dot-active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.15);
}

.hc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
    opacity: 0;
}
.hero-carousel:hover .hc-arrow {
    opacity: 1;
}
.hc-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.08);
}
.hc-prev { left: 16px; }
.hc-next { right: 16px; }

/* ============================================
   HERO FUNNEL
   ============================================ */
.hero-funnel {
    min-height: 100vh;
    background: linear-gradient(165deg, var(--bg-dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    color: white;
    padding: 40px 16px 48px;
}
.hero-funnel.no-carousel {
    padding-top: calc(var(--nav-height) + 40px);
}

.hero-content {
    max-width: 600px;
    margin: 0 auto 36px;
    text-align: center;
}

.hero-badge {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(0, 188, 212, 0.12);
    border: 1px solid rgba(0, 188, 212, 0.35);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hero-content h1 {
    font-size: clamp(1.75rem, 6vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
    color: white;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-subtitle {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    line-height: 1.6;
    padding: 0 8px;
    margin-bottom: 0;
}

/* ============================================
   HERO LAYOUT (Desktop horizontal)
   ============================================ */
.hero-layout {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Hero Features (shown on desktop, hidden on mobile) */
.hero-features {
    display: none;
}

/* ============================================
   FUNNEL CONTAINER
   ============================================ */
.funnel-container {
    max-width: 620px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(13, 71, 161, 0.08);
    position: relative;
}

/* ============================================
   STEPPER — Booking Progress (visible from step 2)
   ============================================ */
.funnel-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px 0;
    gap: 0;
    user-select: none;
}

.stepper-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px 3px;
    cursor: default;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

.stepper-dot.completed {
    cursor: pointer;
}

.stepper-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    border: 2px solid #d1d5db;
    color: #9ca3af;
    background: #fff;
    transition: all 0.25s ease;
}

.stepper-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.stepper-dot.active .stepper-num {
    border-color: #111827;
    background: #111827;
    color: #fff;
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.25);
}

.stepper-dot.active .stepper-label {
    color: #111827;
}

.stepper-dot.completed .stepper-num {
    border-color: #059669;
    background: #059669;
    color: #fff;
}

.stepper-dot.completed .stepper-label {
    color: #059669;
}

.stepper-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 6px;
    margin-bottom: 20px;
    border-radius: 1px;
    transition: background 0.3s ease;
    min-width: 20px;
    max-width: 56px;
}

.stepper-line.filled {
    background: #059669;
}

/* ============================================
   FUNNEL STEPS
   ============================================ */
.funnel-step {
    padding: 28px 24px 26px;
    display: none;
}

.funnel-step.active {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.funnel-step h3 {
    font-size: 1.1875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

/* ============================================
   FORM ELEMENTS - CRITICAL: 16px MIN FOR iOS
   ============================================ */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}

.form-group label .required {
    color: #D32F2F;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #dfe6f0;
    border-radius: var(--radius-sm);
    font-size: 16px !important; /* CRITICAL: Prevents iOS zoom */
    font-family: inherit;
    transition: all 0.2s;
    background: #fff;
    color: #0f172a;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    border-color: #1F2937;
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.13);
}

.form-control:hover:not(:focus) {
    border-color: #bfcce2;
}

.form-control::placeholder {
    color: var(--text-muted);
    font-size: 16px; /* CRITICAL: Prevents iOS zoom */
}

/* Textarea specific */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* Funnel textarea: compact for special requests */
.funnel-step textarea.form-control {
    min-height: auto;
}

/* Date and time inputs */
input[type="date"].form-control,
input[type="time"].form-control {
    min-height: 52px;
    font-size: 16px !important; /* Prevent iOS zoom */
    -webkit-appearance: none;
    appearance: none;
}

/* Two column form row */
.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-row-two .form-group {
    margin-bottom: 16px;
}

.form-row-two label {
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.form-row-two .form-control {
    padding: 14px 16px;
    font-size: 16px !important; /* CRITICAL: Prevents iOS zoom */
}

/* Input with icon */
.input-with-icon {
    position: relative;
}

.input-with-icon .icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--primary);
    line-height: 1;
    color: var(--text-muted);
    pointer-events: none;
}

.input-with-icon input {
    padding-left: 44px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%235A6578' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 18px;
    padding-right: 40px;
}

/* ============================================
/* ============================================
   MAP
   ============================================ */

.map-container {
    height: 180px;
    background: #f2f6fd;
    border-radius: var(--radius);
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid #d6e2f7;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 8px 20px rgba(15, 23, 42, 0.08);
}

#map {
    width: 100%;
    height: 100%;
}

.route-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: white;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    font-weight: 600;
    display: flex;
    gap: 12px;
    font-size: 0.8125rem;
    color: var(--text);
}

.route-pricing-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    box-shadow: var(--shadow);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    max-width: calc(100% - 20px);
    z-index: 2;
}

/* ============================================
   VEHICLE CLASS TABS (Step 2 — Economy / Business)
   ============================================ */
.veh-class-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #dfe6f0;
    background: #f1f5f9;
}
.veh-class-tab {
    flex: 1;
    padding: 11px 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    letter-spacing: 0.01em;
    position: relative;
}
.veh-class-tab:hover {
    color: #334155;
}
.veh-class-tab.active {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ============================================
   DISCOUNT CHIPS ROW (above vehicle cards)
   ============================================ */
.discount-chips-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.discount-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
}
.discount-chip i {
    font-size: 0.625rem;
    flex-shrink: 0;
}
.discount-chip strong {
    font-weight: 800;
}

.discount-chip--drivers {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #064e3b;
    border: 1px solid #6ee7b7;
    padding: 5px 13px;
    font-size: 0.75rem;
    letter-spacing: 0.01em;
}
.discount-chip--drivers strong {
    font-weight: 900;
    font-size: 0.8125rem;
}
.drivers-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
    animation: driversPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes driversPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.45); }
    50% { box-shadow: 0 0 0 4px rgba(16,185,129,0); }
}
.discount-chip--early {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}
.discount-chip--rt {
    background: #ede9fe;
    color: #6d28d9;
    border: 1px solid #c4b5fd;
}

/* ============================================
   VEHICLE OPTIONS
   ============================================ */
.vehicle-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.vehicle-card[data-tier="car"] .vehicle-category {
    background: #e9f1ff;
    color: #0b4fb3;
}

.vehicle-card[data-tier="van"] .vehicle-category {
    background: #efe9ff;
    color: #5b32a8;
}

.vehicle-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    background: #fff;
    min-height: 88px;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.vehicle-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.08);
}

.vehicle-card.selected {
    border-color: #86efac;
    background: #fafff9;
    box-shadow: 0 2px 12px rgba(46, 125, 50, 0.1);
}

.vehicle-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #111827;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.vehicle-card:hover::before {
    opacity: 0.5;
}

.vehicle-card.selected::before {
    background: #22c55e;
    opacity: 1;
}

.vehicle-image {
    width: 170px;
    height: 104px;
    background: var(--bg-alt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border);
    transition: border-color 0.2s, background 0.2s;
}

.vehicle-card.selected .vehicle-image {
    background: white;
    border-color: #4caf50;
    position: relative;
}

.vehicle-card.selected .vehicle-image::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    background: #4caf50 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center/12px 12px no-repeat;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(76, 175, 80, 0.25);
    z-index: 1;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vehicle-info {
    flex: 1;
    min-width: 0;
}

.ff-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #fff;
    background: #2e7d32;
    padding: 2px 7px;
    border-radius: 4px;
    margin-bottom: 3px;
}

.vehicle-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #00838F;
    background: var(--accent-light);
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.vehicle-info h4 {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vehicle-capacity {
    display: flex;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.vehicle-capacity span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.vehicle-price-wrap {
    text-align: right;
    min-width: 110px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.vehicle-discount-row {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
}

.vehicle-f-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    padding: 0 6px;
    border-radius: 4px;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid #fcd34d;
}

.vehicle-rt-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    padding: 0 6px;
    border-radius: 4px;
    background: #ede9fe;
    color: #6d28d9;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid #c4b5fd;
}

.vehicle-unit-price {
    font-size: 1.375rem;
    font-weight: 800;
    color: #0f172a;
    display: block;
    letter-spacing: -0.03em;
    line-height: 1;
}

.vehicle-f-price {
    font-size: 0.75rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    line-height: 1;
}

.vehicle-total {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--success);
    display: none;
    margin-top: 2px;
}

.vehicle-unit {
    display: none;
}

/* Select Vehicle Button */
.btn-select-vehicle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    border: 1.5px solid #111827;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
    white-space: nowrap;
    letter-spacing: 0.02em;
    min-height: 38px;
}

.btn-select-vehicle:hover {
    background: #0b3d8a;
    border-color: #0b3d8a;
}

.btn-select-vehicle:active {
    transform: scale(0.97);
}

.btn-select-vehicle.btn-vehicle-selected {
    background: #f0fdf4;
    color: #15803d;
    border-color: #86efac;
    cursor: pointer;
}

.btn-select-vehicle.btn-vehicle-selected:hover {
    background: #dcfce7;
    color: #15803d;
    border-color: #4ade80;
}

/* Vehicle qty controls and fleet summary — removed (single vehicle only) */

/* ============================================
   PAYMENT OPTIONS
   ============================================ */

/* ============================================
   BOOKING SUMMARY
   ============================================ */
.booking-summary {
    background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 16px;
    border: 1px solid #cfdef8;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 22px rgba(21, 101, 192, 0.08);
}

.booking-summary h4 {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    gap: 12px;
}

.summary-row span:first-child {
    flex-shrink: 0;
}

.summary-row span:last-child {
    text-align: right;
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

.summary-row.total {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 10px;
    letter-spacing: -0.01em;
}


/* ============================================
   STEP 3: BOOKING RECAP
   ============================================ */
.step3-booking-recap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: 20px 0 8px;
    overflow: hidden;
}
.s3r-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.4;
}
.s3r-icon {
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    color: var(--primary);
    margin-top: 1px;
}
.s3r-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.s3r-dest-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.s3r-dest-wrap .s3r-text {
    flex: none;
}
.s3r-route-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.s3r-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(13, 71, 161, 0.07);
    border-radius: 20px;
    padding: 3px 10px;
    letter-spacing: 0.01em;
}
.s3r-meta-chip i {
    font-size: 0.7rem;
}
.s3r-veh-specs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light, #777);
    vertical-align: middle;
}
.s3r-veh-specs i {
    font-size: 0.7rem;
    margin-right: 1px;
}
.s3r-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    color: #fff;
}
.s3r-total-label {
    font-size: 0.9375rem;
    font-weight: 600;
    opacity: 0.9;
}
.s3r-total-value {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.s3r-inclusive {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #2e7d32;
    background: #e8f5e9;
}

.step-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: -4px 0 20px;
    line-height: 1.5;
}

/* ============================================
   STEP 4: BOOKING RECAP
   ============================================ */
.booking-recap {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius);
    overflow: hidden;
}
.recap-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    border-bottom: 1.5px solid #e2e8f0;
}
.recap-header i {
    font-size: 1.375rem;
    color: var(--primary);
}
.recap-header h3 {
    font-size: 1.0625rem;
    font-weight: 800;
    margin: 0;
    color: var(--text);
}
.recap-section {
    padding: 16px 22px;
    border-bottom: 1px solid #f1f5f9;
}
.recap-section:last-of-type {
    border-bottom: none;
}
.recap-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.recap-section-title i {
    font-size: 0.875rem;
}
.recap-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 5px 0;
    font-size: 0.875rem;
    gap: 12px;
}
.recap-label {
    color: var(--text-secondary);
    flex-shrink: 0;
    font-weight: 500;
}
.recap-value {
    text-align: right;
    font-weight: 600;
    color: var(--text);
    word-break: break-word;
}
/* ── Tip selector ──────────────────────────── */
.tip-selector {
    padding: 18px 22px;
    border-top: 1px solid var(--border);
}
.tip-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}
.tip-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
}
.tip-sublabel {
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.tip-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.tip-btn {
    flex: 1;
    min-width: 54px;
    padding: 10px 6px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
}
.tip-btn:hover {
    border-color: var(--primary);
    background: rgba(13, 71, 161, 0.04);
}
.tip-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}
/* ── Recap total (redesigned for tip breakdown) ── */
.recap-total {
    padding: 18px 22px;
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    color: #fff;
}
.recap-total-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.recap-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.recap-subtotal span:first-child,
.recap-tip-row span:first-child {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.85;
}
.recap-subtotal span:last-child,
.recap-tip-row span:last-child {
    font-size: 0.9375rem;
    font-weight: 600;
    opacity: 0.85;
}
.recap-grand-total {
    margin-top: 4px;
}
.recap-grand-total span:first-child {
    font-size: 1rem;
    font-weight: 700;
}
.recap-grand-total span:last-child {
    font-size: 1.625rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* ============================================
   PAYMENT TOTAL (legacy)
   ============================================ */
.summary-row.summary-total {
    border-top: 1.5px solid #d0def8;
    margin-top: 6px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 0.9375rem;
}

.summary-row.summary-total span:last-child {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
}

.payment-methods-line {
    display: flex;
    justify-content: center;
    margin: 12px 0 0;
}

.payment-methods-line img {
    display: block;
    height: 71px;
    width: auto;
    object-fit: contain;
}

.btn-pay-now {
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: all 0.2s ease;
    margin-top: 14px;
}
.btn-pay-now:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13,71,161,0.3);
}
.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: wait;
}

.widget-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 32px 16px;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Payment status messages */
.payment-message {
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    text-align: center;
}

.payment-message--error {
    background: #FFEBEE;
    border: 1px solid #FFCDD2;
    color: #C62828;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
}

.payment-message--success {
    background: #E8F5E9;
    border: 1px solid #C8E6C9;
    color: var(--text);
}

.payment-success {
    text-align: center;
    padding: 12px 0;
}

.success-icon {
    width: 56px;
    height: 56px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.payment-success h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 12px;
}

.payment-success p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.5;
}

.payment-success .success-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}


/* Spinner for loading state */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   INLINE VALIDATION ERRORS
   ============================================ */
.inline-error {
    display: none;
    padding: 10px 14px;
    margin-top: 12px;
    background: linear-gradient(180deg, #fff4f3 0%, #ffefed 100%);
    border: 1px solid #ffc9c1;
    border-radius: var(--radius-sm);
    color: #C62828;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
    animation: fadeIn 0.2s ease;
}

.inline-error.visible {
    display: block;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-full { width: 100%; }

.btn-large {
    padding: 16px;
    font-size: 1rem;
}

.funnel-buttons {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.btn-secondary {
    flex: 1;
    padding: 16px 22px;
    background: #f8fafc;
    color: #475569;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: #f3f7ff;
    border-color: #94a3b8;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.btn-primary {
    flex: 2;
    padding: 16px 22px;
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0b3f8e 0%, #1456a0 100%);
    box-shadow: 0 10px 24px rgba(13, 71, 161, 0.26);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(1px) scale(0.995);
}

.btn-primary:disabled,
.btn-primary:disabled:hover {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--primary);
    transform: none;
    box-shadow: none;
}

/* ── Screen Reader Only (accessibility) ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ── Form Error States ── */
.form-control.error {
    border-color: #D32F2F;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.08);
}

/* ── Button Loading State ── */
.btn-primary.loading {
    pointer-events: none;
    opacity: 0.75;
    position: relative;
}

/* ============================================
   FUNNEL WRAP (keeps funnel + payments stacked)
   ============================================ */
.funnel-wrap {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
}

/* ============================================
   ACCEPTED PAYMENTS (shown inline at payment step)
   ============================================ */

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-badges span {
    color: rgba(255,255,255,0.85);
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 16px;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.stat-divider {
    display: none;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}


/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: 48px 16px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.reviews-section > .container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 36px;
    padding: 0 8px;
}

.section-header h2 {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ── Review source tabs ── */
.reviews-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.rv-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: var(--bg);
    color: var(--text-secondary);
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.rv-tab:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

.rv-tab.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.rv-tab.active .rv-tab-icon path { fill: #fff; }

.rv-tab-icon {
    flex-shrink: 0;
    display: block;
}

/* ── Rating overview ── */
.rating-overview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.rating-overview .stars {
    color: #FFC107;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 0 24px;
}

.review-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.2s;
}

.review-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}


.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-alt);
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 700;
    color: #fff;
    font-size: 1.125rem;
    border-radius: 50%;
}

.reviewer-info h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.review-stars {
    color: #FFC107;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.reviews-footer {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--bg);
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-all-reviews {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: var(--radius);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-all-reviews:hover {
    background: var(--primary);
    color: #fff;
}

.btn-load-more:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow);
}

/* ============================================
   FLEET SECTION - Premium Vertical Cards
   ============================================ */
.fleet-section {
    padding: 64px 16px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

/* Fleet Category Tabs */
.fleet-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 0 0 28px;
    flex-wrap: wrap;
}

.fleet-tab {
    padding: 9px 20px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.fleet-tab:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.fleet-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.fleet-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    position: relative;
}

.fleet-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 12px 40px rgba(13, 71, 161, 0.12);
    transform: translateY(-4px);
}

.fleet-card--premium {
    border-color: var(--primary-light);
    background: linear-gradient(180deg, rgba(13,71,161,0.02) 0%, var(--bg) 100%);
}

.fleet-card--premium:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(13, 71, 161, 0.18);
}

/* Vehicle Image */
.fleet-card-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--bg-alt) 0%, #EEF2F7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

.fleet-card-visual img {
    width: 96%;
    height: 96%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

.fleet-card:hover .fleet-card-visual img {
    transform: scale(1.05);
}

.fleet-premium-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Card Content */
.fleet-card-content {
    padding: 16px 16px 12px;
    flex: 1;
}

.fleet-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary);
    background: rgba(13, 71, 161, 0.08);
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.fleet-card-content h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.35;
    /* NO truncation - text wraps naturally */
}

.fleet-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fleet-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.fleet-meta-item svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Card Price Footer */
.fleet-card-price {
    padding: 12px 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.fleet-price-inner {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.fleet-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.fleet-price-amount {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary);
}

.fleet-book-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.2s;
    white-space: nowrap;
}

.fleet-book-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 48px 16px;
    background: var(--bg);
}

.how-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.how-step {
    text-align: center;
    padding: 24px 20px;
    position: relative;
    flex: 1;
}

.how-step-number {
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 800;
    margin: 0 auto 12px;
}

.how-step-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent);
}

.how-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.how-step p {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

.how-step-connector {
    color: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 56px 16px;
    background: var(--bg-alt);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.feature-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0, 188, 212, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 14px;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    line-height: 1.55;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 56px 16px;
    background: linear-gradient(135deg, var(--hero-bg, #0a1628) 0%, #0d2847 100%);
    text-align: center;
}

.cta-content {
    max-width: 560px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
    background: var(--accent-hover, #0097a7);
    transform: translateY(-1px);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(165deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    color: white;
    padding: calc(var(--nav-height) + 40px) 16px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    padding: 32px 16px;
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 20px 0 8px;
}

.content-section p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.content-section ul,
.content-section ol {
    margin: 12px 0 16px 20px;
    color: var(--text-secondary);
}

.content-section li {
    margin-bottom: 8px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Contact page styles moved to inline <style> in contact.php */

/* ============================================
   HOW IT WORKS - COMPARISON & FEATURE GRIDS
   ============================================ */
.section-title {
    border-bottom-width: 2px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 20px 0;
}

.comparison-box {
    padding: 20px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
}

.comparison-box.positive {
    background: #E8F5E9;
    border-color: var(--success);
}

.comparison-box.info {
    background: var(--accent-light);
    border-color: var(--accent);
}

.comparison-box h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.comparison-box ul {
    margin: 0 0 0 18px;
    color: var(--text-secondary);
}

.comparison-box li {
    margin-bottom: 6px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}

.feature-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.feature-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.feature-text {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   INFO BOX / ALERTS
   ============================================ */
.info-box {
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
    padding: 16px;
    margin: 20px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.info-box h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.info-box p {
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .values-grid .info-box {
        margin: 0;
    }
}

.alert {
    padding: 16px;
    border-radius: var(--radius);
    margin: 16px 0;
}

.alert-info {
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
}

.alert-success {
    background: #E8F5E9;
    border-left: 3px solid var(--success);
}

/* ============================================
   TABLES
   ============================================ */
.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background: var(--bg-alt);
    font-weight: 700;
    color: var(--text);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

tr:last-child td {
    border-bottom: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 32px 16px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 4px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
}

.footer-logo .logo-wordmark {
    font-size: 1.125rem;
    color: #fff;
}

.footer-logo .logo-by {
    color: #60a5fa;
}

.footer-logo .logo-dot {
    color: rgba(255,255,255,0.35);
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.8125rem;
    max-width: 320px;
    line-height: 1.5;
    margin: 0;
}

.footer-contact-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.footer-contact-inline a {
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
    transition: color 0.2s;
}

.footer-contact-inline a:hover {
    color: var(--accent);
}

.footer-contact-inline span {
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
}

.footer h4 {
    font-size: 0.6875rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.8125rem;
    line-height: 1.7;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 16px auto 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--accent);
}

/* ============================================
   MOBILE NAV - Small screens only
   ============================================ */

/* Hide mobile-only elements on desktop */
.mn-head,
.mn-footer,
.mn-close {
    display: none;
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active {
        opacity: 0;
        pointer-events: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        padding: 0;
        gap: 0;
        transition: right 0.35s cubic-bezier(.4,0,.2,1);
        box-shadow: -8px 0 40px rgba(0,0,0,0.18);
        z-index: 999;
        align-items: stretch;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }

    .mn-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 20px 16px;
        border-bottom: 1px solid #f1f5f9;
    }

    .mn-head .logo-wordmark {
        font-size: 1.1rem;
    }

    .mn-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: #f1f5f9;
        color: #475569;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }

    .mn-close:hover {
        background: #e2e8f0;
        color: #0f172a;
    }

    .mn-links {
        padding: 12px 12px 4px;
    }

    .nav-link {
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 0.9375rem;
        font-weight: 500;
        color: #1e293b;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: background 0.15s;
        border-bottom: none;
        min-height: 0;
    }

    .nav-link i {
        font-size: 1.125rem;
        color: #64748b;
        width: 22px;
        text-align: center;
        flex-shrink: 0;
    }

    .nav-link:hover,
    .nav-link:active {
        background: #f1f5f9;
        color: var(--primary);
    }

    .nav-link:hover i,
    .nav-link:active i {
        color: var(--primary);
    }
    
    .nav-cta {
        margin: 8px 16px 0;
        text-align: center;
        padding: 14px 16px;
        font-size: 0.9375rem;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 700;
        min-height: 0;
    }

    .nav-cta i {
        font-size: 1rem;
    }

    .mn-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-top: auto;
        padding: 20px 20px 28px;
        border-top: 1px solid #f1f5f9;
    }

    .mn-contact {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8125rem;
        color: #475569;
        transition: color 0.2s;
    }

    .mn-contact:hover {
        color: var(--primary);
    }

    .mn-contact i {
        font-size: 0.875rem;
    }

    .mn-social {
        display: flex;
        gap: 16px;
    }

    .mn-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #f1f5f9;
        color: #475569;
        font-size: 1.05rem;
        transition: background 0.2s, color 0.2s, transform 0.15s;
    }

    .mn-social a:hover {
        background: var(--primary);
        color: #fff;
        transform: scale(1.08);
    }

    .mn-copy {
        font-size: 0.6875rem;
        color: #94a3b8;
        letter-spacing: 0.02em;
    }
}

/* ============================================
   MEDIA QUERIES - TABLET (481px - 767px)
   ============================================ */
@media (min-width: 481px) {
    .hero-funnel {
        padding: 28px 24px 40px;
    }
    .hero-funnel.no-carousel {
        padding-top: calc(var(--nav-height) + 28px);
    }
    
    .hero-content {
        margin-bottom: 24px;
    }
    
    .funnel-container {
        border-radius: var(--radius-lg);
    }
    
    .funnel-step {
        padding: 24px;
    }
    
    .map-container {
        height: 200px;
        margin-bottom: 20px;
    }

    .vehicle-card {
        gap: 12px;
        padding: 14px;
    }

    .vehicle-image {
        width: 130px;
        height: 82px;
    }

    .vehicle-price-wrap {
        min-width: 90px;
    }
    
    .vehicle-info h4 {
        font-size: 0.9375rem;
    }
    
    .vehicle-unit-price {
        font-size: 1.0625rem;
    }

    .vehicle-f-price {
        font-size: 0.6875rem;
    }

    .vehicle-f-pill,
    .vehicle-rt-pill {
        height: 16px;
        padding: 0 5px;
        font-size: 0.625rem;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .fleet-card-content {
        padding: 18px 18px 14px;
    }
    
    .fleet-card-price {
        padding: 14px 18px;
    }
    
    .features-grid {
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px 20px;
        border-radius: var(--radius-lg);
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .reviews-section,
    .fleet-section,
    .features,
    .how-it-works,
    .cta-banner {
        padding: 64px 24px;
    }
    
    .stats-bar {
        padding: 40px 24px;
    }
    
    .stats-grid {
        gap: 24px 32px;
    }
    
    .stat-value {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .how-steps {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
    
    .how-step-connector {
        transform: none;
        margin-top: 72px;
        flex-shrink: 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .reviews-grid {
        gap: 20px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        grid-column: span 1;
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
}

/* ============================================
   MEDIA QUERIES - TABLET LANDSCAPE (768px+)
   ============================================ */
@media (min-width: 768px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        gap: 32px;
        transition: none;
        box-shadow: none;
        z-index: auto;
        align-items: center;
        overflow-y: visible;
        right: auto;
    }
    
    .stats-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 32px;
    }
    
    .stat-divider {
        display: block;
        width: 1px;
        height: 36px;
        background: var(--border);
        flex-shrink: 0;
    }
    
    .mn-head,
    .mn-footer,
    .mn-close {
        display: none !important;
    }

    .mn-links {
        display: contents;
    }

    .nav-link i,
    .nav-cta i {
        display: none;
    }

    .nav-link {
        padding: 0;
        border-bottom: none;
        font-size: 0.9375rem;
        min-height: auto;
        gap: 0;
    }
    
    .nav-cta {
        margin-top: 0;
        padding: 10px 20px;
        font-size: 0.875rem;
        gap: 0;
        min-height: auto;
    }
    
    .nav-inner {
        padding: 0 24px;
    }
    
    .hero-funnel {
        padding: 48px 32px 56px;
    }
    .hero-funnel.no-carousel {
        padding-top: calc(var(--nav-height) + 48px);
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-badge {
        display: inline-flex;
        font-size: 0.8125rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-badges {
        gap: 32px;
        margin-top: 40px;
    }
    
    .trust-badges span {
        font-size: 0.875rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 960px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
    }
    
    .footer-bottom {
        text-align: left;
    }
    
    .content-section {
        padding: 40px 24px;
    }
}

/* ============================================
   MEDIA QUERIES - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .hero-funnel {
        padding: 56px 48px 60px;
    }
    .hero-funnel.no-carousel {
        padding-top: calc(var(--nav-height) + 56px);
    }
    
    /* ── Hero Horizontal Layout ── */
    .hero-layout {
        display: flex;
        align-items: flex-start;
        gap: 56px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .hero-content {
        flex: 1;
        max-width: none;
        margin: 0;
        text-align: left;
        padding-top: 24px;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
        margin-bottom: 18px;
    }
    
    .hero-subtitle {
        padding: 0;
        font-size: 1.0625rem;
        max-width: 420px;
    }
    
    .hero-badge {
        margin-bottom: 24px;
    }
    
    /* Hero Features - visible on desktop */
    .hero-features {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 36px;
    }
    
    .hero-feature {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    
    .hero-feature-icon {
        width: 44px;
        height: 44px;
        background: rgba(0, 188, 212, 0.12);
        border: 1px solid rgba(0, 188, 212, 0.25);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        flex-shrink: 0;
        color: var(--accent);
    }
    
    .hero-feature div {
        display: flex;
        flex-direction: column;
    }
    
    .hero-feature strong {
        font-size: 0.9375rem;
        font-weight: 700;
        color: white;
    }
    
    .hero-feature span:not(.hero-feature-icon) {
        font-size: 0.8125rem;
        color: rgba(255,255,255,0.6);
        font-weight: 400;
    }
    
    .funnel-wrap {
        flex: 0 0 520px;
        max-width: 520px;
        margin: 0;
    }

    .funnel-container {
        max-width: none;
    }
    
    .trust-badges {
        max-width: 1200px;
        margin: 40px auto 0;
    }
    
    .stats-bar {
        padding: 48px;
    }
    
    .stats-grid {
        gap: 56px;
    }
    
    .stat-divider {
        height: 44px;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .cta-banner {
        padding: 80px 48px;
    }
    
    .cta-content h2 {
        font-size: 2.25rem;
    }
    
    /* ── Fleet Desktop Grid ── */
    .fleet-section {
        padding: 80px 48px;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 960px;
    }
    
    .fleet-card-content h3 {
        font-size: 0.875rem;
    }
    
    .fleet-meta-item {
        font-size: 0.75rem;
    }
    
    .fleet-price-amount {
        font-size: 1rem;
    }
    
    .fleet-book-link {
        font-size: 0.75rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   MEDIA QUERIES - LARGE DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
    .hero-content h1 {
        font-size: 3.25rem;
    }
    
    .hero-layout {
        gap: 72px;
    }
    
    .hero-features {
        margin-top: 40px;
    }
    
    .funnel-wrap {
        flex: 0 0 540px;
        max-width: 540px;
    }
}

/* ============================================
   MEDIA QUERIES - MOBILE SPECIFIC FIXES
   ============================================ */
@media (max-width: 480px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .hero-carousel {
        height: 38vh;
        min-height: 220px;
        max-height: 320px;
    }
    .hc-arrow { display: none; }
    .hc-dots { bottom: 14px; gap: 8px; }
    .hc-dot { width: 8px; height: 8px; }

    /* Hero: remove min-height so funnel is immediately visible */
    .hero-funnel {
        min-height: auto;
    }
    
    /* Stats bar compact */
    .stats-bar {
        padding: 24px 12px;
    }
    
    .stat-value {
        font-size: 1.375rem;
    }
    
    /* CTA compact */
    .cta-banner {
        padding: 40px 16px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 24px;
        padding: 0 4px;
    }

    .section-header h2 {
        font-size: 1.25rem;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .section-header p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    /* ── How It Works ── */
    .how-it-works {
        padding: 36px 16px;
    }

    .how-steps {
        gap: 0;
    }

    .how-step {
        padding: 16px 12px;
    }

    .how-step-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }

    .how-step-icon svg {
        width: 24px;
        height: 24px;
    }

    .how-step h3 {
        font-size: 0.875rem;
        margin-bottom: 4px;
    }

    .how-step p {
        font-size: 0.75rem;
        line-height: 1.5;
        max-width: 260px;
    }

    .how-step-connector {
        margin: -4px 0;
    }

    .how-step-connector svg {
        width: 18px;
        height: 18px;
    }

    /* ── Fleet Section ── */
    .fleet-section {
        padding: 36px 12px;
    }

    .fleet-tabs {
        gap: 6px;
        margin-bottom: 16px;
        flex-wrap: wrap;
    }

    .fleet-tab {
        font-size: 0.6875rem;
        padding: 5px 10px;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fleet-card {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .fleet-card-visual {
        width: 100%;
        min-width: unset;
        aspect-ratio: 16 / 9;
        height: auto;
        padding: 16px;
        border-radius: var(--radius) var(--radius) 0 0;
        flex-shrink: 0;
    }

    .fleet-card-visual img {
        width: 100%;
        height: 100%;
    }

    .fleet-premium-tag {
        top: 6px;
        right: 6px;
        font-size: 0.625rem;
        padding: 3px 8px;
    }

    .fleet-card-content {
        padding: 12px 16px 8px;
        flex: 1;
        min-width: 0;
    }

    .fleet-badge {
        font-size: 0.625rem;
        padding: 2px 8px;
        margin-bottom: 4px;
    }

    .fleet-card-content h3 {
        font-size: 0.9375rem;
        margin-bottom: 6px;
    }

    .fleet-meta {
        gap: 12px;
    }

    .fleet-meta-item {
        font-size: 0.75rem;
    }

    .fleet-card-price {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        border-top: 1px solid var(--border-light);
        border-left: none;
        gap: 8px;
    }

    .fleet-price-inner {
        flex-direction: row;
        align-items: baseline;
        gap: 4px;
    }

    .fleet-price-label {
        font-size: 0.6875rem;
    }

    .fleet-price-amount {
        font-size: 1.0625rem;
    }

    .fleet-book-link {
        font-size: 0.75rem;
        padding: 6px 14px;
        background: var(--primary);
        color: #fff;
        border-radius: var(--radius-sm);
        text-decoration: none;
    }

    .fleet-book-link:hover {
        color: #fff;
    }

    /* ── Features ── */
    .features {
        padding: 36px 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature-card {
        padding: 16px;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 14px;
        border-radius: var(--radius);
    }

    .feature-icon {
        margin: 0;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
    }

    .feature-card h3 {
        margin-bottom: 2px;
        font-size: 0.8125rem;
    }

    .feature-card p {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    /* ── CTA Banner ── */
    .cta-banner {
        padding: 36px 16px;
    }

    .cta-content h2 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .cta-content p {
        font-size: 0.8125rem;
        margin-bottom: 20px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.9375rem;
        padding: 12px 24px;
    }
    
    /* Date/time row stays 2-col even on small screens */
    .datetime-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .datetime-input {
        min-height: 48px !important;
        padding: 10px 10px !important;
        font-size: 16px !important;
    }

    /* Return fields compact */
    .return-fields {
        padding: 12px;
        margin-bottom: 10px;
    }

    .return-label {
        font-size: 0.625rem;
        margin-bottom: 8px;
    }

    /* Fleet tabs mobile */
    .fleet-tabs {
        gap: 5px;
        margin-bottom: 20px;
    }

    .fleet-tab {
        padding: 10px 14px;
        font-size: 0.75rem;
        min-height: 44px;
    }
    
    /* Compact hero on mobile — form visible sooner */
    .hero-funnel {
        padding: 16px 14px 20px;
    }
    .hero-funnel.no-carousel {
        padding-top: calc(var(--nav-height) + 16px);
    }
    
    .hero-content {
        margin-bottom: 12px;
    }

    .hero-content h1 {
        display: none;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-features {
        display: flex;
        gap: 0;
        margin: 10px -2px 0;
        background: rgba(255,255,255,0.05);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 14px;
        padding: 14px 2px;
    }

    .hero-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 7px;
        flex: 1;
        text-align: center;
        padding: 0 8px;
        position: relative;
    }

    .hero-feature + .hero-feature::before {
        content: '';
        position: absolute;
        left: 0;
        top: 6px;
        bottom: 6px;
        width: 1px;
        background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
    }

    .hero-feature-icon {
        width: 36px;
        height: 36px;
        background: rgba(0, 188, 212, 0.13);
        border: 1px solid rgba(0, 188, 212, 0.22);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--accent);
        box-shadow: 0 0 16px rgba(0, 188, 212, 0.08);
    }

    .hero-feature-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero-feature div {
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    .hero-feature strong {
        font-size: 0.6875rem;
        font-weight: 700;
        color: white;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    .hero-feature span:not(.hero-feature-icon) {
        font-size: 0.625rem;
        color: rgba(255,255,255,0.42);
        font-weight: 400;
        line-height: 1.25;
    }
    
    /* Adjust funnel container for very small screens */
    .funnel-container {
        border-radius: var(--radius);
    }

    .funnel-stepper {
        padding: 12px 12px 0;
    }

    .stepper-num {
        width: 26px;
        height: 26px;
        font-size: 0.6875rem;
    }

    .stepper-label {
        font-size: 0.625rem;
    }

    .stepper-line {
        margin-bottom: 16px;
        min-width: 12px;
    }

    .funnel-step {
        padding: 18px 14px;
    }

    .funnel-step h3 {
        font-size: 0.9375rem;
        margin-bottom: 14px;
    }

    /* Accepted payments */
    /* Trust badges */
    .trust-badges {
        gap: 12px;
        margin-top: 24px;
    }
    
    .trust-badges span {
        font-size: 0.75rem;
    }
    
    .veh-class-tabs {
        margin-bottom: 12px;
        border-radius: 8px;
    }
    .veh-class-tab {
        padding: 9px 0;
        font-size: 0.8125rem;
    }

    /* Reviews section */
    .reviews-section {
        padding: 36px 12px;
    }

    .reviews-tabs {
        gap: 6px;
    }

    .rv-tab {
        padding: 8px 16px;
        font-size: 0.8125rem;
        gap: 5px;
    }

    .rv-tab-icon {
        width: 15px;
        height: 15px;
    }

    .btn-all-reviews {
        padding: 12px 20px;
        font-size: 0.8125rem;
    }
    
    .review-card {
        padding: 16px;
    }
    
    /* Vehicle cards — mobile: same row layout as desktop, scaled down */
    .vehicle-options {
        gap: 8px;
        margin-bottom: 8px;
    }

    .vehicle-card {
        gap: 12px;
        padding: 12px;
        border-radius: 10px;
        min-height: 0;
    }

    .vehicle-card::before {
        display: none;
    }

    .vehicle-card:active:not(.selected) {
        transform: scale(0.985);
    }

    .vehicle-image {
        width: 100px;
        height: 68px;
        border-radius: 8px;
    }

    .vehicle-card.selected .vehicle-image::after {
        top: 3px;
        right: 3px;
        width: 18px;
        height: 18px;
        background-size: 11px 11px;
    }

    .vehicle-image img {
        padding: 0;
    }

    .vehicle-info {
        flex: 1;
        min-width: 0;
    }

    .vehicle-info h4 {
        font-size: 0.76rem;
        margin-bottom: 3px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        line-height: 1.25;
    }

    .vehicle-category {
        font-size: 0.6875rem;
        padding: 2px 7px;
        margin-bottom: 3px;
    }

    .vehicle-capacity {
        font-size: 0.8125rem;
        gap: 10px;
        margin-bottom: 0;
    }

    .vehicle-price-wrap {
        min-width: 86px;
        gap: 2px;
    }

    .vehicle-unit-price {
        font-size: 1.25rem;
    }

    .vehicle-f-price {
        font-size: 0.75rem;
    }

    .vehicle-f-pill,
    .vehicle-rt-pill {
        height: 18px;
        padding: 0 6px;
        font-size: 0.625rem;
    }

    .discount-chips-row {
        gap: 6px;
    }
    .discount-chip {
        padding: 3px 8px;
        font-size: 0.625rem;
    }

    .btn-select-vehicle {
        padding: 7px 14px;
        font-size: 0.75rem;
        min-height: 34px;
        border-radius: 6px;
    }

    .btn-select-vehicle.btn-vehicle-selected {
        padding: 6px 10px;
        font-size: 0.6875rem;
        min-height: 30px;
        border-radius: 6px;
    }

    
    /* Summary mobile */
    .summary-row span:first-child {
        min-width: 70px;
    }

    .summary-row span:last-child {
        font-size: 0.8125rem;
    }

    /* Disposal info mobile */
    .disposal-step2-info {
        padding: 12px;
        font-size: 0.8125rem;
    }

    /* Funnel step buttons */
    .funnel-buttons {
        gap: 10px;
        margin-top: 16px;
    }

    /* Booking summary mobile */
    .booking-summary {
        padding: 14px;
    }

    .booking-summary h4 {
        font-size: 0.875rem;
    }

    .summary-row {
        font-size: 0.8125rem;
        gap: 8px;
    }

    /* Recap mobile */
    .recap-header { padding: 12px 14px; }
    .recap-section { padding: 10px 14px; }
    .recap-row { font-size: 0.8125rem; }
    .recap-total { padding: 12px 14px; }
    .recap-grand-total span:last-child { font-size: 1.25rem; }
    .tip-selector { padding: 12px 14px; }
    .tip-btn { padding: 7px 2px; font-size: 0.75rem; }
    .s3r-row { padding: 8px 14px; font-size: 0.75rem; }
    .s3r-route-meta { gap: 6px; }
    .s3r-meta-chip { font-size: 0.6875rem; padding: 2px 8px; }
    .s3r-veh-specs { font-size: 0.6875rem; gap: 4px; margin-left: 6px; }
    .s3r-total { padding: 12px 14px; }
    .s3r-total-value { font-size: 1.125rem; }
    .s3r-inclusive { padding: 8px 14px; font-size: 0.6875rem; }

    /* Map smaller */
    .map-container {
        height: 140px;
        margin-bottom: 12px;
    }

    /* Counters compact */
    .counter-row {
        padding: 6px 8px;
    }

    .counter-label-side {
        font-size: 0.8125rem;
        gap: 6px;
    }

    .counter-btn {
        width: 34px;
        height: 34px;
    }

    .footer {
        padding: 24px 14px 16px;
    }

    .footer-grid {
        gap: 16px 12px;
    }

    .footer-brand {
        padding-bottom: 10px;
    }

    /* Places dropdown: full-bleed on mobile */
    .places-dropdown {
        max-height: 280px;
    }

    .place-item {
        padding: 12px 14px 12px 16px;
        min-height: 48px;
    }

    .place-name {
        font-size: 0.8125rem;
    }

    /* Section headers compact */
    .section-header {
        margin-bottom: 24px;
        padding: 0 4px;
    }

    .section-header h2 {
        margin-bottom: 8px;
    }

    .section-header p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .features {
        padding: 40px 14px;
    }
}

/* ============================================
   HIGH RESOLUTION SCREENS
   ============================================ */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ============================================
   SAFARI SPECIFIC FIXES
   ============================================ */
@supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */
    .form-control {
        font-size: 16px !important;
    }
    
    select.form-control {
        border-radius: var(--radius-sm);
    }
}

/* ============================================
   CUSTOM PLACES AUTOCOMPLETE
   ============================================ */
.pac-container { display: none !important; }

.places-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border: 1.5px solid var(--primary-light);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    max-height: 380px;
    overflow-y: auto;
    z-index: 1100;
    display: none;
    scrollbar-width: thin;
    overscroll-behavior: contain;
}

.places-dropdown.active {
    display: block;
    animation: dropdownSlide 0.15s ease;
}

@keyframes dropdownSlide {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.places-cat {
    border-bottom: 1px solid var(--border-light);
}

.places-cat:last-child {
    border-bottom: none;
}

.places-cat-label {
    padding: 10px 16px 5px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 1;
}

.place-item {
    padding: 10px 16px 10px 18px;
    min-height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.1s;
    border-left: 3px solid transparent;
}

.place-item:hover,
.place-item--active {
    background: var(--accent-light);
    border-left-color: var(--primary);
}

.place-item:active {
    background: rgba(13, 71, 161, 0.08);
}

.place-icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.place-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.place-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.place-name mark {
    background: rgba(13, 71, 161, 0.12);
    color: var(--primary);
    padding: 0 1px;
    border-radius: 2px;
    font-weight: 700;
}

.place-addr {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.places-empty {
    padding: 24px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* ============================================
   COUNTER COMPONENTS
   ============================================ */
.counter-controls {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    background: var(--bg-alt);
    border-radius: 6px;
    padding: 1px;
}

.counter-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
    line-height: 1;
    transition: all 0.12s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    -webkit-appearance: none;
    appearance: none;
}

.counter-btn:hover,
.counter-btn:active {
    background: var(--primary);
    color: white;
}

.counter-value {
    font-weight: 700;
    font-size: 0.9375rem;
    min-width: 26px;
    text-align: center;
    color: var(--text);
    user-select: none;
}

.counter-suffix {
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-right: 2px;
}

/* ============================================
   DATE & TIME SECTION
   ============================================ */

/* ── Schedule Toggle (Immediate / Schedule) ── */
.schedule-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-lighter, #f1f5f9);
}
.sched-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: background .2s, color .2s;
    -webkit-tap-highlight-color: transparent;
}
.sched-btn.active {
    background: var(--primary);
    color: #fff;
}
.sched-btn i { font-size: 0.875rem; }

/* ── Date & Time row (shared by pickup and return) ── */
.datetime-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.datetime-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.datetime-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding-left: 2px;
}

.datetime-input {
    min-height: 52px !important;
    padding: 12px 14px !important;
    font-size: 16px !important; /* Prevents iOS zoom */
    -webkit-appearance: none;
    appearance: none;
    line-height: 1.4;
    color: var(--text);
    background: var(--bg);
}

/* iOS/Safari specific date/time fix */
input[type="date"].datetime-input,
input[type="time"].datetime-input {
    min-height: 52px;
    padding: 12px 14px;
}


/* Compact form groups */
.form-group.compact {
    margin-bottom: 12px;
}

.form-group.compact label {
    margin-bottom: 5px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
}

.form-group.mini {
    margin-bottom: 0;
}

/* ── Disposal Step 2 Info Banner ── */
.disposal-step2-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(0, 188, 212, 0.06);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 0.9375rem;
    color: var(--text);
}

.disposal-step2-info .disposal-info-icon {
    font-size: 1.125rem;
    flex-shrink: 0;
    color: var(--primary);
}

/* ============================================
   SERVICE TYPE TABS
   ============================================ */

/* Round Trip Toggle */
.round-trip-option {
    margin-bottom: 8px;
}

.rt-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #f1f5f9;
    border: 1.5px solid #cbd5e1;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.4,0,.2,1);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    font-family: inherit;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.rt-toggle:hover {
    border-color: #111827;
    background: #e8f0fe;
    color: #111827;
}

.rt-toggle-track {
    position: relative;
    width: 34px;
    height: 18px;
    background: #94a3b8;
    border-radius: 18px;
    transition: background 0.25s ease;
    flex-shrink: 0;
}

.rt-toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.rt-toggle-text {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.rt-toggle-text i {
    font-size: 0.875rem;
}

.rt-toggle-save {
    background: #dcfce7;
    color: #15803d;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 0.01em;
    line-height: 1.4;
    white-space: nowrap;
}

/* Active state */
.rt-toggle.checked {
    border-color: #111827;
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f0fe 100%);
    color: #111827;
}

.rt-toggle.checked .rt-toggle-track {
    background: #1F2937;
}

.rt-toggle.checked .rt-toggle-knob {
    transform: translateX(16px);
}

.rt-toggle.checked .rt-toggle-save {
    background: #15803d;
    color: #fff;
}

/* Prices Valid Today Banner (Step 2) */
.prices-today-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 8px 14px;
    font-size: 0.8rem;
    color: #1a3a6b;
    background: #f0f4ff;
    border: 1px solid #c7d4f0;
    border-radius: 8px;
    line-height: 1.4;
    opacity: 0;
    animation: ptb-fadein 0.4s ease forwards;
}
.prices-today-banner .ptb-icon {
    font-size: 0.875rem;
    line-height: 1;
    flex-shrink: 0;
    color: #1F2937;
}
.prices-today-banner .ptb-text {
    font-weight: 600;
}
@keyframes ptb-fadein {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Pricing Trust Notes (Step 2) */
.pricing-trust-notes {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 14px;
    margin-bottom: 6px;
    padding: 0 4px;
}
.pricing-note {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 3px 0;
    font-size: 0.7rem;
    color: #64748b;
    line-height: 1.35;
}
.pricing-note .pn-icon {
    font-size: 0.75rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    line-height: 1;
}
.pricing-note.all-inclusive .pn-icon {
    color: #16a34a;
    opacity: 1;
}
.pricing-note.dynamic-pricing .pn-icon {
    color: #b45309;
    opacity: 1;
}
.pricing-note.airport-wait .pn-icon {
    opacity: 1;
}

/* Return Fields */
.return-fields {
    display: none;
    margin-bottom: 12px;
    padding: 14px;
    background: rgba(13, 71, 161, 0.03);
    border: 1px solid rgba(13, 71, 161, 0.1);
    border-radius: var(--radius);
    animation: fadeIn 0.25s ease;
}

.return-fields.visible {
    display: block;
}

.return-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 10px;
    padding-left: 2px;
}

/* Hours field for disposal */
.hours-field {
    display: none;
    margin-bottom: 10px;
}

.hours-field.visible {
    display: block;
}

.hours-field .counter-row {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
}

/* Disposal info */

/* ============================================
   ACCESSIBILITY — FOCUS INDICATORS
   ============================================ */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.counter-btn:focus-visible,
.fleet-tab:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.submit-btn:focus-visible,
.btn-select-vehicle:focus-visible,
.nav-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.15);
}

.form-control:focus-visible {
    outline: none; /* handled by border + box-shadow in .form-control:focus */
}

.vehicle-card:focus-within {
    border-color: var(--primary-light);
}

/* Mobile conversion boost: keep step actions reachable */
@media (max-width: 768px) {
    .funnel-step .funnel-buttons {
        position: sticky;
        bottom: 0;
        z-index: 4;
        margin-left: -2px;
        margin-right: -2px;
        padding: 10px 2px calc(8px + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(180deg, rgba(248, 251, 255, 0.5) 0%, #f8fbff 28%, #f8fbff 100%);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    /* Safe area insets for modern iPhones */
    .hero-funnel {
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .footer {
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }
}

/* Skip focus outline on mouse clicks for clean aesthetics */
:focus:not(:focus-visible) {
    outline: none;
}

/* ============================================
   PAYMENT HELP CARD (shared: payment-success & my-booking)
   ============================================ */
.ph-card {
    position: relative;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1.5px solid #93C5FD;
    border-radius: 16px;
    padding: 28px 24px 24px;
    margin-top: 20px;
    text-align: left;
    overflow: hidden;
}
.ph-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #2563EB, #3B82F6);
    border-radius: 4px 0 0 4px;
}
.ph-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.ph-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}
.ph-icon svg { color: #2563EB; }
.ph-header-text h3 {
    font-size: 1.0625rem;
    font-weight: 800;
    color: #1E3A5F;
    margin: 0 0 2px;
    line-height: 1.3;
}
.ph-header-text p {
    font-size: 0.8125rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}
.ph-summary {
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid #E2E8F0;
}
.ph-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.8125rem;
    line-height: 1.4;
}
.ph-row-label {
    color: #64748B;
    flex-shrink: 0;
    min-width: 80px;
}
.ph-row-value {
    color: #0F172A;
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}
.ph-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: #2563EB;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
    font-family: inherit;
    box-sizing: border-box;
}
.ph-cta:hover { background: #1D4ED8; box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35); }
.ph-cta:active { transform: scale(0.985); }
.ph-cta svg { flex-shrink: 0; }
.ph-reassurance {
    text-align: center;
    margin-top: 12px;
    font-size: 0.75rem;
    color: #64748B;
    line-height: 1.4;
}

@media (max-width: 480px) {
    .ph-card { padding: 22px 16px 20px; margin-top: 16px; }
    .ph-icon { width: 42px; height: 42px; }
    .ph-header-text h3 { font-size: 0.9375rem; }
    .ph-summary { padding: 12px 14px; }
    .ph-row { font-size: 0.75rem; }
    .ph-cta { padding: 13px 20px; font-size: 0.875rem; }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .nav, .nav-overlay, .nav-toggle, .footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .hero-funnel {
        padding: 20px !important;
        background: white !important;
        color: black !important;
    }
}

/* ─── Step 2: Trust Strip ─── */
.step2-trust-strip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 18px 0 10px;
    padding: 14px 16px;
    background: #f0faf4;
    border: 1px solid #c8e6d0;
    border-radius: 10px;
}
.s2ts-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #1b5e20;
    line-height: 1.4;
}
.s2ts-item i {
    font-size: 15px;
    flex-shrink: 0;
    color: #2e7d32;
}
.s2ts-cancel i { color: #2e7d32; }
.s2ts-nocharge i { color: #1F2937; }
.s2ts-reviews i { color: #f9a825; }

/* ─── Step 3: Reassurance ─── */
.step3-reassurance {
    margin: 0 0 20px;
    padding: 14px 16px;
    background: #f5f8ff;
    border: 1px solid #d0ddf5;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.s3r-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #1a3a6b;
    line-height: 1.4;
}
.s3r-badge i {
    font-size: 15px;
    flex-shrink: 0;
    color: #1F2937;
}
.s3r-nocommit {
    font-size: 12px;
    color: #5a6a7a;
    margin: 4px 0 0;
    line-height: 1.5;
    font-style: italic;
}

/* ─── Step 3: Trust Badges ─── */
.step3-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 14px 0 0;
    padding: 14px 16px;
    background: #f0faf4;
    border: 1px solid #c8e6d0;
    border-radius: 10px;
}
.s4tb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #1b5e20;
    line-height: 1.4;
}
.s4tb-item i {
    font-size: 15px;
    flex-shrink: 0;
    color: #2e7d32;
}
.s4tb-item:first-child i { color: #1F2937; }
.s4tb-item:nth-child(3) i { color: #1F2937; }

/* ─── Min Advance Error → Smart Suggestion ─── */
.min-advance-error p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.5;
}
.mae-suggest {
    font-weight: 600;
    color: #1F2937;
}
.mae-btn {
    margin-top: 6px;
    width: 100%;
    font-size: 15px;
    padding: 12px 20px;
}
