/* ═══════════════════════════════════════════════════════════
   RIDE — Location de voiture en libre-service
   Styles principaux
═══════════════════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --bg-primary: #0a0a0e;
  --bg-secondary: #0f0f1a;
  --bg-card: #14141e;
  --bg-card-hover: #1b1b28;
  --bg-border: #252535;

  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #555555;

  --gradient-start: #FF6B6B;
  --gradient-end: #4ECDC4;
  --gradient: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  --gradient-hover: linear-gradient(135deg, #ff5252, #3dbdb5);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.25s ease;

  --container: 1200px;
  --navbar-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Empêche le scroll horizontal sur iOS Safari */
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: var(--font); }

/* ─── Utilities ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.hide-mobile { display: inline; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #444; }


/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  border-color: var(--bg-border);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 84px; width: auto; }

.nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
}

/* ── Language switcher ── */
.lang-switcher { position: relative; }
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 10px 5px 8px;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.5px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.lang-trigger:hover,
.lang-trigger.is-open { background: rgba(255,255,255,0.14); color: #fff; }
.lang-chevron { transition: transform 0.2s; }
.lang-trigger.is-open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #111;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  min-width: 150px;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.lang-dropdown[hidden] { display: none; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  text-align: left;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.lang-btn:hover { background: rgba(255,255,255,0.06); color: #fff; }
.lang-btn--active { color: #fff; font-weight: 700; }
/* Mobile menu lang row */
.mobile-lang { padding: 4px 0; }

.btn-outline {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--bg-border);
  transition: all var(--transition);
}
.btn-outline:hover { color: var(--text-primary); border-color: #444; }

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--gradient);
  transition: opacity var(--transition), transform var(--transition);
}
.btn-gradient:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-gradient:active { transform: translateY(0); }

.btn-full { width: 100%; }

.btn-large {
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 10px;
}

/* Nav lang switcher (standalone, always visible) */
.nav-lang {
  margin-left: auto;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-border);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  display: block;
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.mobile-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.mobile-cta { margin-top: 8px; text-align: center; }


/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--navbar-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #FF6B6B, transparent);
  top: -100px;
  left: -100px;
}
.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #4ECDC4, transparent);
  bottom: 0;
  right: -50px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  margin-bottom: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ECDC4;
  box-shadow: 0 0 8px #4ECDC4;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(36px, 5.2vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}


/* ─── Widget de réservation ─── */
.reservation-widget {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 24px;
  background: #2a2b3d;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.widget-form { padding: 20px 20px 20px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

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

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.form-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255,107,107,0.6);
  background: rgba(255,255,255,0.12);
}

.form-group input:hover,
.form-group select:hover {
  border-color: rgba(255,255,255,0.22);
}

/* Custom date input colors */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  cursor: pointer;
}

.form-group select option {
  background: #2a2b3d;
  color: #fff;
}

/* ─── Datetime row (date + heure côte à côte) ─── */
.datetime-row {
  display: flex;
  gap: 8px;
  position: relative;
}

/* Champ date natif masqué — remplacé par le calendrier JS */
.dp-input { display: none; }

/* Affichage de la date sélectionnée (créé par JS) */
.dp-display {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  transition: border-color var(--transition), background var(--transition);
  user-select: none;
  position: relative;
  white-space: nowrap;
}
.dp-display-text { overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.dp-display svg  { flex-shrink: 0; opacity: 0.45; transition: opacity var(--transition); }

.dp-display.has-value         { color: #fff; }
.dp-display.has-value svg     { opacity: 0.65; }
.dp-display:hover, .dp-display:focus { outline: none; border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.12); }
.dp-display.open              { border-color: rgba(255,107,107,0.6); background: rgba(255,255,255,0.12); }

/* Sélecteur d'heure dans la datetime-row */
.time-select { width: 110px !important; flex-shrink: 0; }

/* ─── Calendrier popup ─── */
.dp-popup {
  position: fixed;
  z-index: 9999;
  background: #15152a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 16px;
  width: 272px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.65);
  animation: dp-open 0.15s ease;
}
@keyframes dp-open {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.dp-month-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: -0.01em;
}
.dp-nav-btn {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.dp-nav-btn:hover:not(:disabled) { background: rgba(255,255,255,0.12); color: #fff; }
.dp-nav-btn:disabled { opacity: 0.25; cursor: not-allowed; }

.dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.dp-wday {
  text-align: center;
  font-size: 10px; font-weight: 700;
  color: var(--text-muted);
  padding: 3px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dp-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dp-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500;
  border-radius: 7px;
  cursor: pointer;
  color: #fff;
  transition: background 0.12s ease;
}
.dp-day:hover:not(.dp-day--disabled):not(.dp-day--selected) { background: rgba(255,255,255,0.1); }
.dp-day--other-month  { opacity: 0.55; cursor: pointer; }
.dp-day--today        { color: #FF6B6B; font-weight: 800; }
.dp-day--selected     {
  background: var(--gradient);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255,107,107,0.4);
}
.dp-day--disabled     { color: rgba(255,255,255,0.2) !important; cursor: not-allowed; font-weight: 400; }
.dp-day--disabled:hover { background: none; }


/* ═══════════════════════════════════════════════════════════
   RANGE PICKER — flux 4 étapes, bottom sheet / modale
═══════════════════════════════════════════════════════════ */

/* Layout formulaire */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
  margin-bottom: 12px;
}

/* ── Deux pills départ / retour ───────────────────────── */

.rdp-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rdp-pill {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: inherit;
  color: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
  min-height: 56px;
  width: 100%;
}
.rdp-pill:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
}
.rdp-pill:focus-visible {
  outline: 2px solid rgba(255,107,107,0.6);
  outline-offset: 2px;
}

.rdp-pill-icon {
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
}

.rdp-pill-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
  text-align: left;
}

.rdp-pill-date {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  line-height: 1.2;
}

.rdp-pill-time {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  line-height: 1;
}

/* ── Overlay ─────────────────────────────────────────── */
.rdp-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  display: flex;
  align-items: flex-end;   /* mobile : sheet en bas */
  justify-content: center;
}
.rdp-overlay--open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Sheet (fond blanc) ──────────────────────────────── */
.rdp-sheet {
  background: #fff;
  width: 100%;
  max-width: 480px;
  border-radius: 24px 24px 0 0;
  padding-bottom: env(safe-area-inset-bottom, 16px);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.rdp-overlay--open .rdp-sheet {
  transform: translateY(0);
}

/* Desktop : modale centrée */
@media (min-width: 600px) {
  .rdp-overlay { align-items: center; }
  .rdp-sheet {
    border-radius: 24px;
    transform: translateY(20px) scale(0.97);
    max-height: 80vh;
  }
  .rdp-overlay--open .rdp-sheet {
    transform: translateY(0) scale(1);
  }
}

/* ── Handle (trait mobile) ───────────────────────────── */
.rdp-sheet-handle {
  width: 40px; height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  margin: 12px auto 0;
}
@media (min-width: 600px) { .rdp-sheet-handle { display: none; } }

/* ── Header (progress + boutons) ────────────────────── */
.rdp-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 8px;
}
.rdp-hdr-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.rdp-hdr-btn:hover { background: #f1f5f9; border-color: #cbd5e1; color: #1e293b; }

.rdp-progress {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rdp-prog-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: all 0.2s ease;
}
.rdp-prog-dot.is-active  { background: rgba(255,107,107,0.4); }
.rdp-prog-dot.is-current { background: #FF6B6B; width: 24px; border-radius: 4px; }

/* ── Titres ──────────────────────────────────────────── */
.rdp-sheet-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  padding: 4px 24px 2px;
}
.rdp-sheet-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  padding: 0 24px 16px;
  min-height: 26px;
}

/* ── Body ────────────────────────────────────────────── */
.rdp-sheet-body {
  padding: 0 20px 8px;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Calendrier (1 mois) ─────────────────────────────── */
.rdp-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.rdp-cal-month {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  text-transform: capitalize;
  letter-spacing: -0.01em;
}
.rdp-nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #4b5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.rdp-nav-btn:hover:not(:disabled) { background: #f1f5f9; color: #1e293b; }
.rdp-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.rdp-wdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.rdp-wdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  padding: 4px 0;
}

.rdp-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.rdp-day {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
}
.rdp-day-inner {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  transition: background 0.1s ease;
}
.rdp-day--past .rdp-day-inner { color: #cbd5e1; cursor: default; }
.rdp-day--today .rdp-day-inner { font-weight: 800; color: #1e293b; }
.rdp-day:not(.rdp-day--past):not([disabled]):hover .rdp-day-inner {
  background: #f1f5f9;
}

/* Plage */
.rdp-day.is-in-range  { background: rgba(0,0,0,0.05); }
.rdp-day.is-start {
  background: linear-gradient(to right, transparent 50%, rgba(0,0,0,0.05) 50%);
}
.rdp-day.is-end {
  background: linear-gradient(to left, transparent 50%, rgba(0,0,0,0.05) 50%);
}
.rdp-day.is-start.is-end { background: transparent; }
.rdp-day.is-start .rdp-day-inner,
.rdp-day.is-end   .rdp-day-inner {
  background: #1e293b;
  color: #fff !important;
  font-weight: 700;
}

/* ── Résumé heure (bandeau en haut du time picker) ──── */
.rdp-time-summary {
  display: flex;
  gap: 0;
  margin: 0;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}
.rdp-time-summary-item {
  flex: 1;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rdp-time-summary-item + .rdp-time-summary-item {
  border-left: 1.5px solid #e2e8f0;
}
.rdp-time-summary-lbl {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  line-height: 1;
}
.rdp-time-summary-val {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  white-space: nowrap;
  text-transform: capitalize;
}
.rdp-time-summary-val.is-active {
  color: #1e293b;
}

/* ── Sélecteur d'heure (liste scrollable) ────────────── */
.rdp-time-list {
  display: flex;
  flex-direction: column;
}
.rdp-time-row {
  width: 100%;
  padding: 11px 24px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: #1e293b;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.1s ease, color 0.1s ease;
  letter-spacing: 0.01em;
}
.rdp-time-row:last-child { border-bottom: none; }
.rdp-time-row:hover { background: #f8fafc; }
.rdp-time-row.is-selected {
  font-weight: 700;
  color: #FF6B6B;
  background: rgba(255,107,107,0.06);
}
.rdp-time-row--past,
.rdp-time-row[disabled] {
  color: #cbd5e1;
  cursor: default;
  pointer-events: none;
}

/* ── Footer de la sheet ──────────────────────────────── */
.rdp-sheet-footer {
  padding: 12px 20px 16px;
  border-top: 1px solid #f1f5f9;
  flex-shrink: 0;
}
.rdp-skip-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  width: 100%;
  text-align: center;
  transition: color 0.15s ease;
}
.rdp-skip-btn:hover { color: #64748b; }

/* ── form-footer ─────────────────────────────────────── */
.form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-footer .btn-search { flex: 1; justify-content: center; }

.btn-search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--gradient);
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 32px rgba(255,107,107,0.3);
}
.btn-search svg { width: 18px; height: 18px; }
.btn-search:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,107,0.4);
}


/* ─── Guarantee strip ─── */
.hero-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
  border-radius: 0 0 20px 20px;
}
.hero-guarantee svg { flex-shrink: 0; color: #4ECDC4; opacity: 0.9; }

/* ─── Stats ─── */
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding: 0 24px;
}

.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--bg-border);
}


/* ═══════════════════════════════════════════════════════════
   SECTIONS COMMUNES
═══════════════════════════════════════════════════════════ */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--bg-secondary);
}

.section--light {
  background: #f4f4f8;
  /* Override les variables CSS pour tous les enfants */
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f0f6;
  --bg-border: #e5e7eb;
  color: var(--text-primary);
}

/* Sections claires : titres et textes */
.section--light .section-title { color: var(--text-primary); }
.section--light .section-subtitle { color: var(--text-secondary); }

/* Sections claires : cartes avec ombre légère */
.section--light .step-card,
.section--light .advantage-card,
.section--light .review-card {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

/* Icônes dans step-cards sur fond clair */
.section--light .step-icon-wrap {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
}
.section--light .step-icon-wrap svg {
  color: var(--text-secondary);
}

/* Scrollbar sur sections claires */
.section--light ::-webkit-scrollbar-track { background: #e5e7eb; }
.section--light ::-webkit-scrollbar-thumb { background: #c0c0cc; }

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

.section-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════════
   COMMENT ÇA MARCHE
═══════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 28px;
}

.steps-grid .step-connector { display: none; }

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,107,0.3);
}

.step-number {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-icon-wrap svg { width: 28px; height: 28px; color: var(--text-secondary); }

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-connector {
  padding-top: 60px;
  width: 80px;
  flex-shrink: 0;
}
.step-connector svg { width: 100%; }


/* ═══════════════════════════════════════════════════════════
   APP PILL (flottant hero)
═══════════════════════════════════════════════════════════ */
.app-hero-btns {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}
.apps-soon-note {
  width: 100%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 2px;
}
.app-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: all var(--transition);
}
.app-hero-btn:hover {
  background: #111;
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.app-hero-btn--soon {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}
.app-hero-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.app-hero-btn-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.65;
  letter-spacing: 0.03em;
}
.app-hero-btn-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.app-pill {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 22px 10px 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(255,107,107,0.15), rgba(78,205,196,0.15));
  border: 1px solid rgba(78,205,196,0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.app-pill:hover {
  background: linear-gradient(135deg, rgba(255,107,107,0.25), rgba(78,205,196,0.25));
  border-color: rgba(78,205,196,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(78,205,196,0.15);
}

.app-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(78,205,196,0.2);
  flex-shrink: 0;
}
.app-pill-icon svg { color: #4ECDC4; }

.app-pill-label { white-space: nowrap; }

.app-pill-badges {
  display: flex;
  gap: 4px;
  opacity: 0.5;
}

.app-pill-arrow {
  opacity: 0.5;
  flex-shrink: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.app-pill:hover .app-pill-arrow { transform: translateX(3px); opacity: 0.9; }

/* App pill — bientôt disponible */
.app-pill--soon {
  cursor: default;
  opacity: 0.6;
  pointer-events: none;
}

/* ─── Bandeau RGPD ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111118;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideUpCookie 0.3s ease;
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-content {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 860px;
  width: 100%;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-secondary);
  min-width: 200px;
}
.cookie-link {
  color: #4ECDC4;
  text-decoration: none;
  white-space: nowrap;
}
.cookie-link:hover { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn--secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn--primary {
  background: #fff;
  color: #0a0a0e;
}
@media (max-width: 600px) {
  .cookie-banner { padding: 14px 16px 20px; }
  .cookie-content { gap: 12px; }
  .cookie-text { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   FLOTTE
═══════════════════════════════════════════════════════════ */
.fleet-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--bg-border);
  transition: all var(--transition);
}
.filter-btn:hover { color: var(--text-secondary); border-color: #333; }
.filter-btn.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,107,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.vehicle-card.hidden { display: none; }

.vehicle-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(10,10,10,0.55);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.vehicle-badge--suv {
  background: rgba(10,10,10,0.55);
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.1);
}

.vehicle-img-placeholder {
  background: #0d0d0d;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.vehicle-img-placeholder svg { width: 100%; max-width: 240px; }
.vehicle-img-placeholder--suv { background: #0c0c10; }

.vehicle-img-wrapper {
  background: #ffffff;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.vehicle-img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  padding: 10px 14px;
  display: block;
}

.vehicle-info { padding: 20px; }

.vehicle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.vehicle-name { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.vehicle-type { font-size: 12px; color: var(--text-muted); }

.vehicle-price { text-align: right; }
.price-from { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.price-note { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.price-amount {
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-unit { font-size: 12px; color: var(--text-muted); }

.vehicle-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  padding: 5px 10px;
  border-radius: 6px;
}
.spec svg { width: 13px; height: 13px; }

.btn-card {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 11px;
  border-radius: 8px;
  border: 1px solid var(--bg-border);
  transition: all var(--transition);
}
.btn-card:hover {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255,107,107,0.25);
}


/* ═══════════════════════════════════════════════════════════
   AVANTAGES
═══════════════════════════════════════════════════════════ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition);
}
.advantage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78,205,196,0.2);
}

.advantage-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.advantage-icon svg { width: 24px; height: 24px; color: #fff; }

.advantage-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.advantage-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }


/* ═══════════════════════════════════════════════════════════
   TARIFS
═══════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card--featured {
  border-color: rgba(255,107,107,0.3);
  background: linear-gradient(180deg, rgba(255,107,107,0.05) 0%, rgba(17,17,17,1) 60%);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gradient);
  color: #fff;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-category {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.pricing-from { font-size: 13px; color: var(--text-muted); }
.pricing-amount {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pricing-unit { font-size: 14px; color: var(--text-muted); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.pricing-features svg { width: 16px; height: 16px; color: #4ECDC4; flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════════
   AVIS
═══════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }

.review-stars {
  font-size: 16px;
  color: #FFB800;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; }
.review-date { font-size: 12px; color: var(--text-muted); margin-top: 1px; }


/* ═══════════════════════════════════════════════════════════
   AGENCES / CONTACT
═══════════════════════════════════════════════════════════ */
.agencies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.agency-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.agency-card:hover {
  transform: translateY(-3px);
  border-color: rgba(78,205,196,0.25);
}

.agency-icon {
  width: 44px;
  height: 44px;
  background: rgba(78,205,196,0.1);
  border: 1px solid rgba(78,205,196,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.agency-icon svg { width: 20px; height: 20px; color: #4ECDC4; }

.agency-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.agency-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.agency-phone {
  font-size: 13px;
  font-weight: 600;
  color: #4ECDC4;
  transition: opacity var(--transition);
}
.agency-phone:hover { opacity: 0.8; }

.agency-card--soon {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.agency-card--soon:hover { transform: none; border-color: var(--bg-border); }

.agency-soon-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(78,205,196,.12);
  color: #4ECDC4;
  border: 1px solid rgba(78,205,196,.3);
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 12px;
}


/* ═══════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0d0005 50%, var(--bg-primary) 100%);
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,107,107,0.15) 0%, transparent 70%);
  filter: blur(40px);
}

.cta-content {
  position: relative;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--bg-border);
  padding: 64px 0 32px;
}

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

.footer-logo { height: 84px; width: auto; margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link svg { width: 17px; height: 17px; }
.social-link:hover { color: var(--text-primary); border-color: #333; background: rgba(255,255,255,0.05); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-secondary); }

.footer-bottom {
  border-top: 1px solid var(--bg-border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast.success { background: linear-gradient(135deg, #22c55e, #16a34a); }
.toast.error { background: linear-gradient(135deg, #ef4444, #dc2626); }
.toast.info { background: var(--gradient); }


/* ═══════════════════════════════════════════════════════════
   ANIMATIONS D'ENTRÉE
═══════════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

/* Tablette (≤ 1024px) */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .burger { display: flex; }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-times-footer { grid-template-columns: 1fr 1fr; }
  .form-times-footer .btn-search { grid-column: 1 / -1; justify-content: center; }
  .dp-popup { width: 240px; }

  /* RangePicker tablette : panel pleine largeur, 1 seul mois */
  .rdp-panel {
    left: 0; right: 0;
    transform: translateY(-6px);
    min-width: 0;
  }
  .rdp-panel--open { transform: translateY(0); }
  .rdp-months { grid-template-columns: 1fr; }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .step-connector { display: none; }

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

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

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  :root { --navbar-h: 60px; }

  .hide-mobile { display: none; }

  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 15px; }

  .reservation-widget {
    margin: 0 16px;
    border-radius: 16px;
  }
  .form-grid { grid-template-columns: 1fr; }
  .form-times-footer { grid-template-columns: 1fr 1fr; }
  .form-times-footer .btn-search { grid-column: 1 / -1; justify-content: center; }
  .btn-search { width: 100%; justify-content: center; }

  /* RangePicker mobile : panel pleine largeur */
  .rdp-panel {
    left: 0;
    right: 0;
    transform: translateY(-6px);
    min-width: 0;
    border-radius: 16px;
  }
  .rdp-panel--open { transform: translateY(0); }
  .rdp-months { grid-template-columns: 1fr; }
  .rdp-panel-inner { padding: 16px 8px 14px; }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-number { font-size: 22px; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  .fleet-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .agencies-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-content h2 { font-size: 28px; }
  .cta-content p { font-size: 15px; }
}

/* Petit mobile (≤ 480px) */
@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-badge { font-size: 11px; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }

  .btn-search { font-size: 14px; padding: 13px 20px; }

  /* Glows décoratifs — réduits pour éviter overflow sur iOS Safari */
  .hero-glow-1 { width: 260px; height: 260px; left: -80px; top: -60px; }
  .hero-glow-2 { width: 220px; height: 220px; right: -80px; }
  .cta-glow    { width: 240px; height: 140px; }
}


/* ═══════════════════════════════════════════════════════════
   SECTION APPLICATION MOBILE
═══════════════════════════════════════════════════════════ */

.app-section {
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.app-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(78,205,196,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 30%, rgba(255,107,107,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Colonne texte ── */
.app-content .section-badge {
  display: inline-block;
  margin-bottom: 20px;
}

.app-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.app-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.app-description strong { color: var(--text-primary); }

.app-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.app-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255,107,107,0.15), rgba(78,205,196,0.15));
  border: 1px solid rgba(78,205,196,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ECDC4;
}

.app-feature-icon svg { width: 18px; height: 18px; }

.app-feature > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.app-feature strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.app-feature span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Boutons de téléchargement ── */
.app-download-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 20px;
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition);
  min-width: 150px;
}

.app-store-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(78,205,196,0.4);
  transform: translateY(-2px);
}

.store-icon { flex-shrink: 0; opacity: 0.9; width: 22px; height: 22px; }

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.store-label {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.store-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ── Phone mockup ── */
.app-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-screenshot-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 240px;
  background: #0d0d18;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.12);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.phone-screen {
  background: #12121f;
  border-radius: 26px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
}

.phone-app-header {
  background: linear-gradient(135deg, #FF6B6B22, #4ECDC422);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone-logo {
  font-size: 18px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.phone-greeting {
  font-size: 12px;
  color: var(--text-secondary);
}

.phone-reservation-card {
  margin: 12px;
  background: rgba(78,205,196,0.08);
  border: 1px solid rgba(78,205,196,0.2);
  border-radius: 14px;
  padding: 14px;
}

.phone-card-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4ECDC4;
  font-weight: 600;
  margin-bottom: 6px;
}

.phone-car-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.phone-car-info {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.phone-unlock-btn {
  background: var(--gradient);
  border-radius: 10px;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.phone-checklist {
  margin: 0 12px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-checklist-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.phone-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-secondary);
}

.phone-check-done {
  color: #4ECDC4;
}

.phone-check-done svg { stroke: #4ECDC4; }
.phone-check-item svg { stroke: var(--text-muted); }

.phone-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(78,205,196,0.2) 0%, transparent 70%);
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(20px);
}

/* ── Step card app variant ── */
.step-card--app .step-icon-wrap {
  color: #4ECDC4;
}

.step-card--app p strong {
  color: var(--text-primary);
}

.step-app-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.step-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(78,205,196,0.1);
  border: 1px solid rgba(78,205,196,0.25);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #4ECDC4;
  text-decoration: none;
  transition: all var(--transition);
}

.step-badge-btn:hover {
  background: rgba(78,205,196,0.2);
  transform: translateY(-1px);
}

/* ── CTA app buttons ── */
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-app-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-app-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all var(--transition);
}

.cta-store-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* ── Responsive app section ── */
@media (max-width: 960px) {
  .app-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .app-visual {
    order: -1;
  }

  .phone-frame {
    width: 200px;
  }

  .phone-screen {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .app-download-btns {
    justify-content: center;
  }

  .app-store-btn {
    min-width: 130px;
    padding: 10px 16px;
  }

  .cta-actions {
    gap: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   MODULE RÉSERVATION NATIF – MODAL FLEETEE
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Overlay + panel ── */
.rmodal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
}
.rmodal.is-open, .rmodal.open { display: flex; }

.rmodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.rmodal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.rmodal.is-open .rmodal-panel, .rmodal.open .rmodal-panel { transform: translateY(0); }

/* ── Header ── */
.rmodal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.rmodal-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rmodal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.rmodal-close:hover { background: rgba(255,255,255,0.14); }

/* ── Steps nav ── */
.rmodal-steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px 10px;
  flex-shrink: 0;
}
.rmodal-step-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s;
  font-size: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.rmodal-step-dot.active {
  background: linear-gradient(90deg, #FF6B6B, #4ECDC4);
}
.rmodal-step-dot.done { background: rgba(78,205,196,0.45); }
.rmodal-step-line { width: 16px; height: 1px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ── Scrollable body ── */
.rmodal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 24px 28px;
  scroll-behavior: smooth;
}
.rmodal-body::-webkit-scrollbar { width: 4px; }
.rmodal-body::-webkit-scrollbar-track { background: transparent; }
.rmodal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

/* ── Summary bar ── */
.rmodal-summary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.rmodal-summary strong { color: #fff; font-weight: 600; }
.rmodal-summary-item { display: flex; flex-direction: column; gap: 2px; }
.rmodal-summary-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); }

/* ── Step panel header ── */
.rmodal-step-panel { }
.rmodal-step-header { margin-bottom: 18px; }
.rmodal-step-header h3 { font-size: 20px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.rmodal-booking-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.rmodal-booking-summary strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* ── Section title ── */
.rmodal-section-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Loading spinner ── */
.rmodal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  gap: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.rmodal-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: #4ECDC4;
  border-radius: 50%;
  animation: rmspin 0.8s linear infinite;
}
.rmodal-spinner-sm {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: rmspin 0.7s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes rmspin { to { transform: rotate(360deg); } }

/* ── Vehicle list ── */
.rmodal-vehicles-list { display: flex; flex-direction: column; gap: 12px; }

.rmodal-vehicle-card {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.rmodal-vehicle-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.rmodal-vehicle-card.selected {
  border-color: #4ECDC4;
  background: rgba(78,205,196,0.07);
}

.rvc-img { width: 90px; height: 58px; border-radius: 8px; overflow: hidden; background: rgba(255,255,255,0.06); flex-shrink: 0; }
.rvc-img img { width: 100%; height: 100%; object-fit: cover; }
.rvc-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 28px; }

.rvc-info { min-width: 0; }
.rvc-name { font-size: 15px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.rvc-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 4px; }
.rvc-tag { font-size: 11px; padding: 2px 8px; border-radius: 20px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); font-weight: 500; }

.rvc-price { text-align: right; flex-shrink: 0; }
.rvc-price-amount { font-size: 20px; font-weight: 800; background: linear-gradient(135deg, #FF6B6B, #4ECDC4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; white-space: nowrap; }
.rvc-price-unit { font-size: 11px; color: rgba(255,255,255,0.4); white-space: nowrap; }
.rvc-arrow { font-size: 18px; color: rgba(255,255,255,0.3); margin-top: 6px; text-align: right; }

/* ── Error ── */
.rmodal-error { text-align: center; padding: 32px 0; color: #FF6B6B; font-size: 14px; }

/* ── Form step 2 ── */
.rvc-recap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  align-items: center;
}
.rvc-recap-img { width: 60px; height: 40px; border-radius: 6px; overflow: hidden; background: rgba(255,255,255,0.06); }
.rvc-recap-img img { width: 100%; height: 100%; object-fit: cover; }
.rvc-recap-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.rvc-recap-name { font-size: 15px; font-weight: 700; color: #fff; }
.rvc-recap-price { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.rvc-recap-price span { background: linear-gradient(135deg, #FF6B6B, #4ECDC4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; }

.rmodal-form { display: flex; flex-direction: column; gap: 0; }
.rmodal-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rmodal-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.rmodal-field label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.rmodal-field input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.rmodal-field input::placeholder { color: rgba(255,255,255,0.3); }
.rmodal-field input:focus { border-color: #4ECDC4; background: rgba(78,205,196,0.06); }
.rmodal-field input.error { border-color: #FF6B6B; }
.rmodal-field-error { font-size: 11px; color: #FF6B6B; display: none; }
.rmodal-field input.error ~ .rmodal-field-error { display: block; }

.rmodal-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  margin-bottom: 20px;
}
.rmodal-total-label { font-size: 14px; color: rgba(255,255,255,0.6); }
.rmodal-total-amount { font-size: 24px; font-weight: 800; background: linear-gradient(135deg, #FF6B6B, #4ECDC4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.rmodal-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.rmodal-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.rmodal-submit:active { transform: translateY(0); }
.rmodal-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ── Success step 3 ── */
.rmodal-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 16px 16px; gap: 12px; }
.rmodal-success-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, #FF6B6B, #4ECDC4); display: flex; align-items: center; justify-content: center; font-size: 34px; margin-bottom: 8px; }
.rmodal-success h3 { font-size: 22px; font-weight: 800; color: #fff; margin: 0; }
.rmodal-success p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; max-width: 360px; line-height: 1.6; }
.rmodal-booking-ref { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 10px 20px; font-size: 16px; font-weight: 700; color: #4ECDC4; letter-spacing: 0.08em; margin-top: 4px; }
.rmodal-success-close { margin-top: 16px; padding: 13px 32px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; color: #fff; font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer; transition: background 0.2s; }
.rmodal-success-close:hover { background: rgba(255,255,255,0.15); }

/* ── Vehicle category label ── */
.rvc-cat { font-size: 11px; color: rgba(255,255,255,0.38); margin-bottom: 4px; }

/* ── Empty state ── */
.rmodal-empty { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 40px 16px; gap: 12px; color: rgba(255,255,255,0.5); }
.rmodal-empty svg { opacity: 0.35; }
.rmodal-empty p { margin: 0; font-size: 14px; }
.rmodal-empty-hint { font-size: 12px !important; color: rgba(255,255,255,0.35) !important; }

/* ── Error detail + retry ── */
.rmodal-error-detail { font-size: 12px; color: rgba(255,107,107,0.75); margin-top: -6px; }
.rmodal-retry { margin-top: 4px; padding: 8px 20px; background: rgba(255,107,107,0.12); border: 1px solid rgba(255,107,107,0.3); border-radius: 8px; color: #FF6B6B; font-size: 13px; font-family: inherit; cursor: pointer; transition: background 0.2s; }
.rmodal-retry:hover { background: rgba(255,107,107,0.2); }

/* ── Form inline error ── */
.rmodal-form-error { padding: 10px 14px; background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.25); border-radius: 8px; color: #FF6B6B; font-size: 13px; margin-bottom: 12px; }

/* ── Back button ── */
.rmodal-back { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 13px; font-family: inherit; cursor: pointer; padding: 0; display: flex; align-items: center; gap: 5px; margin-bottom: 18px; transition: color 0.2s; }
.rmodal-back:hover { color: #fff; }

/* ── Desktop: centred modal ── */
@media (min-width: 601px) {
  .rmodal { align-items: center; }
  .rmodal-panel { border-radius: 20px; max-height: 88vh; }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .rmodal-panel { max-height: 92vh; }
  .rmodal-header { padding: 16px 18px 12px; }
  .rmodal-body { padding: 16px 18px 24px; }
  .rmodal-summary { grid-template-columns: 1fr; }
  .rmodal-vehicle-card { grid-template-columns: 76px 1fr auto; gap: 10px; padding: 12px; }
  .rvc-img { width: 76px; height: 50px; }
  .rvc-name { font-size: 14px; }
  .rvc-price-amount { font-size: 17px; }
  .rmodal-form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   FAQ — Accordion
═══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(15,23,42,.07);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question:hover { color: #4ECDC4; }

.faq-question[aria-expanded="true"] { color: #4ECDC4; }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #94a3b8;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: #4ECDC4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 600px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 10px;
}

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer ul {
  margin: 8px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-answer ul li {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-question { font-size: 14px; padding: 16px 18px; }
  .faq-answer { padding: 0 18px; }
  .faq-answer.open { padding: 0 18px 16px; }
}
