/* Supplementary Tailwind-like utilities to complement /public/tailwind.css */

/* ═══════════════════════════════════════════════════════════
   Design tokens — Green palette
   ═══════════════════════════════════════════════════════════ */
:root {
  --background: #ffffff;
  --foreground: #171717;
  --accent: #388E3C;
  --accent-light: #E8F5E9;
  --accent-dark: #2E7D32;
  --accent-contrast: #ffffff;
  --dark: #1a1f16;
  --dark-light: #2a3024;
  --success: #34C759;
  --danger: #FF3B30;
  --warning: #FF9500;
  --green-50: #E8F5E9;
  --green-100: #C8E6C9;
  --green-200: #A5D6A7;
  --green-300: #81C784;
  --green-400: #66BB6A;
  --green-500: #4CAF50;
  --green-600: #43A047;
  --green-700: #388E3C;
  --green-800: #2E7D32;
  --green-900: #1B5E20;
  --gray-50: #FAFAF8;
  --gray-100: #F1F1EE;
  --gray-200: #E4E4DF;
  --gray-300: #C9C9C4;
  --gray-400: #9E9E98;
  --gray-500: #6B6B66;
  --gray-600: #4A4A46;
  --gray-700: #333330;
  --font-main: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(27,94,32,0.06);
  --shadow-md: 0 4px 16px rgba(27,94,32,0.08);
  --shadow-lg: 0 8px 32px rgba(27,94,32,0.10);
  --shadow-xl: 0 16px 48px rgba(27,94,32,0.12);
}

html, body {
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
}

/* Fixed header spacer — push content below fixed 64px header */
body { padding-top: 64px; }
body:has(.booking-page) { padding-top: 0; } /* booking page handles its own offset */

/* ═══════════════════════════════════════════════════════════
   Floating CTA buttons (mobile)
   ═══════════════════════════════════════════════════════════ */
.floating-cta-wrap {
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
}
.floating-book-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 28px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(56,142,60,0.4);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.floating-book-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(56,142,60,0.5); }
.floating-phone-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #34C759; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(52,199,89,0.4);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.floating-phone-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(52,199,89,0.5); }
@media (min-width: 769px) { .floating-cta-wrap { display: none !important; } }

/* Price cards hover */
.hp-price-card:hover { border-color: var(--accent); box-shadow: 0 2px 8px rgba(56,142,60,0.1); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════
   Homepage — responsive layout
   ═══════════════════════════════════════════════════════════ */
.hp-root { min-height: 100vh; background: #fff; }

/* Hero */
.hp-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 16px 50px;
}
.hp-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(56,142,60,0.15), transparent 60%);
  pointer-events: none;
}
.hp-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hp-hero-left { width: 100%; }
.hp-hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.hp-hero-right { display: none; }

/* Schedule */
.hp-schedule-wrap { margin-bottom: 16px; position: relative; }
.hp-schedule-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px; padding: 10px 16px; cursor: pointer;
  font-size: 14px; font-weight: 500; color: #fff;
}
.hp-chevron-open { transform: rotate(180deg); }
.hp-schedule-dropdown {
  position: absolute; z-index: 30; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  padding: 20px; min-width: 280px; width: 100%; max-width: 360px;
}
.hp-schedule-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.hp-schedule-tab {
  flex: 1; padding: 10px 16px; border-radius: 24px; border: none;
  cursor: pointer; font-size: 14px; font-weight: 600;
  background: #f3f3f3; color: #666;
}
.hp-schedule-tab--active { background: var(--accent); color: #fff; }
.hp-schedule-inputs { display: flex; gap: 12px; flex-wrap: wrap; }
.hp-schedule-input {
  flex: 1; min-width: 120px;
  padding: 10px 12px; border-radius: 10px;
  border: 1px solid #e0e0e0; font-size: 14px; outline: none;
}
.hp-schedule-hint { font-size: 13px; color: #888; margin: 0; }

/* PUDO */
.hp-pudo { background: #fff; border-radius: 12px; position: relative; }
.hp-pudo-field { position: relative; }
.hp-pudo-row { display: flex; align-items: center; padding: 0 16px; }
.hp-pudo-icon { flex-shrink: 0; }
.hp-pudo-input {
  flex: 1; padding: 14px 12px; border: none; background: transparent;
  font-size: 16px; outline: none; color: #000; width: 100%;
}
.hp-pudo-divider { height: 1px; background: #e0e0e0; margin-left: 48px; margin-right: 16px; }
.hp-pudo-connector {
  position: absolute; left: 24px; top: 20px; bottom: 20px;
  width: 2px; background: #e0e0e0; pointer-events: none; z-index: 1;
}
.hp-suggestions {
  position: absolute; z-index: 20; left: 0; right: 0; top: 100%;
  background: white; border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15); max-height: 240px;
  overflow: auto; list-style: none; padding: 0; margin: 0;
}
.hp-suggestion {
  padding: 12px 16px; cursor: pointer; font-size: 14px;
  color: #1a1a1a; border-bottom: 1px solid #f0f0f0;
  display: flex; align-items: center; gap: 12px;
}
.hp-suggestion:hover { background: #f9f9f9; }
.hp-suggestion-icon { flex-shrink: 0; }
.hp-cta-btn {
  margin-top: 16px; width: 100%; padding: 16px 24px;
  font-size: 16px; border-radius: 12px;
  background-color: var(--accent); color: #ffffff; border: none; cursor: pointer; font-weight: 600;
}

/* Hero card */
.hp-hero-card {
  background: rgba(255,255,255,0.05); border-radius: 16px;
  padding: 32px; text-align: center; border: 1px solid rgba(255,255,255,0.1);
}
.hp-hero-card-label { color: #999; font-size: 14px; margin: 0; }
.hp-hero-card-types {
  color: white; font-size: 32px; font-weight: 800; margin: 8px 0;
}
.hp-hero-card-types span { color: var(--accent); }
.hp-hero-card-sub { color: #666; font-size: 13px; margin: 0; }
.hp-hero-logo { width: 200px; object-fit: contain; margin-bottom: 24px; opacity: 0.9; }

/* Features */
.hp-features { background: #f6f6f6; padding: 48px 16px; }
.hp-features-inner { max-width: 1024px; margin: 0 auto; }
.hp-features-title {
  font-size: 26px; font-weight: 700; text-align: center;
  margin-bottom: 32px; color: #000;
}
.hp-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.hp-feature-card {
  background: #fff; border-radius: 16px; padding: 24px; text-align: left;
}
.hp-feature-step {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; margin-bottom: 16px;
}
.hp-feature-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: #000; }
.hp-feature-desc { font-size: 14px; color: #666; margin: 0; line-height: 1.5; }

/* Bottom CTA */
.hp-bottom-cta { background: var(--dark); padding: 48px 16px; text-align: center; }
.hp-bottom-cta-inner { max-width: 640px; margin: 0 auto; }
.hp-bottom-logo { height: 40px; margin-bottom: 20px; }
.hp-bottom-title { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hp-bottom-desc { font-size: 15px; color: #999; margin-bottom: 24px; }
.hp-bottom-btn {
  display: inline-block; padding: 14px 40px;
  border-radius: 12px; font-size: 16px; text-decoration: none;
}

/* ── Desktop (768px+) ── */
@media (min-width: 768px) {
  .hp-hero { padding: 60px 16px 80px; }
  .hp-hero-inner {
    flex-direction: row;
    gap: 48px;
    align-items: center;
  }
  .hp-hero-left { flex: 0 0 50%; max-width: 50%; }
  .hp-hero-right {
    display: flex; flex: 1;
    flex-direction: column; align-items: center; justify-content: center;
  }
  .hp-hero-title { font-size: 39px; margin-bottom: 36px; letter-spacing: -1px; }
  .hp-features { padding: 64px 16px; }
  .hp-features-title { font-size: 36px; margin-bottom: 48px; }
  .hp-features-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .hp-feature-card { padding: 32px; }
  .hp-feature-step { width: 48px; height: 48px; font-size: 20px; margin-bottom: 20px; }
  .hp-feature-title { font-size: 20px; }
  .hp-feature-desc { font-size: 15px; }
  .hp-bottom-cta { padding: 64px 16px; }
  .hp-bottom-logo { height: 48px; margin-bottom: 24px; }
  .hp-bottom-title { font-size: 28px; }
  .hp-bottom-btn { padding: 16px 48px; }
}

/* ═══════════════════════════════════════════════════════════
   New Homepage — Green palette (yhp-* classes)
   ═══════════════════════════════════════════════════════════ */

.yhp-root { min-height: 100vh; background: #fff; }
.yhp-desktop-only { display: none !important; }
.yhp-mobile-only { display: flex !important; }

/* Hero */
.yhp-hero {
  padding: 80px 1rem 40px;
  background: linear-gradient(168deg, var(--green-50) 0%, #fff 55%, var(--gray-50) 100%);
  position: relative; overflow: hidden;
}
.yhp-hero-bg-circle {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.yhp-hero-bg-circle--1 {
  top: -120px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(76,175,80,0.07) 0%, transparent 70%);
}
.yhp-hero-bg-circle--2 {
  bottom: -80px; left: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(56,142,60,0.05) 0%, transparent 70%);
}
.yhp-hero-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: center; position: relative; z-index: 1;
}
.yhp-hero-left {}
.yhp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-50); border: 1px solid var(--green-200);
  padding: 5px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--green-800);
  margin-bottom: 0.8rem;
}
.yhp-hero-badge-dot {
  width: 8px; height: 8px; background: var(--green-500);
  border-radius: 50%; animation: yhp-pulse 2s infinite;
}
@keyframes yhp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.yhp-hero-title {
  font-family: var(--font-main);
  font-size: 1.6rem; font-weight: 700;
  line-height: 1.2; color: var(--dark);
  margin-bottom: 0.8rem; letter-spacing: -0.3px;
}
.yhp-hero-title em {
  font-style: normal; color: var(--green-700);
  position: relative;
}
.yhp-hero-title em::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 3px; background: var(--green-300); border-radius: 2px;
}
.yhp-hero-text {
  font-size: 15px; color: var(--gray-500);
  margin-bottom: 1rem; max-width: 500px; line-height: 1.6;
}
.yhp-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

/* Buttons */
.yhp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-main); font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s ease;
}
.yhp-btn-primary {
  background: var(--green-700); color: white;
  box-shadow: 0 2px 12px rgba(56,142,60,0.25);
}
.yhp-btn-primary:hover {
  background: var(--green-800);
  box-shadow: 0 4px 20px rgba(56,142,60,0.30);
  transform: translateY(-1px);
}
.yhp-btn-outline {
  background: #fff; color: var(--green-800);
  border: 1.5px solid var(--green-300);
}
.yhp-btn-outline:hover {
  border-color: var(--green-600);
  background: var(--green-50);
}

/* Booking card */
.yhp-hero-right { }
.yhp-booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(27,94,32,0.06);
  padding: 1.2rem; position: relative;
}
.yhp-booking-card-bar {
  position: absolute; top: -1px; left: 24px; right: 24px;
  height: 3px; background: linear-gradient(90deg, var(--green-400), var(--green-700));
  border-radius: 0 0 3px 3px;
}
.yhp-booking-card-header {
  font-weight: 600; font-size: 16px; color: var(--dark);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 8px;
}
.yhp-input-group { margin-bottom: 10px; }
.yhp-input-label {
  display: none; font-size: 12px; font-weight: 600;
  color: var(--gray-400); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 6px;
}
.yhp-input {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--green-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-main); font-size: 15px;
  color: var(--gray-700); background: #fff;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.yhp-input:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
}
.yhp-input::placeholder { color: var(--gray-400); }
.yhp-suggestions {
  position: absolute; z-index: 20; left: 0; right: 0; top: 100%;
  background: white; border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); max-height: 240px;
  overflow: auto; list-style: none; padding: 0; margin: 0;
  border: 1px solid var(--gray-200); border-top: none;
}
.yhp-suggestion {
  padding: 12px 16px; cursor: pointer; font-size: 14px;
  color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 12px;
}
.yhp-suggestion:hover { background: var(--green-50); }
.yhp-suggestion-icon { flex-shrink: 0; }

/* Vehicle select */
.yhp-vehicle-select {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
  margin-bottom: 1.2rem;
}
.yhp-vehicle-option {
  padding: 8px 6px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  text-align: center; cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--gray-500);
  transition: all 0.2s; background: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-family: var(--font-main);
}
.yhp-vehicle-option.active {
  border-color: var(--green-600);
  background: var(--green-50);
  color: var(--green-800);
}
.yhp-vehicle-option:hover:not(.active) { border-color: var(--green-300); }
.yhp-vehicle-icon { font-size: 20px; display: block; margin-bottom: 4px; }

/* Schedule toggle */
.yhp-schedule-toggle {
  display: flex; gap: 0; margin-bottom: 14px;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1.5px solid var(--gray-200);
}
.yhp-schedule-btn {
  flex: 1; padding: 10px 0; font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; font-family: var(--font-main);
  background: #fff; color: var(--gray-500); transition: all 150ms ease;
}
.yhp-schedule-btn + .yhp-schedule-btn { border-left: 1.5px solid var(--gray-200); }
.yhp-schedule-btn.active {
  background: var(--green-700); color: #fff;
}

/* Book button */
.yhp-btn-book {
  width: 100%; padding: 14px; border: none;
  background: var(--green-700); color: white;
  border-radius: var(--radius-sm); font-family: var(--font-main);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(56,142,60,0.20);
}
.yhp-btn-book:hover {
  background: var(--green-800);
  box-shadow: 0 4px 20px rgba(56,142,60,0.28);
}
@media (max-width: 767px) {
  .yhp-btn-book { display: none; }
}

/* Promo strip */
.yhp-promo-strip {
  margin-top: 14px; padding: 10px;
  background: var(--green-50); border-radius: var(--radius-sm);
  text-align: center; font-size: 13px; color: var(--green-800);
  border: 1px dashed var(--green-300);
}

/* Trust bar */
.yhp-trust-bar {
  padding: 2.5rem 2rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.yhp-trust-bar-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem;
  text-align: center;
}
.yhp-trust-val {
  font-size: 28px; font-weight: 700;
  color: var(--green-700);
  font-family: var(--font-main);
}
.yhp-trust-label {
  font-size: 13px; color: var(--gray-500);
  margin-top: 4px; font-weight: 500;
}

/* Section */
.yhp-section {
  padding: 5rem 2rem;
  max-width: 1120px; margin: 0 auto;
}
.yhp-section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--green-700);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
}
.yhp-section-label::before {
  content: ''; width: 20px; height: 2px;
  background: var(--green-500); border-radius: 2px;
}
.yhp-section-title {
  font-family: var(--font-main);
  font-size: 2rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.6rem;
  line-height: 1.2;
}
.yhp-section-sub {
  font-size: 16px; color: var(--gray-400);
  margin-bottom: 2.5rem; max-width: 560px;
}

/* Routes grid */
.yhp-routes-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.yhp-route-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  display: flex; flex-direction: column; gap: 10px;
  transition: all 0.25s;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.yhp-route-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--green-500);
  transform: scaleY(0); transition: transform 0.3s;
  border-radius: 0 2px 2px 0;
}
.yhp-route-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
}
.yhp-route-card:hover::after { transform: scaleY(1); }
.yhp-route-from-to {
  font-weight: 600; font-size: 14px; color: var(--dark);
  display: flex; align-items: center; gap: 8px;
}
.yhp-route-arrow { color: var(--green-500); font-size: 16px; }
.yhp-route-meta {
  display: flex; gap: 1rem; font-size: 13px; color: var(--gray-400);
}
.yhp-route-price {
  font-weight: 700; font-size: 20px; color: var(--green-700);
  font-family: var(--font-main);
}

/* Avantages */
.yhp-avantages-bg {
  background: linear-gradient(180deg, #fff 0%, var(--green-50) 100%);
  padding: 5rem 2rem;
}
.yhp-avantages-inner {
  max-width: 1120px; margin: 0 auto;
}
.yhp-avantages-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.yhp-avantage-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: all 0.3s;
}
.yhp-avantage-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.yhp-avantage-icon {
  width: 48px; height: 48px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 1.2rem;
}
.yhp-avantage-title {
  font-family: var(--font-main);
  font-size: 1.2rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.6rem;
}
.yhp-avantage-desc {
  font-size: 14px; color: var(--gray-500);
  line-height: 1.7; margin: 0;
}

/* Steps */
.yhp-steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  position: relative;
}
.yhp-steps-line { display: none; }
.yhp-step { text-align: center; position: relative; }
.yhp-step-num {
  width: 64px; height: 64px; margin: 0 auto 1.2rem;
  background: var(--green-700); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main);
  font-size: 24px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(56,142,60,0.2);
  position: relative; z-index: 1;
}
.yhp-step-title {
  font-weight: 600; font-size: 16px; color: var(--dark);
  margin-bottom: 0.4rem;
}
.yhp-step-desc {
  font-size: 14px; color: var(--gray-400);
  max-width: 260px; margin: 0 auto;
}

/* FAQ */
.yhp-faq-list { max-width: 720px; }
.yhp-faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.2rem 0;
}
.yhp-faq-q {
  font-weight: 600; font-size: 16px; color: var(--dark);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; user-select: none;
}
.yhp-faq-icon {
  font-size: 20px; color: var(--green-600);
  font-weight: 400; transition: transform 0.3s;
  flex-shrink: 0; margin-left: 1rem;
}
.yhp-faq-a {
  font-size: 14px; color: var(--gray-500);
  line-height: 1.7; padding-top: 0;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}
.yhp-faq-item.open .yhp-faq-a { max-height: 200px; padding-top: 0.8rem; }
.yhp-faq-item.open .yhp-faq-icon { transform: rotate(45deg); }

/* CTA section */
.yhp-cta-section {
  background: var(--green-800);
  padding: 4rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.yhp-cta-bg {
  position: absolute;
  top: -50%; left: -20%; width: 140%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(76,175,80,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.yhp-cta-title {
  font-family: var(--font-main);
  font-size: 2rem; color: #fff;
  margin-bottom: 0.6rem; position: relative;
}
.yhp-cta-desc {
  color: var(--green-200); font-size: 16px;
  margin-bottom: 2rem; position: relative;
}
.yhp-cta-actions {
  display: flex; gap: 12px; justify-content: center;
  position: relative; flex-wrap: wrap;
}
.yhp-btn-white {
  background: #fff; color: var(--green-800);
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  text-decoration: none; display: inline-flex;
  transition: all 0.25s;
}
.yhp-btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.yhp-btn-ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px;
  text-decoration: none; display: inline-flex;
  transition: all 0.25s;
}
.yhp-btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* ── Desktop (768px+) ── */
@media (min-width: 768px) {
  .yhp-hero { padding: 120px 2rem 60px; }
  .yhp-hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
  .yhp-hero-title { font-size: 2.6rem; line-height: 1.15; }
  .yhp-hero-text { font-size: 17px; }
  .yhp-hero-badge { font-size: 13px; padding: 6px 14px; margin-bottom: 1.2rem; }
  .yhp-booking-card { padding: 2rem; }
  .yhp-input-label { display: block; }
  .yhp-desktop-only { display: flex !important; }
  .yhp-mobile-only { display: none !important; }
  .yhp-trust-bar-inner { grid-template-columns: repeat(4,1fr); }
  .yhp-routes-grid { grid-template-columns: repeat(3,1fr); }
  .yhp-avantages-grid { grid-template-columns: repeat(3,1fr); }
  .yhp-steps-grid { grid-template-columns: repeat(3,1fr); }
  .yhp-steps-line {
    display: block; position: absolute;
    top: 32px; left: 16%; right: 16%;
    height: 2px; background: var(--green-200);
  }
  .yhp-section-title { font-size: 2.2rem; }
  .yhp-cta-title { font-size: 2.2rem; }
}

/* ═══════════════════════════════════════════════════════════
   Devis (Quote) Page
   ═══════════════════════════════════════════════════════════ */
.yhp-devis-hero {
  background: linear-gradient(168deg, var(--green-50) 0%, #fff 60%);
  padding: 100px 2rem 48px; text-align: center;
  position: relative; overflow: hidden;
}
.yhp-devis-hero-inner { max-width: 700px; margin: 0 auto; }
.yhp-devis-title {
  font-family: var(--font-main);
  font-size: 2rem; font-weight: 600; color: var(--dark);
  margin-bottom: 0.8rem; line-height: 1.2;
}
.yhp-devis-subtitle {
  font-size: 16px; color: var(--gray-500); max-width: 520px;
  margin: 0 auto; line-height: 1.6;
}
.yhp-devis-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.yhp-devis-form-card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(27,94,32,0.06);
  padding: 2rem; position: relative;
}
.yhp-devis-form-title {
  font-weight: 600; font-size: 18px; color: var(--dark);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 8px;
}
.yhp-devis-options { margin-bottom: 16px; }
.yhp-devis-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 20px;
  border: 1.5px solid var(--gray-200); cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--gray-600);
  transition: all 0.2s; background: white;
}
.yhp-devis-chip:has(input:checked) {
  border-color: var(--green-600); background: var(--green-50);
  color: var(--green-800);
}
.yhp-devis-chip input { display: none; }
.yhp-devis-hint {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 14px; border-radius: var(--radius-sm);
  background: var(--green-50); border: 1px solid var(--green-200);
  font-size: 13px; color: var(--green-800); line-height: 1.5;
}
.yhp-devis-results {}
.yhp-devis-route-info {
  display: flex; gap: 16px; margin-bottom: 16px;
}
.yhp-devis-route-stat {
  flex: 1; display: flex; align-items: center; gap: 10px;
  background: white; border-radius: var(--radius-md);
  padding: 14px; border: 1px solid var(--gray-200);
}
.yhp-devis-vehicle-card {
  display: flex; align-items: center; justify-content: space-between;
  background: white; border-radius: var(--radius-md);
  padding: 16px 20px; margin-bottom: 10px;
  border: 1.5px solid var(--gray-200);
  cursor: pointer; transition: all 0.2s;
}
.yhp-devis-vehicle-card:hover { border-color: var(--green-300); }
.yhp-devis-vehicle-card.active {
  border-color: var(--green-600);
  background: var(--green-50);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.10);
}
.yhp-devis-vehicle-left {
  display: flex; align-items: center; gap: 12px;
}
.yhp-devis-vehicle-price {
  font-size: 22px; font-weight: 800; color: var(--green-700);
  font-family: var(--font-main);
}
.yhp-devis-breakdown {
  background: white; border-radius: var(--radius-md);
  padding: 20px; border: 1px solid var(--gray-200);
  margin-top: 16px;
}
.yhp-devis-empty {
  text-align: center; padding: 48px 24px;
  background: white; border-radius: var(--radius-lg);
  border: 2px dashed var(--gray-200);
}
.yhp-devis-empty p {
  font-weight: 600; font-size: 16px; color: var(--dark);
  margin: 16px 0 4px;
}
.yhp-devis-empty span {
  font-size: 14px; color: var(--gray-400);
}
@media (min-width: 768px) {
  .yhp-devis-hero { padding: 120px 2rem 56px; }
  .yhp-devis-title { font-size: 2.5rem; }
  .yhp-devis-grid { grid-template-columns: 1fr 1.2fr; }
}

/* Sticky CTA */
.yhp-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
  padding: 12px 16px; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; justify-content: center;
}
.yhp-sticky-cta-btn {
  display: block; width: 100%; max-width: 400px;
  padding: 14px 24px; border-radius: 12px;
  background: var(--green-700); color: white;
  font-weight: 700; font-size: 16px; text-align: center;
  text-decoration: none; font-family: var(--font-main);
  box-shadow: 0 4px 16px rgba(56,142,60,0.3);
  transition: background 0.15s;
}
.yhp-sticky-cta-btn:hover { background: var(--green-800); }
@media (min-width: 768px) {
  .yhp-sticky-cta { display: none; }
}

/* Colors */
.bg-black { background-color: #000000; }
.bg-red-600 { background-color: #dc2626; }
.bg-green-600 { background-color: #16a34a; }
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.border { border-width: 1px; border-style: solid; }
.border-zinc-300 { border-color: #d4d4d8; }

/* Hover states (escaped colons) */
.hover\:bg-red-700:hover { background-color: #b91c1c; }
.hover\:bg-green-700:hover { background-color: #15803d; }
.hover\:bg-zinc-800:hover { background-color: #27272a; }
.hover\:bg-zinc-100:hover { background-color: #f4f4f5; }

/* Sizes */
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.px-5 { padding-inline: calc(var(--spacing, 0.25rem) * 5); }

/* Transitions */
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 150ms;
  transition-timing-function: var(--ease-in-out, cubic-bezier(.4,0,.2,1));
}

/* Focus visible helpers */
.focus-visible\:outline-none:focus-visible { outline: none; }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); }
.focus-visible\:ring-offset-2:focus-visible { outline-offset: 2px; }

/* Disabled variants */
.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:pointer-events-none:disabled { pointer-events: none; }

/* ═══════════════════════════════════════════════════════════
   Booking Page — full-height two-column layout
   ═══════════════════════════════════════════════════════════ */

.booking-page {
  display: flex;
  margin-top: 64px; /* fixed header height */
  height: calc(100vh - 64px); /* viewport minus fixed header */
  overflow: hidden;
  background: #f7f7fa;
}

.booking-left {
  width: 440px;
  min-width: 380px;
  max-width: 480px;
  height: 100%;
  overflow-y: auto;
  background: #ffffff;
  border-right: 1px solid #e8e8ee;
  scrollbar-width: thin;
  scrollbar-color: #d4d4d8 transparent;
}
.booking-left::-webkit-scrollbar { width: 5px; }
.booking-left::-webkit-scrollbar-thumb { background: #d4d4d8; border-radius: 4px; }

/* Mobile: single column, scrollable */
@media (max-width: 767px) {
  .booking-page {
    flex-direction: column;
    height: auto;
    min-height: calc(100vh - 64px);
    overflow: visible;
  }
  .booking-left {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: auto;
    overflow-y: visible;
    border-right: none;
  }
  .booking-right {
    display: none; /* fallback, composant non rendu en React sur mobile */
  }
}

.booking-left-inner {
  padding: 14px 16px 20px;
}

.booking-right {
  flex: 1;
  height: 100%;
  position: relative;
}

/* Force Leaflet to fill the container */
.booking-right .leaflet-container {
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

/* ── Sections ── */
.bk-section { margin-bottom: 14px; }
.bk-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ── Route summary ── */
.bk-route-card {
  display: flex;
  gap: 12px;
  padding: 10px 14px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #efefef;
}
.bk-route-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18px;
  padding-top: 4px;
}
.bk-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bk-dot--pickup { background: #34C759; border: 2px solid white; box-shadow: 0 0 0 1px #34C759; }
.bk-dot--dest { background: #FF3B30; border: 2px solid white; box-shadow: 0 0 0 1px #FF3B30; }
.bk-dot-line {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: linear-gradient(to bottom, #34C759, #FF3B30);
  margin: 4px 0;
  border-radius: 1px;
}
.bk-route-info { flex: 1; position: relative; }
.bk-label {
  font-size: 10px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 2px;
}
.bk-addr {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
}
.bk-addr-input {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  background: transparent;
  border: none;
  outline: none;
  padding: 2px 0;
  line-height: 1.3;
}
.bk-addr-input::placeholder { color: #aaa; font-weight: 400; }
.bk-suggestions {
  position: absolute;
  left: 0; right: 0;
  background: white;
  border: 1px solid #e0e0e8;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 50;
  margin-top: 2px;
  max-height: 280px;
  overflow-y: auto;
}
.bk-suggestion-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  font-size: 13px;
  color: #1a1a1a;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f5;
}
.bk-suggestion-item:last-child { border-bottom: none; }
.bk-suggestion-item:hover { background: #f5f5fa; }
.bk-divider {
  height: 1px;
  background: #e8e8ee;
  margin: 6px 0;
}

/* Stats */
.bk-stats {
  display: flex;
  align-items: center;
  background: #f0f0f5;
  border-radius: 10px;
  padding: 8px 0;
  margin-top: 8px;
}
.bk-stat {
  flex: 1;
  text-align: center;
}
.bk-stat-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}
.bk-stat-label {
  display: block;
  font-size: 10px;
  color: #999;
  margin-top: 1px;
}
.bk-stat-sep {
  width: 1px;
  height: 28px;
  background: #d4d4d8;
}

/* ── Vehicle selector ── */
.bk-vehicles {
  display: flex;
  gap: 8px;
}
.bk-vehicle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 6px 8px;
  border-radius: 12px;
  border: 2px solid #efefef;
  background: #fafafa;
  cursor: pointer;
  transition: all 150ms ease;
  text-align: center;
}
.bk-vehicle:hover {
  border-color: #ddd;
  background: #f5f5f5;
}
.bk-vehicle--active {
  border-color: var(--accent);
  background: var(--accent-light);
}
.bk-vehicle--active:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}
.bk-vehicle-icon {
  width: 34px;
  height: 34px;
  border-radius: 17px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}
.bk-vehicle--active .bk-vehicle-icon {
  background: var(--accent);
  color: white;
}
.bk-vehicle-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.bk-vehicle--active .bk-vehicle-name {
  color: var(--accent);
}
.bk-vehicle-cap {
  font-size: 10px;
  color: #999;
  margin-bottom: 4px;
}
.bk-vehicle-price {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
}
.bk-vehicle--active .bk-vehicle-price {
  color: var(--accent);
}

/* ── Options ── */
.bk-options {
  background: #fafafa;
  border-radius: 14px;
  border: 1px solid #efefef;
  overflow: hidden;
}
.bk-opt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
}
.bk-opt-row + .bk-opt-row {
  border-top: 1px solid #f0f0f0;
}
.bk-opt-info {
  display: flex;
  flex-direction: column;
}
.bk-opt-name {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}
.bk-opt-sub {
  font-size: 11px;
  color: #999;
  margin-top: 1px;
}

/* Counter */
.bk-counter {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bk-counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 120ms ease;
}
.bk-counter-btn:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--accent-light);
}
.bk-counter-btn:disabled {
  color: #ccc;
  border-color: #eee;
  cursor: not-allowed;
}
.bk-counter-val {
  font-size: 16px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: #1a1a1a;
}

/* Toggle */
.bk-toggle {
  position: relative;
  width: 44px;
  height: 26px;
  background: #ddd;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  transition: background 200ms ease;
  padding: 0;
  flex-shrink: 0;
}
.bk-toggle--on {
  background: var(--accent);
}
.bk-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 200ms ease;
}
.bk-toggle--on .bk-toggle-knob {
  transform: translateX(18px);
}

/* ── Schedule ── */
.bk-schedule-toggle {
  display: flex;
  background: #f0f0f5;
  border-radius: 12px;
  padding: 3px;
  margin-bottom: 12px;
}
.bk-sched-btn {
  flex: 1;
  padding: 7px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #999;
  background: transparent;
  transition: all 150ms ease;
}
.bk-sched-btn--active {
  background: var(--accent);
  color: white;
  box-shadow: 0 2px 8px rgba(56,142,60,0.25);
}

.bk-slots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.bk-slot {
  padding: 5px 10px;
  border-radius: 16px;
  background: white;
  border: 1.5px solid #e0e0e0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
  transition: all 120ms ease;
}
.bk-slot:hover { border-color: #ccc; }
.bk-slot--active {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Price ── */
.bk-price-card {
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #efefef;
  padding: 10px 14px;
}
.bk-price-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  font-size: 12px;
  color: #666;
}
.bk-price-row span:last-child {
  font-weight: 500;
  color: #1a1a1a;
}
.bk-price-total {
  display: flex;
  justify-content: space-between;
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.bk-price-total span:first-child {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}
.bk-price-total span:last-child {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}

/* ── Error ── */
.bk-error {
  background: #fff0f0;
  color: #FF3B30;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 16px;
}

/* ── Confirm button ── */
.bk-confirm-wrap {
  position: sticky;
  bottom: 0;
  padding: 12px 0 16px;
  background: linear-gradient(to bottom, transparent 0%, white 30%);
  z-index: 10;
}
@media (max-width: 640px) {
  .bk-confirm-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px calc(env(safe-area-inset-bottom, 8px) + 12px);
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  }
  .bk-section { margin-bottom: 8px; }
  /* Space at bottom so content isn't hidden behind fixed button */
  .bk-confirm-spacer { display: block; height: 80px; }
}
.bk-confirm-btn {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: white;
  transition: all 160ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bk-confirm-btn:hover:not(:disabled) {
  background: var(--accent-dark);
  box-shadow: 0 4px 14px rgba(56,142,60,0.3);
  transform: translateY(-1px);
}
.bk-confirm-btn:disabled {
  background: #b8b8c0;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Spinner inside confirm */
.bk-confirm-btn .spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Schedule summary button ── */
.bk-schedule-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: var(--accent-light);
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms ease;
}
.bk-schedule-summary:hover {
  background: #fbe4ed;
}

/* ── Schedule Popup ── */
.bk-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bk-fade-in 150ms ease;
}
@keyframes bk-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.bk-popup {
  background: white;
  border-radius: 20px;
  width: 420px;
  max-width: 92vw;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: bk-slide-up 200ms ease;
}
@keyframes bk-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.bk-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #f0f0f0;
}
.bk-popup-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.bk-popup-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: background 120ms ease;
}
.bk-popup-close:hover {
  background: #eee;
  color: #333;
}
.bk-popup-section {
  padding: 16px 20px;
}
.bk-popup-section + .bk-popup-section {
  border-top: 1px solid #f0f0f0;
}
.bk-popup-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.bk-popup-datetime {
  display: flex;
  gap: 10px;
}
.bk-popup-input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  font-size: 14px;
  outline: none;
  color: #1a1a1a;
  transition: border-color 150ms ease;
}
.bk-popup-input:focus {
  border-color: var(--accent);
}
.bk-popup-apply {
  margin-top: 12px;
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease;
}
.bk-popup-apply:hover {
  background: var(--accent-dark);
}
.bk-popup-slots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Hide footer when booking page is active (full-height layout) */
body:has(.booking-page) > * > footer,
body:has(.booking-page) footer[style] {
  display: none !important;
}
/* Prevent body scroll when booking page active (desktop only) */
@media (min-width: 768px) {
  body:has(.booking-page) {
    overflow: hidden;
  }
}

/* ═══════════════════════════════════════════════════════════
   Payment Page
   ═══════════════════════════════════════════════════════════ */

.pay-page {
  min-height: calc(100vh - 73px);
  background: #f7f7fa;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
}
.pay-container {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 24px;
}
.pay-header {
  text-align: center;
  margin-bottom: 20px;
}
.pay-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 4px;
}
.pay-subtitle {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.pay-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
.pay-error-box {
  text-align: center;
  padding: 40px 0;
}
.pay-error-box p {
  color: #FF3B30;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Summary */
.pay-summary {
  margin-bottom: 20px;
}
.pay-price-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent-light);
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 10px;
}
.pay-price-banner span:first-child {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.pay-price-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

/* Method selection */
.pay-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pay-method-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px;
  background: #fafafa;
  border: 2px solid #efefef;
  border-radius: 14px;
  cursor: pointer;
  transition: all 150ms ease;
  text-align: left;
}
.pay-method-btn:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}
.pay-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f0f0f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.pay-method-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pay-method-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}
.pay-method-desc {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
.pay-method-arrow {
  color: #ccc;
  flex-shrink: 0;
}

/* Card form */
.pay-form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pay-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  padding: 0;
}
.pay-back-btn:hover {
  text-decoration: underline;
}
.pay-card-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pay-card-element {
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  background: #fafafa;
  transition: border-color 150ms ease;
}
.pay-card-element:focus-within {
  border-color: var(--accent);
  background: #fff;
}

/* Cash info */
.pay-cash-info {
  text-align: center;
  padding: 20px 0;
}
.pay-cash-icon {
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}
.pay-cash-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Payment success screen */
.pay-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 0 16px;
  gap: 16px;
}
.pay-success-icon { margin-bottom: 4px; }
.pay-success-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}
.pay-success-sub {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.pay-success-route {
  width: 100%;
  background: #f7f7fa;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.pay-success-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1a1a1a;
}
.pay-success-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pay-success-dot--pickup { background: var(--accent); }
.pay-success-dot--dest   { background: var(--dark); }

/* ═══════════════════════════════════════════════════════════
   Waiting Page
   ═══════════════════════════════════════════════════════════ */

.wait-page {
  min-height: calc(100vh - 73px);
  background: #f7f7fa;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
}
.wait-container {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .wait-container {
    max-width: 720px;
  }
}

/* Status card */
.wait-status-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 24px;
  text-align: center;
}
.wait-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.wait-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #f0f0f5;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.wait-status-label {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Driver info */
.wait-driver {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 14px;
  background: #fafafa;
  border-radius: 14px;
  text-align: left;
}
.wait-driver-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}
.wait-driver-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wait-driver-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wait-driver-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}
.wait-driver-vehicle {
  font-size: 13px;
  font-weight: 500;
  color: #555;
}
.wait-driver-plate {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  background: #f0f0f5;
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
}

/* Progress steps */
.wait-steps {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wait-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  position: relative;
}
.wait-step + .wait-step {
  border-top: 1px solid #f0f0f0;
}
.wait-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  flex-shrink: 0;
  transition: all 200ms ease;
}
.wait-step--done .wait-step-dot {
  background: #34C759;
}
.wait-step--active .wait-step-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(56,142,60,0.15);
}
.wait-step-label {
  font-size: 13px;
  font-weight: 500;
  color: #999;
}
.wait-step--done .wait-step-label {
  color: #1a1a1a;
}
.wait-step--active .wait-step-label {
  color: var(--accent);
  font-weight: 700;
}

/* Cancel button */
.wait-cancel-btn {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid #FF3B30;
  background: #fff;
  color: #FF3B30;
  cursor: pointer;
  transition: all 150ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wait-cancel-btn:hover:not(:disabled) {
  background: #fff0f0;
}
.wait-cancel-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════
   Toast notifications
   ═══════════════════════════════════════════════════════════ */
.toast-container {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  padding: 0 16px;
  box-sizing: border-box;
  pointer-events: none;
}
.toast-notification {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #34C759;
  cursor: pointer;
  animation: toast-slide-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.toast-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toast-message {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}
.toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.toast-close:hover {
  color: #333;
}
@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 480px) {
  .toast-container {
    top: 8px;
    max-width: 100%;
    padding: 0 8px;
  }
  .toast-notification {
    padding: 12px 14px;
  }
}

/* ETA display */
.wait-eta {
  font-size: 16px;
  color: #333;
  margin-top: 8px;
  padding: 8px 16px;
  background: #f0fdf4;
  border-radius: 8px;
  border: 1px solid #bbf7d0;
}
.wait-eta strong {
  color: #166534;
  font-size: 18px;
}

/* Map container */
.wait-map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* ═══════════════════════════════════════════════════════════
   Driver Pending Dashboard — /driver/pending
   ═══════════════════════════════════════════════════════════ */
.drv-page {
  min-height: 100vh;
  background: #f5f5f7;
  padding: 24px 16px;
}
.drv-container {
  max-width: 720px;
  margin: 0 auto;
}
.drv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.drv-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.drv-refresh-btn {
  padding: 8px 18px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: background 150ms ease;
}
.drv-refresh-btn:hover:not(:disabled) { background: #f0f0f5; }
.drv-refresh-btn:disabled { opacity: 0.5; cursor: not-allowed; }
/* Success banner */
.drv-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}
/* Empty state */
.drv-empty {
  text-align: center;
  padding: 48px 24px;
}
.drv-empty-icon { margin-bottom: 16px; }
.drv-empty-text {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  margin: 0 0 8px;
}
.drv-empty-sub {
  font-size: 13px;
  color: #aaa;
  margin: 0;
}
/* Card list */
.drv-list { display: flex; flex-direction: column; gap: 16px; }
.drv-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* Card meta */
.drv-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.drv-card-date {
  font-size: 12px;
  color: #aaa;
}
.drv-scheduled-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: #fdf0f6;
  border: 1px solid #f0c8db;
  border-radius: 8px;
  padding: 4px 10px;
}
/* Badges */
.drv-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.drv-badge--card { background: #e3f0ff; color: #1565c0; }
.drv-badge--cash { background: #e8f5e9; color: #2e7d32; }
/* Route */
.drv-route {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.drv-route-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
  gap: 0;
}
.drv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.drv-dot--pickup { background: var(--accent); }
.drv-dot--dest   { background: var(--dark); }
.drv-dot-line {
  width: 2px;
  flex: 1;
  background: #e0e0e0;
  min-height: 20px;
  margin: 3px 0;
}
.drv-route-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.drv-route-row { display: flex; flex-direction: column; gap: 2px; }
.drv-route-label { font-size: 11px; color: #aaa; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.drv-route-addr  { font-size: 14px; color: #1a1a1a; font-weight: 500; }
/* Footer */
.drv-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #f0f0f5;
  padding-top: 14px;
}
.drv-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}
.drv-accept-btn {
  padding: 10px 24px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.drv-accept-btn:hover:not(:disabled) { background: var(--accent-dark); }

/* ═══════════════════════════════════════════════════════════
   Site Footer — enrichi
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-light);
  margin-top: 0;
}
.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer-brand {}
.footer-logo {
  height: 144px;
  object-fit: contain;
  margin-bottom: 12px;
  opacity: 0.9;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 260px;
  margin: 0 0 16px;
}
.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 5px 12px;
  width: fit-content;
}
.footer-col {
  margin-top: 48px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.4);
  margin: 0 0 14px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 140ms ease;
}
.footer-link:hover { color: var(--green-400); }
.footer-bottom {
  border-top: 1px solid var(--dark-light);
  padding: 16px 24px;
}
.footer-bottom-inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-sep { color: rgba(255,255,255,0.2); }

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 64px 24px 48px;
  }
  .footer-badges { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   Homepage — Social Proof (counters + testimonials)
   ═══════════════════════════════════════════════════════════ */
.hp-proof {
  background: #fff;
  padding: 40px 16px;
  border-bottom: 1px solid #f0f0f0;
}
.hp-proof-inner {
  max-width: 960px;
  margin: 0 auto;
}
.hp-counters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 40px;
}
.hp-counter {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 16px 8px;
  border-right: 1px solid #f0f0f0;
}
.hp-counter:last-child { border-right: none; }
.hp-counter-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.hp-counter-label {
  display: block;
  font-size: 13px;
  color: #666;
  line-height: 1.3;
}
.hp-testimonials-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 24px;
}
.hp-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.hp-testimonial {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 20px;
}
.hp-testimonial-stars {
  color: #FFD54F;
  font-size: 16px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.hp-testimonial-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 12px;
  font-style: italic;
}
.hp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.hp-testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}
.hp-testimonial-city {
  font-size: 12px;
  color: #999;
}

@media (min-width: 768px) {
  .hp-counters { flex-wrap: nowrap; }
  .hp-testimonials { grid-template-columns: repeat(3, 1fr); }
  .hp-counter-value { font-size: 40px; }
  .hp-testimonials-title { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   Homepage — Popular destinations
   ═══════════════════════════════════════════════════════════ */
.hp-popular {
  background: #f9f9f9;
  padding: 32px 16px;
  border-bottom: 1px solid #f0f0f0;
}
.hp-popular-inner { max-width: 960px; margin: 0 auto; }
.hp-popular-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-popular-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hp-popular-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  transition: all 140ms ease;
  white-space: nowrap;
}
.hp-popular-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff9fb;
}

/* ═══════════════════════════════════════════════════════════
   Waiting page — animated messages
   ═══════════════════════════════════════════════════════════ */
.wait-searching-msg {
  text-align: center;
  margin: 12px 0 4px;
}
.wait-searching-text {
  font-size: 13px;
  color: #888;
  animation: wait-fade 0.4s ease;
}
@keyframes wait-fade {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wait-avg-time {
  display: inline-block;
  background: #f0f0f5;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: #666;
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════
   Page À propos
   ═══════════════════════════════════════════════════════════ */
.about-page { background: #fff; }
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 60px 24px;
  text-align: center;
}
.about-hero-logo { height: 48px; margin-bottom: 24px; opacity: 0.9; }
.about-hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-hero-title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}
.about-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.about-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 24px;
}
.about-section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.about-section-body {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-value-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid var(--accent);
}
.about-value-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.about-value-desc { font-size: 14px; color: #666; line-height: 1.6; }
.about-cta {
  background: var(--dark);
  padding: 48px 24px;
  text-align: center;
}
.about-cta-title { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.about-cta-sub { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }

@media (min-width: 768px) {
  .about-values { grid-template-columns: repeat(3, 1fr); }
  .about-hero-title { font-size: 48px; }
}

/* ═══════════════════════════════════════════════════════════
   Register redesign — two big CTA buttons
   ═══════════════════════════════════════════════════════════ */
.reg-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 60%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.reg-card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.reg-card-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-light));
  padding: 32px 24px 28px;
  text-align: center;
}
.reg-card-logo { height: 44px; margin-bottom: 16px; opacity: 0.9; }
.reg-card-title { font-size: 24px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.reg-card-sub { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }
.reg-type-select {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reg-type-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 2px solid #e8e8ee;
  background: #fafafa;
  cursor: pointer;
  text-align: left;
  transition: all 160ms ease;
  width: 100%;
}
.reg-type-btn:hover {
  border-color: var(--accent);
  background: #fff9fb;
}
.reg-type-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #c02070);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reg-type-text {}
.reg-type-name { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 3px; display: block; }
.reg-type-desc { font-size: 13px; color: #888; display: block; }
.reg-type-arrow { margin-left: auto; color: #ccc; flex-shrink: 0; }
.reg-login-hint {
  text-align: center;
  padding: 0 24px 24px;
  font-size: 14px;
  color: #888;
}
.reg-login-hint a { color: var(--accent); font-weight: 600; text-decoration: none; }
.drv-accept-btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* ═══════════════════════════════════════════════════════════
   Driver Web Dashboard
   ═══════════════════════════════════════════════════════════ */
.drv-layout { display: flex; min-height: calc(100vh - 73px); }
.drv-sidebar {
  width: 240px; background: var(--dark); color: #fff; padding: 24px 16px;
  display: flex; flex-direction: column; gap: 24px; flex-shrink: 0;
}
.drv-sidebar-header { display: flex; align-items: center; gap: 12px; }
.drv-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #c2326e);
  color: #fff; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.drv-sidebar-name { font-size: 15px; font-weight: 700; }
.drv-sidebar-role { font-size: 12px; color: rgba(255,255,255,0.5); }
.drv-sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.drv-sidebar-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: 10px; color: #aaa; text-decoration: none; font-size: 14px; font-weight: 500;
  transition: all 150ms;
}
.drv-sidebar-link:hover { background: rgba(255,255,255,0.06); color: #fff; }
.drv-sidebar-link--active { background: rgba(56,142,60,0.15); color: #fff; font-weight: 700; }
.drv-main { flex: 1; padding: 24px; background: #f7f7fa; overflow-y: auto; }
.drv-bottomnav { display: none; }

@media (max-width: 768px) {
  .drv-sidebar { display: none; }
  .drv-main { padding: 16px 16px 90px; }
  .drv-bottomnav {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff; border-top: 1px solid #e8e8e8; z-index: 100;
    padding: 6px 0; justify-content: space-around;
  }
  .drv-bottomnav-item {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    font-size: 10px; font-weight: 600; color: #999; text-decoration: none; padding: 4px 8px;
  }
  .drv-bottomnav-item--active { color: var(--accent); }
}

/* Dashboard */
.drv-dashboard { display: flex; flex-direction: column; gap: 20px; max-width: 700px; }
.drv-status-card {
  display: flex; align-items: center; justify-content: space-between;
  background: white; border-radius: 16px; padding: 20px; gap: 16px;
  border: 1px solid #ebebf0; box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.drv-status-card--online { border-color: #34C759; background: #f0fff4; }
.drv-status-left { display: flex; align-items: center; gap: 14px; }
.drv-status-dot { width: 12px; height: 12px; border-radius: 50%; background: #ccc; flex-shrink: 0; }
.drv-status-dot--online { background: #34C759; box-shadow: 0 0 0 4px rgba(52,199,89,0.2); animation: header-pulse-anim 1.5s infinite; }
.drv-status-label { font-size: 17px; font-weight: 800; color: #1a1a1a; }
.drv-status-sub { font-size: 13px; color: #999; margin-top: 2px; }
.drv-toggle {
  width: 52px; height: 28px; border-radius: 14px; border: none; cursor: pointer;
  background: #ccc; position: relative; transition: background 200ms; flex-shrink: 0;
}
.drv-toggle--on { background: #34C759; }
.drv-toggle-thumb {
  position: absolute; top: 3px; left: 3px; width: 22px; height: 22px;
  border-radius: 50%; background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 200ms;
}
.drv-toggle--on .drv-toggle-thumb { transform: translateX(24px); }

/* Active ride banner */
.drv-active-banner {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  background: linear-gradient(135deg, var(--dark), #2a2a40); border-radius: 14px;
  cursor: pointer; color: white;
}
.drv-active-pulse {
  width: 10px; height: 10px; border-radius: 50%; background: #34C759; flex-shrink: 0;
  animation: header-pulse-anim 1.5s infinite;
}
.drv-active-info { flex: 1; min-width: 0; }
.drv-active-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.drv-active-addr { font-size: 12px; color: rgba(255,255,255,0.6); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.drv-active-arrow { font-size: 20px; color: rgba(255,255,255,0.5); }

/* Stats */
.drv-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.drv-stat-card {
  background: white; border-radius: 14px; padding: 18px; text-align: center;
  border: 1px solid #ebebf0; box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.drv-stat-card--accent { background: linear-gradient(135deg, var(--accent), #c2326e); border: none; }
.drv-stat-value { font-size: 22px; font-weight: 800; color: #1a1a1a; margin-bottom: 4px; }
.drv-stat-label { font-size: 11px; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 0.5px; }

/* Quick links */
.drv-quicklinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 480px) { .drv-quicklinks { grid-template-columns: 1fr; } }
.drv-quicklink {
  display: flex; align-items: center; gap: 10px; padding: 16px;
  background: white; border-radius: 12px; border: 1px solid #ebebf0;
  font-size: 14px; font-weight: 600; color: #333; cursor: pointer;
  transition: box-shadow 150ms;
}
.drv-quicklink:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.drv-quicklink-icon { font-size: 22px; }

/* Trip request modal */
.drv-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(4px);
}
.drv-modal {
  background: white; border-radius: 24px; padding: 32px; max-width: 400px; width: 100%;
  text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: toast-slide-in 0.3s ease;
}
.drv-modal-timer { position: relative; display: inline-block; margin-bottom: 16px; }
.drv-modal-countdown {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: var(--accent);
}
.drv-modal-title { font-size: 20px; font-weight: 800; color: #1a1a1a; margin-bottom: 16px; }
.drv-modal-route { text-align: left; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.drv-modal-addr { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #333; }
.drv-modal-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.drv-modal-dot--pickup { background: var(--accent); }
.drv-modal-dot--dest { background: #34C759; }
.drv-modal-price { font-size: 28px; font-weight: 800; color: var(--accent); margin-bottom: 20px; }
.drv-modal-actions { display: flex; gap: 12px; }
.drv-modal-reject {
  flex: 1; padding: 14px; border-radius: 12px; border: 2px solid #e0e0e0;
  background: white; font-size: 15px; font-weight: 700; color: #666; cursor: pointer;
}
.drv-modal-accept {
  flex: 2; padding: 14px; border-radius: 12px; border: none;
  background: #34C759; font-size: 15px; font-weight: 700; color: white; cursor: pointer;
}
.drv-modal-accept:disabled { opacity: 0.6; }

/* Page elements */
.drv-page-title { font-size: 22px; font-weight: 800; color: #1a1a1a; margin-bottom: 20px; }
.drv-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.drv-tab {
  padding: 8px 18px; border-radius: 20px; border: none; cursor: pointer;
  font-size: 13px; font-weight: 600; background: white; color: #666;
  border: 1px solid #ebebf0; transition: all 150ms;
}
.drv-tab--active { background: var(--accent); color: white; border-color: var(--accent); }
.drv-empty { text-align: center; padding: 40px 20px; color: #999; font-size: 14px; }

/* Ride cards */
.drv-rides-list { display: flex; flex-direction: column; gap: 12px; }
.drv-ride-card { background: white; border-radius: 14px; border: 1px solid #ebebf0; overflow: hidden; }
.drv-ride-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; background: #fafafa; border-bottom: 1px solid #f0f0f5;
}
.drv-ride-date { font-size: 12px; color: #999; font-weight: 600; }
.drv-ride-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.drv-ride-route { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.drv-ride-addr { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #333; }
.drv-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.drv-dot--pickup { background: var(--accent); border: 2px solid #e0e0e0; }
.drv-dot--dest { background: #34C759; border: 2px solid #e0e0e0; }
.drv-ride-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border-top: 1px solid #f0f0f5; background: #fafafa;
}
.drv-ride-price { font-size: 16px; font-weight: 800; color: var(--accent); }
.drv-ride-price-lg { font-size: 16px; font-weight: 800; color: var(--accent); }

/* Buttons */
.drv-btn {
  padding: 12px 24px; border-radius: 12px; border: none; background: var(--accent);
  color: white; font-size: 15px; font-weight: 700; cursor: pointer;
}
.drv-btn-sm {
  padding: 8px 16px; border-radius: 8px; border: none; background: var(--accent);
  color: white; font-size: 13px; font-weight: 600; cursor: pointer;
}
.drv-btn-outline {
  padding: 10px 20px; border-radius: 10px; border: 1.5px solid #e0e0e0;
  background: white; font-size: 14px; font-weight: 600; color: #666; cursor: pointer;
}
.drv-btn-danger {
  padding: 10px 20px; border-radius: 10px; border: none;
  background: #FF3B30; color: white; font-size: 14px; font-weight: 600; cursor: pointer;
}
.drv-btn-danger:disabled { opacity: 0.6; }

/* Trip page */
.drv-trip { max-width: 700px; display: flex; flex-direction: column; gap: 16px; }
.drv-trip-status {
  display: flex; justify-content: space-between; align-items: center;
  background: white; border-radius: 14px; padding: 16px 20px;
  border-left: 4px solid #007AFF; border: 1px solid #ebebf0;
}
.drv-trip-status-label { font-size: 16px; font-weight: 700; color: #1a1a1a; }
.drv-trip-eta { font-size: 13px; color: #007AFF; font-weight: 600; margin-top: 2px; }
.drv-trip-route {
  background: white; border-radius: 14px; padding: 18px; border: 1px solid #ebebf0;
  display: flex; flex-direction: column; gap: 12px;
}
.drv-trip-addr { display: flex; gap: 12px; align-items: flex-start; }
.drv-nav-btn {
  padding: 8px 14px; border-radius: 8px; background: #007AFF; color: white;
  font-size: 12px; font-weight: 700; text-decoration: none; white-space: nowrap;
}
.drv-action-btn {
  width: 100%; padding: 16px; border-radius: 14px; border: none;
  font-size: 17px; font-weight: 800; color: white; cursor: pointer;
}
.drv-action-btn:disabled { opacity: 0.6; }
.drv-cancel-link {
  background: none; border: none; color: #FF3B30; font-size: 14px;
  font-weight: 600; cursor: pointer; text-align: center; padding: 10px;
}
.drv-cancel-box {
  background: #fff2f2; border-radius: 14px; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.drv-cancel-input {
  width: 100%; padding: 10px 14px; border-radius: 10px; border: 1px solid #e0e0e0;
  font-size: 14px; box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════
   Site Header — redesigned navigation
   ═══════════════════════════════════════════════════════════ */

/* Header shell — éditorial cream */
.sh {
  width: 100%; position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 64px;
  border-bottom: 1px solid #E6E1D8;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.sh-inner {
  width: 100%; max-width: 1320px; margin: 0 auto;
  padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 100%;
}
/* Logo — image (legacy) */
.sh-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; height: 56px; flex-shrink: 0; }
.sh-logo img { height: 46px; object-fit: contain; }
/* Logo — text editorial (Ya italic green Playfair + hop. bold sans) */
.sh-logo--text { gap: 0; align-items: baseline; line-height: 1; height: auto; padding: 6px 0; }
.sh-logo-ya {
  font-family: 'Playfair Display', 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--green-500);
  line-height: 1;
  letter-spacing: -0.01em;
}
.sh-logo-hop {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1a1f16;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-left: 1px;
}

/* Desktop nav — split en deux groupes */
.sh-left { display: flex; align-items: center; gap: 32px; flex-shrink: 0; }
.sh-nav-left { gap: 4px; }
.sh-nav-right { gap: 6px; }
.sh-nav {
  display: flex; align-items: center; gap: 6px;
}
@media (max-width: 1024px) {
  .sh-left { gap: 20px; }
  .sh-nav-left { gap: 0; }
}
.sh-link {
  color: var(--gray-600); text-decoration: none; font-weight: 500; font-size: 14px;
  padding: 6px 12px; border-radius: 8px; transition: all 180ms ease; position: relative;
}
.sh-link:hover { color: var(--green-600); background: var(--green-50); }
.sh-link--active { color: var(--green-600); font-weight: 700; }
.sh-link--active::after {
  content: ''; position: absolute; bottom: -1px; left: 12px; right: 12px; height: 2px;
  background: var(--green-500); border-radius: 2px;
}

/* CTA buttons in header */
.sh-cta-book {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 10px; font-size: 14px; font-weight: 700;
  background: var(--green-500); color: #fff; text-decoration: none;
  transition: all 180ms ease; box-shadow: 0 2px 8px rgba(76,175,80,0.28);
}
.sh-cta-book:hover { background: var(--green-600); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(76,175,80,0.34); }
.sh-cta-quote {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 10px; font-size: 13px; font-weight: 600;
  background: transparent; color: var(--green-600); text-decoration: none;
  border: 1.5px solid var(--green-300); transition: all 180ms ease;
}
.sh-cta-quote:hover { background: var(--green-50); border-color: var(--green-500); color: var(--green-700); }

/* Phone link desktop */
.sh-phone {
  display: flex; align-items: center; gap: 6px; color: var(--green-700);
  text-decoration: none; font-size: 13px; font-weight: 600; white-space: nowrap;
  padding: 6px 10px; border-radius: 8px; transition: all 180ms ease;
}
.sh-phone:hover { background: var(--green-50); }

/* Services dropdown trigger */
.sh-svc-trigger {
  display: flex; align-items: center; gap: 4px;
  background: none; border: none; cursor: pointer; font-family: inherit;
  color: var(--gray-600); font-weight: 500; font-size: 14px;
  padding: 6px 12px; border-radius: 8px; transition: all 180ms ease;
}
.sh-svc-trigger:hover { color: var(--green-600); background: var(--green-50); }
.sh-svc-trigger--active { color: var(--green-600); font-weight: 700; }
.sh-svc-trigger svg { transition: transform 200ms ease; }
.sh-svc-trigger--open svg { transform: rotate(180deg); }

/* Mega-menu */
.sh-mega {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 24px 28px 16px; min-width: 680px; box-shadow: var(--shadow-lg); z-index: 200;
  display: flex; flex-wrap: wrap; gap: 0 28px;
  opacity: 0; animation: sh-mega-in 200ms ease forwards;
}
.sh-mega[role="menu"] { transform: translateX(-50%); }
@keyframes sh-mega-in {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.sh-mega-col {
  flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 2px;
}
.sh-mega-col-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--gray-400); padding: 0 10px 6px;
}
.sh-mega-link {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px; font-size: 13px; font-weight: 500;
  color: var(--gray-600); text-decoration: none; transition: all 150ms ease;
}
.sh-mega-link:hover { background: var(--green-50); color: var(--green-800); }
.sh-mega-link--active { color: var(--green-800); font-weight: 600; background: var(--green-50); }
.sh-mega-link svg { flex-shrink: 0; }
.sh-mega-footer {
  width: 100%; border-top: 1px solid var(--gray-100); margin-top: 12px; padding-top: 12px;
}
.sh-mega-featured {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 10px; border-radius: 10px; font-size: 13px; font-weight: 600;
  color: var(--green-800); text-decoration: none; transition: all 150ms ease;
  background: var(--green-50); border: 1px solid var(--green-200);
}
.sh-mega-featured:hover { background: var(--green-100); border-color: var(--green-300); }

/* Language switcher desktop */
.sh-lang-btn {
  background: none; border: 1px solid var(--gray-200); border-radius: 8px;
  color: var(--gray-500); cursor: pointer; padding: 5px 10px;
  font-size: 12px; font-weight: 600; font-family: inherit;
  display: flex; align-items: center; gap: 4px; transition: all 180ms ease;
}
.sh-lang-btn:hover { border-color: var(--gray-300); background: var(--gray-50); }
.sh-lang-drop {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid var(--gray-200); border-radius: 10px;
  padding: 4px; min-width: 60px; box-shadow: var(--shadow-md); z-index: 300;
}
.sh-lang-opt {
  display: block; width: 100%; text-align: center; background: none; border: none;
  cursor: pointer; padding: 6px 12px; font-size: 12px; font-weight: 500;
  font-family: inherit; color: var(--gray-500); border-radius: 6px; transition: all 150ms ease;
}
.sh-lang-opt:hover { background: var(--green-50); color: var(--green-800); }
.sh-lang-opt--active { background: var(--green-50); color: var(--green-800); font-weight: 700; }

/* Account links */
.sh-account { display: flex; align-items: center; gap: 6px; color: var(--gray-600); text-decoration: none; font-size: 14px; font-weight: 500; padding: 6px 10px; border-radius: 8px; transition: all 180ms ease; }
.sh-account:hover { color: var(--green-800); background: var(--green-50); }
.sh-account--active { color: var(--green-800); font-weight: 600; }
.sh-login { color: var(--gray-600); text-decoration: none; padding: 6px 14px; border-radius: 8px; font-size: 14px; transition: all 180ms ease; }
.sh-login:hover { background: var(--gray-50); color: var(--gray-700); }
.sh-signup { color: #fff; text-decoration: none; padding: 8px 18px; border-radius: 10px; background: var(--green-700); font-size: 14px; font-weight: 600; transition: all 180ms ease; }
.sh-signup:hover { background: var(--green-800); }

/* Driver/Admin badges */
.sh-badge-driver { display: flex; align-items: center; gap: 5px; color: var(--success); text-decoration: none; font-weight: 700; font-size: 13px; padding: 5px 10px; border-radius: 8px; transition: all 180ms ease; }
.sh-badge-driver:hover { background: rgba(52,199,89,0.08); }
.sh-badge-admin { color: #FFD54F; text-decoration: none; font-weight: 600; font-size: 13px; padding: 5px 10px; border-radius: 8px; transition: all 180ms ease; }
.sh-badge-admin:hover { background: rgba(255,213,79,0.08); }

/* ── Mobile: hamburger area ── */
.sh-burger-area { display: none; align-items: center; gap: 4px; }
.sh-burger {
  background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--gray-600); border-radius: 8px; transition: all 150ms ease;
}
.sh-burger:hover { background: var(--gray-50); }
.sh-phone-mobile {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-50); color: var(--green-700); text-decoration: none;
  transition: all 180ms ease;
}
.sh-phone-mobile:hover { background: var(--green-100); }
.sh-cta-book-mobile {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 7px 14px; border-radius: 10px; font-size: 13px; font-weight: 700;
  background: var(--green-500); color: #fff; text-decoration: none;
  transition: all 180ms ease;
}
.sh-cta-book-mobile:hover { background: var(--green-600); }

/* ── Mobile drawer overlay ── */
.sh-overlay {
  position: fixed; inset: 0; top: 64px; background: rgba(0,0,0,0.4);
  z-index: 90; opacity: 0; transition: opacity 300ms ease;
  pointer-events: none;
}
.sh-overlay--open { opacity: 1; pointer-events: auto; }

/* ── Mobile drawer ── */
.sh-drawer {
  position: fixed; top: 64px; right: 0; bottom: 0; width: 320px; max-width: 85vw;
  background: #fff; z-index: 95; overflow-y: auto;
  transform: translateX(100%); transition: transform 300ms cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.08);
  display: flex; flex-direction: column;
}
.sh-drawer--open { transform: translateX(0); }
.sh-drawer-body { flex: 1; padding: 8px 16px 24px; display: flex; flex-direction: column; gap: 2px; }

/* Mobile nav links */
.sh-m-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 10px; font-size: 15px; font-weight: 500;
  color: var(--gray-700); text-decoration: none; transition: all 150ms ease;
}
.sh-m-link:hover, .sh-m-link:active { background: var(--green-50); }
.sh-m-link--active { color: var(--green-800); font-weight: 700; background: var(--green-50); }
.sh-m-link svg { flex-shrink: 0; color: var(--gray-400); }
.sh-m-link--active svg { color: var(--green-700); }

/* Mobile services accordion */
.sh-m-svc-trigger {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: none; cursor: pointer; font-family: inherit;
  padding: 12px 14px; border-radius: 10px; font-size: 15px; font-weight: 500;
  color: var(--gray-700); transition: all 150ms ease;
}
.sh-m-svc-trigger:hover { background: var(--green-50); }
.sh-m-svc-trigger--open { color: var(--green-800); font-weight: 700; background: var(--green-50); }
.sh-m-svc-trigger svg { transition: transform 200ms ease; }
.sh-m-svc-trigger--open svg { transform: rotate(180deg); }

.sh-m-svc-list {
  display: flex; flex-direction: column; gap: 1px; padding: 4px 0 4px 12px;
  overflow: hidden; animation: sh-m-svc-in 200ms ease;
}
@keyframes sh-m-svc-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.sh-m-svc-cat {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--gray-400); padding: 10px 14px 4px;
}
.sh-m-svc-link {
  display: block; padding: 9px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--gray-600); text-decoration: none; transition: all 150ms ease;
}
.sh-m-svc-link:hover { background: var(--green-50); color: var(--green-800); }
.sh-m-svc-link--active { color: var(--green-800); font-weight: 600; background: var(--green-50); }

/* Mobile divider */
.sh-m-divider { height: 1px; background: var(--gray-100); margin: 6px 14px; }

/* Mobile lang row */
.sh-m-lang-row { display: flex; gap: 8px; padding: 8px 14px; }
.sh-m-lang-btn {
  flex: 1; padding: 10px 0; border-radius: 10px; border: 1.5px solid var(--gray-200);
  background: none; color: var(--gray-500); font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all 150ms ease;
}
.sh-m-lang-btn:hover { border-color: var(--gray-300); }
.sh-m-lang-btn--active { background: var(--green-50); border-color: var(--green-400); color: var(--green-800); font-weight: 700; }

/* Mobile CTA area */
.sh-m-cta { padding: 12px 16px; border-top: 1px solid var(--gray-100); display: flex; flex-direction: column; gap: 8px; }
.sh-m-cta-book {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 12px; background: var(--green-700); color: #fff;
  font-size: 15px; font-weight: 700; text-decoration: none; text-align: center;
  transition: all 180ms ease;
}
.sh-m-cta-book:hover { background: var(--green-800); }
.sh-m-cta-phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 12px; border: 1.5px solid var(--green-300);
  background: var(--green-50); color: var(--green-800);
  font-size: 14px; font-weight: 600; text-decoration: none; text-align: center;
}
.sh-m-cta-phone:hover { background: var(--green-100); }

/* Mobile auth */
.sh-m-auth { display: flex; gap: 8px; padding: 0 14px 4px; }
.sh-m-login {
  flex: 1; text-align: center; padding: 11px; border-radius: 10px;
  border: 1.5px solid var(--gray-200); color: var(--gray-600);
  text-decoration: none; font-size: 14px; font-weight: 500; transition: all 150ms ease;
}
.sh-m-login:hover { border-color: var(--gray-300); background: var(--gray-50); }
.sh-m-signup {
  flex: 1; text-align: center; padding: 11px; border-radius: 10px;
  background: var(--green-700); color: #fff;
  text-decoration: none; font-size: 14px; font-weight: 600; transition: all 150ms ease;
}
.sh-m-signup:hover { background: var(--green-800); }

/* ── Responsive breakpoints ── */
@media (max-width: 1080px) {
  .sh-nav { gap: 2px; }
  .sh-phone-label { display: none; }
}
@media (max-width: 768px) {
  .sh-nav { display: none !important; }
  .sh-burger-area { display: flex !important; }
}
@media (min-width: 769px) {
  .sh-drawer, .sh-overlay { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   Editorial refresh — Phase 1
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500&display=swap');

.y2-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-700);
  margin-bottom: 18px;
  display: inline-block;
}
.y2-serif-italic {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-700);
  letter-spacing: -0.01em;
}
.y2-mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

/* Hero — serif italic override: disable the old underline bar */
.yhp-hero-title em.y2-hero-accent {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-700);
  letter-spacing: -0.015em;
  font-size: 1.08em;
  line-height: 1;
}
.yhp-hero-title em.y2-hero-accent::after { display: none; }

/* Hero — action buttons row (primary + ghost) */
.y2-hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.y2-hero-actions .y2-cta-primary,
.y2-hero-actions .y2-cta-ghost {
  flex: 0 0 auto;
}

/* Hero — stats row (2-line: value + mono label) */
.y2-hero-stats {
  display: flex;
  gap: 18px;
  margin-top: 26px;
  flex-wrap: wrap;
  align-items: center;
}
.y2-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.y2-hero-stat-val {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--green-700);
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}
.y2-hero-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.y2-hero-stat-sep {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .y2-hero-stats { gap: 12px; }
  .y2-hero-stat-val { font-size: 20px; }
  .y2-hero-stat-label { font-size: 9px; }
  .y2-hero-stat-sep { height: 28px; }
}

/* Proof band — 3 trajets comparés (remplace trust bar) */
.y2-proof-band {
  padding: 3rem 2rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  border-top: 1px solid var(--gray-100);
}
.y2-proof-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 820px) {
  .y2-proof-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 2.5rem;
    align-items: center;
  }
}
.y2-proof-item {}
.y2-proof-route {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.y2-proof-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.y2-proof-ours {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--green-700);
  font-size: 44px;
  line-height: 1;
}
.y2-proof-theirs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gray-400);
  text-decoration: line-through;
}
.y2-proof-note {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  max-width: 260px;
}

@media (max-width: 640px) {
  .y2-proof-ours { font-size: 36px; }
  .y2-hero-stats { gap: 14px; }
  .y2-hero-stat-val { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════
   Editorial refresh — Phase 2 (Why, Routes, Steps, Testimonials, FAQ, CTA)
   ═══════════════════════════════════════════════════════════ */

/* Hero title — mobile editorial scale */
.yhp-hero-title {
  font-size: clamp(2rem, 8vw, 3rem) !important;
  letter-spacing: -0.02em;
  line-height: 1.05 !important;
  font-weight: 600 !important;
}
@media (min-width: 1024px) {
  .yhp-hero-title { font-size: clamp(2.5rem, 4.5vw, 3.75rem) !important; }
}

/* Section eyebrow — replace the green-700 label style */
.yhp-section-label span {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.y2-section-head {
  margin-bottom: 2rem;
}
.y2-section-title {
  font-family: var(--font-main);
  font-size: clamp(1.75rem, 5.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin: 0 0 0.5rem;
}
.y2-section-title-accent {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-700);
  letter-spacing: -0.015em;
}
.y2-section-sub {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 560px;
}

/* WHY redesign — dark background, 01/02/03 mono, chiffres-clés */
.y2-why-section {
  background: var(--dark);
  color: #fff;
  padding: 4rem 1.5rem;
  margin-top: 2rem;
}
.y2-why-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.y2-why-head .y2-section-title {
  color: #fff;
}
.y2-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 820px) {
  .y2-why-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}
.y2-why-card {}
.y2-why-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--green-400);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.y2-why-title {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}
.y2-why-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
.y2-why-stat {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 1rem;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.y2-why-stat-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--green-400);
  font-size: 34px;
  line-height: 1;
}
.y2-why-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ROUTES — editorial cards with mono labels + serif italic price */
.y2-routes-section {
  padding: 4rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}
.y2-routes-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.y2-routes-link {
  font-size: 14px;
  color: var(--green-700);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.y2-routes-link:hover { color: var(--green-800); }
.y2-routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) {
  .y2-routes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .y2-routes-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.y2-route-card {
  background: var(--green-50);
  padding: 22px 20px;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}
.y2-route-card:nth-child(even) { background: #F3F8F1; }
.y2-route-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27,94,32,0.08);
  border-color: var(--green-200);
}
.y2-route-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.y2-route-place {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.y2-route-place:last-of-type { margin-bottom: 18px; }
.y2-route-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.y2-route-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gray-500);
}
.y2-route-price {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--green-700);
  font-size: 28px;
  line-height: 1;
}

/* TESTIMONIALS (new section) */
.y2-testimonials-section {
  background: var(--green-50);
  padding: 4rem 1.5rem;
  margin-top: 1rem;
}
.y2-testimonials-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.y2-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .y2-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .y2-testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.y2-testimonial-card {
  background: #fff;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
}
.y2-testimonial-stars {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--green-700);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.y2-testimonial-text {
  font-size: 14.5px;
  color: var(--dark);
  line-height: 1.6;
  margin: 0 0 18px;
}
.y2-testimonial-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.y2-testimonial-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.y2-testimonial-when {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gray-400);
}

/* FAQ — editorial styling (kept single-col on mobile, 2-col desktop) */
.yhp-faq-q {
  font-size: 15.5px !important;
  font-weight: 500 !important;
}
.yhp-faq-icon {
  font-family: 'JetBrains Mono', monospace !important;
  color: var(--green-700) !important;
  font-weight: 400 !important;
  font-size: 22px !important;
}
.yhp-faq-a {
  font-size: 14.5px !important;
  line-height: 1.65 !important;
  color: var(--gray-500) !important;
  max-width: 62ch;
}
@media (min-width: 960px) {
  .y2-faq-2col {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4.5rem;
    align-items: start;
  }
  .y2-faq-2col .yhp-faq-list { max-width: none; }
}
.y2-faq-phone {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 1rem;
  line-height: 1.6;
}
.y2-faq-phone a {
  font-family: 'JetBrains Mono', monospace;
  color: var(--green-700);
  text-decoration: none;
}

/* CTA — editorial XXL */
.y2-cta-section {
  padding: 4rem 1.5rem;
  text-align: center;
  background: #FAFBF7;
}
.y2-cta-title {
  font-family: var(--font-main);
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0.5rem 0 2rem;
  color: var(--dark);
}
.y2-cta-section .y2-section-title-accent {
  display: block;
  margin-top: 0.15em;
}
.y2-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.y2-cta-primary {
  background: var(--green-700);
  color: #fff;
  padding: 16px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}
.y2-cta-primary:hover { background: var(--green-800); }
.y2-cta-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
  padding: 14.5px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.15s;
}
.y2-cta-ghost:hover { background: var(--dark); color: #fff; }

/* STEPS — editorial number */
.yhp-step-num {
  background: transparent !important;
  color: var(--green-700) !important;
  font-family: 'Instrument Serif', serif !important;
  font-style: italic;
  font-weight: 400 !important;
  font-size: 56px !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  border-radius: 0 !important;
  margin-bottom: 0.5rem !important;
}

/* Mobile-only tweaks */
@media (max-width: 819px) {
  .y2-why-section { padding: 3rem 1.25rem; }
  .y2-routes-section { padding: 3rem 1.25rem; }
  .y2-testimonials-section { padding: 3rem 1.25rem; }
  .y2-cta-section { padding: 3rem 1.25rem 5rem; }
  .y2-route-price { font-size: 24px; }
  .y2-why-stat-num { font-size: 28px; }
  .yhp-hero { padding-top: 56px !important; padding-bottom: 24px !important; }
  .y2-proof-band { padding: 2rem 1.25rem; }
  .y2-proof-inner { gap: 1.5rem; }
  .y2-proof-ours { font-size: 34px; }
}

/* Mobile bottom bar — editorial version (Réserver + Appeler) */
.y2-mobar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 10px 14px calc(14px + env(safe-area-inset-bottom));
  display: none;
  gap: 8px;
  z-index: 50;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}
@media (max-width: 820px) {
  .y2-mobar { display: flex; }
  body { padding-bottom: 82px; }
  /* hide legacy sticky CTA if it reappears */
  .yhp-sticky-cta { display: none !important; }
}
.y2-mobar-primary {
  flex: 2;
  background: var(--green-700);
  color: #fff;
  border-radius: 4px;
  padding: 12px 14px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
}
.y2-mobar-primary:hover { background: var(--green-800); }
.y2-mobar-primary-label {
  font-size: 14.5px;
  line-height: 1.1;
}
.y2-mobar-primary-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  opacity: 0.8;
  font-weight: 500;
}
.y2-mobar-call {
  flex: 1;
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  padding: 12px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.15s;
}
.y2-mobar-call:hover { border-color: var(--green-600); }
.y2-mobar-call svg { color: var(--green-700); }

/* ═══════════════════════════════════════════════════════════
   HOME REDESIGN — maquette éditoriale (palette crème + serif)
   alignée sur la palette site (var(--green-*))
   ═══════════════════════════════════════════════════════════ */
:root {
  --mq-accent: #4CAF50;        /* var(--green-500) — vert clair Material */
  --mq-accent-dark: #43A047;   /* var(--green-600) */
  --mq-accent-soft: #E8F5E9;   /* var(--green-50) */
  --mq-green-400: #81C784;     /* var(--green-300) plus clair */
  --mq-bg: #FAF8F4;
  --mq-surface: #F4EFE5;
  --mq-paper: #FFFFFF;
  --mq-ink: #1a1f16;           /* aligné var(--dark) */
  --mq-ink2: #3C3C3C;
  --mq-ink3: #6B6B6B;
  --mq-ink4: #A4A09A;
  --mq-line: #E6E1D8;
  --mq-line2: #D8D2C6;
  --mq-dark: #1a1f16;          /* var(--dark) */
  --mq-dark-soft: #B9AE9A;
  --mq-dark-muted: #8A7D68;
  --mq-dark-line: #3A3226;
}

.mq-home {
  background: var(--mq-bg);
  color: var(--mq-ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.mq-home ::selection { background: var(--mq-accent); color: #fff; }
.mq-section { padding: 110px 32px; }
.mq-section-inner { max-width: 1280px; margin: 0 auto; }
.mq-section--hero { padding: 64px 32px 80px; }
.mq-section--proof { padding: 48px 32px; background: var(--mq-surface); }
.mq-section--why { padding: 110px 32px; background: var(--mq-dark); color: #fff; }
.mq-section--routes { padding: 110px 32px; }
.mq-section--steps { padding: 110px 32px; background: var(--mq-surface); }
.mq-section--drivers { padding: 110px 32px; background: var(--mq-dark); color: #fff; }
.mq-section--reviews { padding: 110px 32px; background: var(--mq-surface); }
.mq-section--faq { padding: 110px 32px; }
.mq-section--cta { padding: 96px 32px; text-align: center; }

.mq-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mq-accent);
  margin-bottom: 20px;
  display: inline-block;
}
.mq-eyebrow--green400 { color: var(--mq-green-400); }
.mq-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.mq-serif {
  font-family: 'Playfair Display', 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--mq-accent);
  letter-spacing: -0.01em;
}
.mq-h1 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--mq-ink);
}
.mq-h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.mq-h2--sm { font-size: clamp(28px, 3.2vw, 44px); }
.mq-lead { font-size: 18px; color: var(--mq-ink2); line-height: 1.55; max-width: 520px; margin-top: 28px; }

/* HERO grid */
.mq-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: start;
}
.mq-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.mq-hero-stats-sep { width: 1px; height: 32px; background: var(--mq-line); }
.mq-hero-stat-val { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--mq-ink); font-weight: 600; }
.mq-hero-stat-sub { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--mq-ink3); }
.mq-hero-partner { max-width: 360px; flex: 1 1 280px; }
.mq-hero-partner .mq-hero-stat-val { font-size: 12.5px; line-height: 1.4; }
.mq-hero-partner .mq-hero-stat-sub { font-size: 11px; line-height: 1.4; margin-top: 2px; }
.mq-stars { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--mq-accent); line-height: 1; }
.mq-hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* Booking card (right column of hero) */
.mq-bcard {
  background: var(--mq-paper);
  border: 1px solid var(--mq-line);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(15, 26, 20, 0.04);
}
.mq-bcard-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.mq-bcard-sub { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--mq-ink3); margin: 0 0 22px; text-transform: uppercase; letter-spacing: 0.06em; }

/* Booking card — header bar (eyebrow + live indicator) */
.mq-bcard-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mq-bcard-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mq-accent);
}
.mq-bcard-live {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--mq-ink4);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.mq-bcard-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mq-accent);
  display: inline-block;
  animation: mq-pulse 2s ease-in-out infinite;
}
@keyframes mq-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Route inputs (pickup / dest) with colored dots */
.mq-route-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--mq-line);
  border-radius: 3px;
  background: #fff;
  transition: border-color 0.15s;
  position: relative;
}
.mq-route-input:focus-within { border-color: var(--mq-ink); }
.mq-route-input--pickup { margin-bottom: 0; }
.mq-route-input--dest { margin-bottom: 14px; }
.mq-route-dot {
  width: 8px; height: 8px;
  flex-shrink: 0;
  display: inline-block;
}
.mq-route-dot--pickup { background: var(--mq-accent); border-radius: 50%; }
.mq-route-dot--dest { background: var(--mq-ink); border-radius: 0; }
.mq-route-field {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
  color: var(--mq-ink);
  min-width: 0;
}
.mq-route-field::placeholder { color: var(--mq-ink4); }
.mq-route-link {
  margin-left: 18px;
  height: 8px;
  border-left: 1.5px dotted var(--mq-line2);
  margin-bottom: 2px;
  margin-top: 2px;
}

/* Quick-pick chips */
.mq-quick-picks { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.mq-chip {
  font-family: inherit;
  font-size: 11.5px;
  padding: 5px 11px;
  border: 1px solid var(--mq-line);
  border-radius: 50px;
  background: #fff;
  color: var(--mq-ink2);
  cursor: pointer;
  transition: all 0.12s;
}
.mq-chip:hover { border-color: var(--mq-ink); color: var(--mq-ink); }

/* Booking card — footer note */
.mq-bcard-foot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--mq-ink4);
  margin-top: 10px;
  text-align: center;
}
.mq-field { margin-bottom: 14px; position: relative; }
.mq-label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mq-ink3); margin-bottom: 6px; }
.mq-input {
  width: 100%;
  border: 1px solid var(--mq-line);
  background: #fff;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--mq-ink);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.15s;
}
.mq-input:focus { border-color: var(--mq-ink); }
.mq-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--mq-line);
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(15, 26, 20, 0.08);
  list-style: none;
  margin: 0; padding: 6px 0;
  z-index: 10;
  max-height: 280px;
  overflow-y: auto;
}
.mq-suggestion {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--mq-ink2);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.12s;
}
.mq-suggestion:hover { background: var(--mq-surface); }
.mq-suggestion-icon { display: inline-flex; width: 16px; height: 16px; flex-shrink: 0; color: var(--mq-accent); }
.mq-vehicle-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 14px; }
.mq-vehicle-btn {
  background: #fff;
  border: 1px solid var(--mq-line);
  border-radius: 3px;
  padding: 6px 8px;
  cursor: pointer;
  font-family: inherit;
  color: var(--mq-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.15s;
  text-align: center;
}
.mq-vehicle-btn--active {
  border-color: var(--mq-ink);
  background: var(--mq-ink);
  color: #fff;
}
.mq-vehicle-picto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 2px;
}
.mq-vehicle-picto svg { width: 40px; height: auto; display: block; }
.mq-vehicle-name { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; }
.mq-vehicle-pax { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; color: var(--mq-ink4); }
.mq-vehicle-btn--active .mq-vehicle-pax { color: rgba(255, 255, 255, 0.6); }
.mq-vehicle-price {
  font-family: 'Playfair Display', 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  margin-top: 6px;
  color: var(--mq-ink);
  line-height: 1;
}
.mq-vehicle-btn--active .mq-vehicle-price { color: #fff; }
.mq-schedule-toggle { display: flex; gap: 8px; margin-bottom: 14px; }
.mq-schedule-btn {
  flex: 1;
  background: #fff;
  border: 1px solid var(--mq-line);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--mq-ink3);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.12s;
}
.mq-schedule-btn--active { background: var(--mq-ink); color: #fff; border-color: var(--mq-ink); }
.mq-bcard-cta {
  width: 100%;
  background: var(--mq-accent);
  color: #fff;
  border: none;
  padding: 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
}
.mq-bcard-cta:hover { background: var(--mq-accent-dark); }

/* Buttons */
.mq-btn-primary {
  background: var(--mq-accent);
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}
.mq-btn-primary:hover { background: var(--mq-accent-dark); }
.mq-btn-primary--green400 { background: var(--mq-green-400); color: var(--mq-dark); }
.mq-btn-primary--green400:hover { background: #34D363; }
.mq-btn-ghost {
  background: transparent;
  color: var(--mq-ink);
  border: 1px solid var(--mq-ink);
  padding: 13px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}
.mq-btn-ghost:hover { background: var(--mq-ink); color: #fff; }

/* Proof band (4 stats) */
.mq-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  align-items: center;
}
.mq-proof-num { font-family: 'Playfair Display', serif; font-style: italic; font-size: 56px; color: var(--mq-accent); line-height: 1; display: inline-block; }
.mq-proof-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--mq-ink3); margin-top: 8px; }

/* WHY section (dark, 3 cards) */
.mq-why-head { max-width: 720px; margin-bottom: 64px; }
.mq-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 48px; }
.mq-why-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--mq-accent); margin-bottom: 20px; }
.mq-why-title { font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 500; margin: 0 0 12px; color: #fff; }
.mq-why-desc { font-size: 14.5px; line-height: 1.65; color: var(--mq-dark-soft); margin: 0 0 16px; }
.mq-why-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--mq-green-400);
  text-decoration: none;
  margin-bottom: 22px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.15s;
}
.mq-why-cta:hover { opacity: 0.75; }
.mq-why-foot { border-top: 1px solid var(--mq-dark-line); padding-top: 16px; }
.mq-why-key { font-family: 'Playfair Display', serif; font-style: italic; font-size: 36px; color: var(--mq-accent); line-height: 1; }
.mq-why-key-sub { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--mq-dark-muted); margin-left: 10px; }

/* Routes (6 cards) */
.mq-routes-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.mq-routes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.mq-route-card {
  display: block;
  padding: 28px 24px;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--mq-ink);
  border: 1px solid transparent;
}
.mq-route-card:hover { transform: translateY(-4px); }
.mq-route-card-light { background: #F5EFE4; }
.mq-route-card-dark { background: #EFE8DA; }
.mq-route-tag { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--mq-ink3); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.mq-route-name { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 500; }
.mq-route-foot { display: flex; justify-content: space-between; align-items: end; padding-top: 16px; margin-top: 24px; border-top: 1px solid var(--mq-line2); }
.mq-route-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--mq-ink3); }
.mq-route-price { font-family: 'Playfair Display', serif; font-style: italic; font-size: 30px; color: var(--mq-accent); line-height: 1; }
.mq-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--mq-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}
.mq-link:hover { color: var(--mq-accent); }
.mq-link-arrow { color: var(--mq-accent); }

/* Steps (How it works — 3 cards) */
.mq-steps-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.mq-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.mq-step-card { background: #fff; padding: 32px; border-radius: 4px; border: 1px solid var(--mq-line); }
.mq-step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mq-accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600;
  margin-bottom: 20px;
}
.mq-step-title { font-family: 'DM Sans', sans-serif; font-size: 19px; font-weight: 600; margin: 0 0 12px; color: var(--mq-ink); }
.mq-step-desc { font-size: 14.5px; color: var(--mq-ink2); line-height: 1.6; margin: 0; }

/* Drivers section (dark) */
.mq-drivers-head { max-width: 720px; margin-bottom: 56px; }
.mq-drivers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-bottom: 48px; }
.mq-drivers-card { padding: 32px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 4px; }
.mq-drivers-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mq-drivers-icon-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; color: var(--mq-green-400); line-height: 1; }
.mq-drivers-title { font-family: 'DM Sans', sans-serif; font-size: 19px; font-weight: 600; color: #fff; margin: 0 0 12px; }
.mq-drivers-desc { font-size: 14.5px; color: rgba(255, 255, 255, 0.7); line-height: 1.6; margin: 0; }

/* Reviews */
.mq-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.mq-review-card { background: #fff; padding: 28px; border-radius: 3px; border: 1px solid var(--mq-line); }
.mq-review-stars { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--mq-accent); margin-bottom: 14px; }
.mq-review-text { font-size: 15px; line-height: 1.6; color: var(--mq-ink); margin: 0 0 20px; }
.mq-review-foot { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--mq-line); }
.mq-review-name { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; }
.mq-review-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--mq-ink3); }

/* FAQ */
.mq-faq-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 72px; align-items: start; }
.mq-faq-list { margin: 0; }
.mq-faq-item {
  border-bottom: 1px solid var(--mq-line);
  padding: 20px 0;
}
.mq-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  color: var(--mq-ink);
  list-style: none;
}
.mq-faq-q::-webkit-details-marker { display: none; }
.mq-faq-q::after { content: "+"; font-family: 'JetBrains Mono', monospace; color: var(--mq-accent); font-size: 22px; line-height: 1; }
.mq-faq-item[open] .mq-faq-q::after { content: "−"; }
.mq-faq-a {
  margin: 12px 0 0;
  color: var(--mq-ink2);
  line-height: 1.6;
  font-size: 14.5px;
  max-width: 62ch;
}

/* CTA finale */
.mq-cta-h {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  margin: 0 0 32px;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .mq-hero-grid, .mq-faq-grid { grid-template-columns: 1fr; }
  .mq-section { padding: 72px 24px; }
  .mq-section--hero { padding: 40px 24px 56px; }
  .mq-section--proof, .mq-section--why, .mq-section--routes, .mq-section--steps, .mq-section--drivers, .mq-section--reviews, .mq-section--faq { padding: 80px 24px; }
  /* Hero CTAs (Réserver une course + Voir les tarifs) masqués sur mobile —
     la booking card juste en-dessous fait office de CTA */
  .mq-hero-actions { display: none; }
}
@media (max-width: 480px) {
  .mq-bcard { padding: 22px; }
  .mq-hero-stats { gap: 18px; }
}
