/* =========================================
   [BUSINESS_NAME] — Scooter Rental Vientiane
   Palette "Saffron & Asphalt" · fond clair
   Structure inspirée Khmu Tour
   Site réalisé par mwdigital.fr
   ========================================= */

:root {
  --sand: #F6F1E7;
  --sand-soft: #EDE6D6;
  --white: #FFFDF8;
  --asphalt: #23211C;
  --asphalt-soft: #35322A;
  --saffron: #E8890C;
  --saffron-dark: #C26F05;
  --teal: #1A4A4F;
  --ink: #26251F;
  --muted: #6E6A5E;
  --border: #DFD6C2;

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Work Sans", sans-serif;
  --font-mono: "Space Mono", monospace;

  --radius: 8px;
  --radius-sm: 9px;
  --radius-lg: 18px;
  --max: 1180px;
  --ease: cubic-bezier(.22, .8, .32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; }

body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--teal); line-height: 1.12; }
h1 { font-size: clamp(2.3rem, 7vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 5vw, 2.7rem); }
h1 em, h2 em { font-style: normal; color: var(--saffron-dark); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; }

/* ===== Eyebrow ===== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.eyebrow-line { width: 28px; height: 1px; background: currentColor; display: inline-block; }
.eyebrow-light { color: var(--saffron); }

/* ===== Boutons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: none; cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: var(--saffron);
  color: var(--asphalt);
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(232, 137, 12, 0.32);
}
.btn-primary:hover { background: #F59A1E; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232, 137, 12, 0.42); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--saffron); color: var(--saffron-dark); }
.btn-ghost-light { border-color: rgba(255, 253, 248, 0.4); color: var(--white); }
.btn-ghost-light:hover { border-color: var(--saffron); color: var(--saffron); }

/* ===== Header ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
#header.scrolled { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18); }
.header-inner { display: flex; align-items: center; gap: 22px; height: 108px; position: relative; z-index: 1; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; color: var(--white); text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); }
.brand-mark { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 1.5px rgba(255, 253, 248, 0.55); }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.nav-desktop { display: none; gap: 26px; font-weight: 500; font-size: 0.93rem; color: rgba(255, 253, 248, 0.9); text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55); margin-left: auto; }
.nav-desktop a:hover { color: var(--saffron); }
.btn-header { display: none; padding: 10px 20px; font-size: 0.88rem; }

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span { width: 25px; height: 2.5px; background: var(--white); border-radius: 2px; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--asphalt);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  font-family: var(--font-display); font-size: 1.4rem; color: var(--white);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a:hover { color: var(--saffron); }
.close-menu {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--white);
  font-size: 2.4rem; cursor: pointer; line-height: 1;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex; align-items: center;
  padding: 166px 0 70px;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: #000; /* raccord avec le bloc noir gauche de l'image */
  background-image:
    /* fond la couture verticale de l'image (~49%) dans la photo */
    linear-gradient(90deg, #000 0%, #000 48%, rgba(0, 0, 0, 0) 66%),
    /* assise sombre en bas pour les stats */
    linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(20, 18, 14, 0.55) 100%),
    url('hero.webp');
  background-size: cover;
  background-position: right center; /* garde scooter + soleil visibles au crop mobile */
}
/* Le hero n'utilise pas le container centré : contenu collé à gauche
   pour rester dans la zone noire de l'image */
.hero .container {
  margin: 0;
  max-width: 660px;
  padding-left: clamp(24px, 5vw, 90px);
}
.hero-content { position: relative; z-index: 1; max-width: 520px; }
.hero h1 { color: var(--white); font-size: clamp(2.1rem, 5vw, 3.3rem); }
.hero-sub {
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.08rem;
  max-width: 600px;
  margin: 22px 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: stretch; }
.hero-actions .btn { flex: 0 0 auto; }

.trust-badges {
  display: flex; flex-wrap: wrap; gap: 12px 26px;
  margin-top: 30px;
  max-width: 560px;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.76rem; letter-spacing: 0.03em;
  color: rgba(255, 253, 248, 0.82);
}
.trust-item svg { width: 19px; height: 19px; color: var(--saffron); flex-shrink: 0; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 26px;
  max-width: 520px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 253, 248, 0.18);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.7rem;
  color: var(--saffron);
  line-height: 1.15;
}
.hero-stat .num-text { font-size: 1.05rem; }
.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 253, 248, 0.65);
  margin-top: 4px;
}

/* ===== Story ===== */
.story { padding: 96px 0; }
.story-grid { display: grid; gap: 44px; grid-template-columns: 1fr; align-items: center; }
.story-img { position: relative; }
.story-img img { border-radius: var(--radius-lg); box-shadow: 0 20px 50px rgba(38, 37, 31, 0.16); width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%; }
.story-badge {
  position: absolute; left: -12px; bottom: -18px;
  background: var(--asphalt);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
}
.story-badge .num { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--saffron); }
.story-badge .label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
.story p { margin-bottom: 16px; color: var(--muted); }
.story h2 { margin-bottom: 18px; }
.story-quote {
  background: var(--sand-soft);
  border-left: 3px solid var(--saffron);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-style: italic;
  color: var(--ink) !important;
  margin: 22px 0 !important;
}
.story-name { display: flex; align-items: center; gap: 14px; }
.story-name .line { width: 36px; height: 2px; background: var(--saffron); }
.story-name strong { font-family: var(--font-mono); font-size: 0.88rem; display: block; }
.story-name span { color: var(--muted); font-size: 0.85rem; }

/* ===== Fleet (cards photo background, style Khmu "Discover") ===== */
.fleet { padding: 20px 0 96px; position: relative; }
.section-head { display: flex; align-items: baseline; gap: 22px; margin-bottom: 34px; }
.head-rule { flex: 1; height: 1px; background: var(--border); }
.fleet-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.fleet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(38, 37, 31, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(38, 37, 31, 0.16); }
.fleet-photo {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-photo { transform: scale(1.045); }
.fleet-info { padding: 22px 22px 24px; }
.fleet-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.fleet-top h3 { font-size: 1.25rem; }
.fleet-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.fleet-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #2ea86e; display: inline-block; }
.fleet-specs { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.fleet-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.fleet-price { font-family: var(--font-mono); font-size: 0.85rem; color: var(--muted); }
.fleet-price strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--saffron-dark); display: block; }
.btn-book-fleet {
  background: var(--asphalt); color: var(--white);
  padding: 11px 20px; font-size: 0.85rem;
}
.btn-book-fleet:hover { background: var(--saffron); color: var(--asphalt); transform: translateY(-2px); }

/* ===== Rates & booking (section sombre, style Khmu tabs) ===== */
.rates {
  background: var(--asphalt);
  color: var(--white);
  padding: 96px 0;
}
.rates-title { color: var(--white); margin-bottom: 30px; }

/* ===== Widget de réservation ===== */
.booking-widget {
  background: rgba(255, 253, 248, 0.04);
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex; flex-direction: column; gap: 22px;
  margin-bottom: 40px;
}
.bw-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; color: var(--white); }
.bw-label small { color: rgba(255, 253, 248, 0.55); font-weight: 400; }
.bw-vehicles { display: grid; gap: 10px; grid-template-columns: 1fr; }
.bw-vehicle {
  display: flex; flex-direction: column; gap: 3px; align-items: flex-start;
  background: rgba(255, 253, 248, 0.05);
  border: 1.5px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: inherit; font-size: 0.95rem; text-align: left;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.bw-vehicle span { color: rgba(255, 253, 248, 0.6); font-size: 0.82rem; }
.bw-vehicle:hover { border-color: rgba(232, 137, 12, 0.6); }
.bw-vehicle.selected { border-color: var(--saffron); background: rgba(232, 137, 12, 0.12); }
.bw-vehicle.selected strong { color: var(--saffron); }

.bw-dates, .bw-infos { display: grid; gap: 14px; grid-template-columns: 1fr; }
.booking-widget input {
  width: 100%;
  background: rgba(255, 253, 248, 0.06);
  border: 1.5px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.25s ease;
  color-scheme: dark;
}
.booking-widget input:focus { outline: none; border-color: var(--saffron); }
.booking-widget input::placeholder { color: rgba(255, 253, 248, 0.4); }

.bw-summary {
  background: rgba(255, 253, 248, 0.05);
  border: 1px dashed rgba(232, 137, 12, 0.5);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.bw-summary-row { display: flex; justify-content: space-between; font-size: 0.93rem; color: rgba(255, 253, 248, 0.72); }
.bw-summary-row strong { color: var(--white); }
.bw-summary-total { padding-top: 8px; border-top: 1px solid rgba(255, 253, 248, 0.12); font-size: 1.02rem; }
.bw-summary-total strong { color: var(--saffron); font-size: 1.2rem; }
.bw-note { color: #34d17f; font-size: 0.84rem; font-weight: 600; }

.btn-whatsapp {
  background: #25d366; color: #08240f;
  font-size: 1rem; padding: 15px;
  width: 100%;
}
.btn-whatsapp[aria-disabled="true"] { opacity: 0.45; cursor: not-allowed; }
.btn-whatsapp:not([aria-disabled="true"]):hover { background: #20bd5a; transform: translateY(-2px); }
.bw-hint { text-align: center; color: rgba(255, 253, 248, 0.55); font-size: 0.8rem; }

.rates-grid-heading {
  display: flex; align-items: center; gap: 16px;
  margin: 8px 0 28px;
  color: rgba(255, 253, 248, 0.55);
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.head-rule-sm { flex: 1; height: 1px; background: rgba(255, 253, 248, 0.14); }

.rate-tabs {
  display: inline-flex; flex-wrap: wrap; gap: 4px;
  background: var(--asphalt-soft);
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 36px;
}
.rate-tab {
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  color: rgba(255, 253, 248, 0.75);
  background: transparent; border: none;
  padding: 11px 22px; border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.rate-tab:hover { color: var(--white); }
.rate-tab.active { background: var(--saffron); color: var(--asphalt); font-weight: 700; }

.rate-panel { display: none; }
.rate-panel.active { display: block; }
.rate-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.rate-card {
  background: rgba(255, 253, 248, 0.05);
  border: 1px solid rgba(255, 253, 248, 0.1);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: border-color 0.3s ease, transform 0.35s var(--ease);
}
.rate-card:hover { border-color: rgba(232, 137, 12, 0.5); transform: translateY(-4px); }
.rate-card .price {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.9rem;
  color: var(--saffron);
}
.rate-card p { color: rgba(255, 253, 248, 0.8); margin: 6px 0 18px; font-size: 0.95rem; }
.btn-book {
  width: 100%;
  background: var(--saffron); color: var(--asphalt);
  font-weight: 700;
  padding: 12px;
  font-size: 0.92rem;
}
.btn-book:hover { background: #F59A1E; transform: translateY(-2px); }
.btn-book-alt {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 253, 248, 0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-book-alt:hover { color: var(--saffron); }
.btn-book-alt-dark { color: var(--muted); }
.btn-book-alt-dark:hover { color: var(--saffron-dark); }
.rates-note {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 0.8rem; letter-spacing: 0.06em;
  color: rgba(255, 253, 248, 0.6);
}

/* ===== Reviews ===== */
.reviews { padding: 96px 0; }
.reviews-head {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 38px;
}
.reviews-score { font-family: var(--font-mono); font-size: 0.88rem; color: var(--saffron-dark); }
.g-link { text-decoration: underline; }
.reviews-cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  max-width: 720px;
  box-shadow: 0 14px 40px rgba(38,37,31,.08);
}
.reviews-cta p { margin: 0 0 22px; font-size: 1.02rem; line-height: 1.6; }
.reviews-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 6px 20px rgba(38, 37, 31, 0.06);
}
.stars { color: var(--saffron); letter-spacing: 3px; margin-bottom: 10px; }
.verified {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}
.review-text { font-style: italic; color: var(--ink); margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--asphalt); color: var(--saffron);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
}
.review-author strong { display: block; font-size: 0.92rem; }
.review-author span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); }

/* ===== Contact (section sombre, style Khmu) ===== */
.contact {
  position: relative;
  color: var(--white);
  padding: 96px 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
  /* TODO: info client — photo d'ambiance en fond si dispo */
  background:
    radial-gradient(ellipse at 85% 15%, rgba(232, 137, 12, 0.16), transparent 55%),
    var(--teal);
}
.contact-grid { position: relative; z-index: 1; display: grid; gap: 44px; grid-template-columns: 1fr; align-items: center; }
.contact h2 { color: var(--white); margin-bottom: 24px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28); }
.contact-map iframe { display: block; }

/* ===== Contact — bloc infos (adresse + email) ===== */
.contact-info {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.12);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.contact-info-item:hover {
  background: rgba(255, 253, 248, 0.1);
  border-color: rgba(232, 137, 12, 0.55);
  transform: translateY(-2px);
}
.contact-info-icon {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(232, 137, 12, 0.16);
  color: var(--saffron);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--saffron);
}
.contact-info-body a {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
  word-break: break-word;
  transition: color .2s ease;
}
.contact-info-body a:hover { color: var(--saffron); }

@media (min-width: 640px) {
  .contact-info { grid-template-columns: 1fr 1fr; }
}

.contact-logo { display: flex; justify-content: flex-end; align-items: center; width: 100%; }
.logo-badge {
  width: min(380px, 100%); height: min(380px, 100%);
  margin: 0 0 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--white); color: var(--teal);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  box-shadow: 0 0 0 20px rgba(255, 253, 248, 0.12), 0 32px 80px rgba(0, 0, 0, 0.38);
}
/* Badge d'économie sur l'onglet tarif semaine */
.rate-save {
  display: inline-block; margin-left: 6px;
  background: var(--saffron); color: var(--asphalt);
  font-family: var(--font-mono); font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
/* Le logo est déjà rond et carré (1:1) → il remplit tout le badge */
.logo-badge img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.logo-badge small { font-family: var(--font-mono); font-weight: 400; font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== Footer ===== */
footer { background: var(--asphalt); color: rgba(255, 253, 248, 0.72); }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  padding: 64px 0 44px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { color: var(--white); }
.footer-logo .brand-name { font-size: 1.1rem; }
.footer-tagline { font-size: 0.88rem; max-width: 260px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 6px; }
.footer-nav a { font-size: 0.85rem; color: rgba(255, 253, 248, 0.75); }
.footer-nav a:hover { color: var(--saffron); }
.footer-col h4 {
  font-family: var(--font-mono); font-weight: 400; font-size: 0.74rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}
.footer-col p { font-size: 0.9rem; line-height: 1.8; }
.footer-col a:hover { color: var(--saffron); }

.footer-bottom { border-top: 1px solid rgba(255, 253, 248, 0.1); }
.footer-bottom-inner {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px 0;
  font-size: 0.82rem; text-align: center;
}
.footer-credit a { color: var(--saffron); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; animation: none !important; }
}

/* ===== ≥ 640px ===== */
@media (min-width: 640px) {
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-head { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bw-vehicles { grid-template-columns: repeat(3, 1fr); }
  .bw-dates, .bw-infos { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ≥ 960px ===== */
@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .btn-header { display: inline-flex; }
  .menu-toggle { display: none; }
  .story-grid { grid-template-columns: 1.05fr 1fr; }
  /* Photo en carré sur desktop : en 4:5 la colonne image dépasserait la colonne texte */
  .story-img img { aspect-ratio: 1 / 1; }
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .rate-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1.3fr 1fr; }
  .contact-logo { justify-content: flex-end; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .how-grid { grid-template-columns: repeat(4, 1fr); }
  .ridesafe-inner { flex-direction: row; align-items: center; gap: 34px; padding: 44px 44px; }
}

/* =========================================
   Nouvelles sections : How it works, Ride safe, FAQ, WhatsApp flottant
   ========================================= */

/* ===== How it works ===== */
.how { padding: 20px 0 90px; }
.how-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.how-step { position: relative; padding-top: 8px; }
.how-num {
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700;
  color: var(--saffron-dark); letter-spacing: 0.1em;
}
.how-icon { display: block; width: 40px; height: 40px; color: var(--saffron); margin: 10px 0; }
.how-icon svg { width: 100%; height: 100%; }
.how-step h3 { margin-bottom: 6px; }
.how-step p { color: var(--muted); font-size: 0.92rem; }

/* ===== Ride safe ===== */
.ridesafe { padding: 40px 0; }
.ridesafe-inner {
  display: flex; flex-direction: column; gap: 22px;
  background: var(--teal); color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 16px 44px rgba(26, 74, 79, 0.22);
}
.ridesafe-icon { width: 54px; height: 54px; color: var(--saffron); flex-shrink: 0; }
.ridesafe-icon svg { width: 100%; height: 100%; }
.ridesafe-text h2 { color: var(--white); margin-bottom: 12px; }
.ridesafe-text p { color: rgba(255, 253, 248, 0.85); margin-bottom: 16px; }
.ridesafe-points {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px;
  font-family: var(--font-mono); font-size: 0.8rem;
  color: rgba(255, 253, 248, 0.9);
}
.ridesafe-points li { display: flex; align-items: center; gap: 8px; }
.ridesafe-points li::before { content: "✓"; color: var(--saffron); font-weight: 700; }

/* ===== FAQ ===== */
.faq { padding: 20px 0 90px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--teal);
  padding: 20px 22px;
}
.faq-plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; background: var(--saffron);
  transition: transform 0.3s var(--ease);
}
.faq-plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-plus::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item.open .faq-plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 22px 20px; color: var(--muted); font-size: 0.93rem; }

/* ===== Bouton WhatsApp flottant ===== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.9);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.wa-float.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wa-float:hover { transform: translateY(-3px) scale(1.06); }
.wa-float svg { width: 32px; height: 32px; position: relative; z-index: 1; }
.wa-float-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float-pulse { animation: none; }
}

/* =========================================
   Touche d'identité franco-laotienne
   Discrète — n'affecte ni layout ni couleurs principales
   ========================================= */

/* Séparateurs entre sections : accent tricolore très subtil */
.fr-la-divider {
  width: 100%;
  height: 3px;
  margin: 50px 0;
  background: linear-gradient(90deg, #002E6D, #ffffff, #C8102E);
  opacity: 0.9;
}

/* Texture drapeau laotien dans le header — arrière-plan uniquement, quasi imperceptible */
#header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Bandes du drapeau lao en dégradé + cercle blanc centré, à sa vraie proportion */
  background-image:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="70" fill="white"/></svg>'),
    linear-gradient(to bottom, #CE1126 0%, #CE1126 25%, #002868 25%, #002868 75%, #CE1126 75%, #CE1126 100%);
  background-size: 72px 72px, 100% 100%;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.footer-copy p:first-child { margin: 0; }
.footer-signature {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 253, 248, 0.42);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
/* =========================================
   Correctif responsive
   Les blocs "How it works" et "Ride safe" ont été écrits APRÈS les media
   queries. Les @media n'ajoutent pas de spécificité : à spécificité égale,
   la dernière règle déclarée gagne. Leurs règles de base écrasaient donc
   le responsive (.how-grid restait en 1 colonne sur tous les écrans).
   On re-déclare ici, en fin de fichier, pour que le responsive reprenne la main.
   ========================================= */
@media (min-width: 640px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); }
  .ridesafe-inner { flex-direction: row; align-items: center; gap: 34px; padding: 44px 44px; }
}
/* =====================================================================
   PAGE RIDES (rides.html) — Laos Motorbike Loops
   ===================================================================== */
.page-rides { background: var(--sand); }

/* Hero de page */
.rides-hero {
  position: relative;
  padding: 150px 0 64px;
  background: linear-gradient(150deg, #1A4A4F 0%, #14383C 55%, #23211C 100%);
  color: var(--white);
  overflow: hidden;
}
.rides-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 85% 10%, rgba(232,137,12,.16), transparent 60%);
}
.rides-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.rides-hero h1 { color: var(--white); }
.rides-hero h1 em { color: var(--saffron); font-style: normal; }
.rides-hero-sub { margin: 18px 0 28px; font-size: 1.06rem; line-height: 1.65; color: rgba(255,253,248,.86); max-width: 620px; }
.rides-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Section carte + légende */
.mapsection { padding: 62px 0; }
.map-wrap { max-width: 900px; margin: 0 auto; }
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px rgba(38,37,31,.14);
  overflow: hidden;
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--teal, #1A4A4F);
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.map-open-link svg { width: 18px; height: 18px; }
.map-open-link:hover { border-color: var(--teal, #1A4A4F); }
@media (max-width: 600px) {
  .map-embed { aspect-ratio: 4 / 5; }
}
.best-time {
  max-width: 900px; margin: 26px auto 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px 26px;
}
.best-time h3 { font-size: 1.15rem; margin-bottom: 12px; }
.best-time-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.best-time p { color: var(--muted); font-size: .92rem; line-height: 1.55; }
.best-time strong { color: var(--saffron-dark); font-family: var(--font-mono); font-size: .82rem; letter-spacing: .03em; display: block; margin-bottom: 3px; }

/* Loops */
.loops { padding: 8px 0 68px; }
.loops-intro { max-width: 680px; color: var(--muted); margin: -14px 0 34px; font-size: 1rem; line-height: 1.6; }
.loop-list { display: grid; gap: 22px; }
.loop {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 28px 28px;
  box-shadow: 0 8px 24px rgba(38,37,31,.07);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.loop:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(38,37,31,.14); }
.loop-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 14px; }
.loop-num {
  font-family: var(--font-mono); font-weight: 700; font-size: 1.5rem;
  color: var(--saffron); line-height: 1; flex-shrink: 0; padding-top: 2px;
}
.loop-head h3 { font-size: 1.4rem; margin-bottom: 8px; }
.loop-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; }
.meta-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .02em; color: var(--muted);
}
.meta-item svg { width: 16px; height: 16px; color: var(--saffron-dark); }
.diff {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px; border: 1px solid transparent;
}
.diff-easy { background: rgba(46,125,50,.1); color: #2E7D32; border-color: rgba(46,125,50,.28); }
.diff-mod  { background: rgba(194,111,5,.12); color: var(--saffron-dark); border-color: rgba(194,111,5,.3); }
.diff-hard { background: rgba(206,17,38,.1); color: #C0392B; border-color: rgba(206,17,38,.28); }
.loop-desc { color: var(--ink); line-height: 1.62; margin-bottom: 16px; }
.highlights { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 22px; padding: 0; }
.highlights li {
  font-size: .82rem; color: var(--asphalt-soft);
  background: var(--sand); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 999px;
}
.loop-cta { margin-top: 2px; }

/* CTA final */
.ride-cta {
  background: linear-gradient(150deg, #23211C 0%, #14383C 100%);
  color: var(--white); text-align: center; padding: 66px 0;
}
.ride-cta-inner { max-width: 620px; }
.ride-cta h2 { color: var(--white); }
.ride-cta p { margin: 14px auto 26px; color: rgba(255,253,248,.85); line-height: 1.6; }

/* Responsive */
@media (max-width: 620px) {
  .best-time-cols { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .rides-hero { padding: 130px 0 52px; }
  .loop { padding: 22px 20px 24px; }
  .loop-head { gap: 12px; }
  .loop-num { font-size: 1.25rem; }
  .loop-head h3 { font-size: 1.2rem; }
}

/* ============ Bouton "Voir le trajet" + Modal ============ */
.loop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-outline-route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid var(--teal, #1A4A4F);
  color: var(--teal, #1A4A4F);
  background: transparent;
  border-radius: 8px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-outline-route svg { width: 18px; height: 18px; }
.btn-outline-route:hover {
  background: var(--teal, #1A4A4F);
  color: #fff;
}

.route-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.route-modal.active { display: flex; }
.route-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 33, 28, 0.85);
  backdrop-filter: blur(4px);
}
.route-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #F6F1E7;
  border-radius: 12px;
  padding: 16px;
  z-index: 1;
  animation: routeModalIn 0.25s ease;
}
.route-modal__content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  display: block;
}
.route-modal__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E8890C;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
@keyframes routeModalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@media (max-width: 600px) {
  .loop-actions { flex-direction: column; }
  .btn-outline-route, .loop-actions .loop-cta { width: 100%; justify-content: center; }
}

/* ===== Explore teaser (maillage interne vers rides.html) ===== */
.explore-teaser { padding: 72px 0; background: var(--sand-soft); }
.explore-teaser-inner { max-width: 720px; }
.explore-teaser h2 { margin: 8px 0 14px; }
.explore-teaser p { color: var(--ink); line-height: 1.6; margin-bottom: 24px; font-size: 1.02rem; }


/* =========================================
   RENTAL REQUIREMENTS
   ========================================= */
.requirements { padding: 20px 0 96px; }

.requirements-lead {
  max-width: 560px;
  margin: -14px 0 34px;
  color: var(--muted);
  font-size: 1rem;
}

.req-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }

.req-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.req-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 137, 12, .5);
  box-shadow: 0 16px 36px -20px rgba(35, 33, 28, .5);
}

.req-num {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--font-mono); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; color: var(--border);
}

.req-icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(232, 137, 12, .12);
  color: var(--saffron);
  margin-bottom: 18px;
}
.req-icon svg { width: 25px; height: 25px; }

.req-card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.req-card p { color: var(--muted); font-size: .93rem; }

.req-note {
  margin-top: 26px;
  padding: 16px 20px;
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(26, 74, 79, .06);
  color: var(--asphalt-soft);
  font-size: .92rem;
}
.req-note strong { color: var(--teal); font-family: var(--font-display); }

@media (min-width: 640px) {
  .req-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .req-grid { grid-template-columns: repeat(3, 1fr); }
  .req-card { padding: 34px 30px; }
}


/* ===== Photo d'illustration par loop (rides.html) ===== */
.loop { overflow: hidden; }
.loop-photo {
  margin: -26px -28px 22px;
  background: var(--sand-soft);
  overflow: hidden;
}
.loop-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.loop:hover .loop-photo img { transform: scale(1.045); }

@media (min-width: 960px) {
  .loop-photo img { aspect-ratio: 21 / 9; }
}
@media (max-width: 560px) {
  .loop-photo { margin: -22px -20px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .loop-photo img { transition: none; }
  .loop:hover .loop-photo img { transform: none; }
}

/* ===== QR code Instagram (colonne contact) ===== */
.contact-logo { flex-direction: column; align-items: center; gap: 40px; }
.logo-badge { margin: 0 auto; }

.ig-qr {
  width: min(380px, 100%);
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 20px;
  background: var(--white);
  border: 1px solid rgba(232, 137, 12, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.ig-qr-code {
  line-height: 0;
  border-radius: var(--radius);
  background: var(--sand);
  padding: 12px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.ig-qr-code:hover, .ig-qr-code:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.ig-qr-code img { width: 150px; height: 150px; display: block; }

.ig-qr-body { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ig-qr-label {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--saffron-dark);
}
.ig-qr-handle {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--asphalt);
}
.ig-qr-handle svg { width: 18px; height: 18px; flex: none; color: var(--saffron); }
.ig-qr-handle:hover { color: var(--saffron-dark); }
.ig-qr-body p {
  margin: 2px 0 0;
  max-width: 30ch;
  font-size: 0.82rem; line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 560px) {
  .contact-logo { gap: 32px; }
  .ig-qr { padding: 28px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .ig-qr-code { transition: none; }
}