/* =========================================================
   Zedriver — Premium VTC · Stylesheet
   ========================================================= */

:root {
  --black: #0a0a0c;
  --ink: #14151a;
  --ink-2: #1d1f27;
  --gold: #c8a86b;
  --gold-2: #d9bd84;
  --gold-soft: rgba(200, 168, 107, 0.12);
  --cream: #f7f4ef;
  --paper: #ffffff;
  --muted: #6c6f78;
  --line: rgba(20, 21, 26, 0.10);
  --line-light: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px -24px rgba(10, 10, 12, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(10, 10, 12, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --bg-dark: #14151a;
  --bg-dark-2: #1d1f27;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --maxw: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* L'attribut [hidden] doit toujours l'emporter sur display:flex/grid */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
.eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em; padding: 15px 28px; border-radius: 100px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 11px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--black); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(200, 168, 107, 0.55); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-light { border: 1px solid var(--line-light); color: #fff; }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }
/* Ghost buttons on dark backgrounds need light text + visible border */
.section-dark .btn-ghost { border-color: var(--line-light); color: #fff; }
.section-dark .btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(14px); padding: 12px 0;
  box-shadow: 0 1px 0 var(--line-light);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 10px; flex: none;
}
.brand-text {
  display: flex; flex-direction: column; font-family: var(--serif);
  font-size: 1.4rem; font-weight: 700; color: #fff; letter-spacing: 0.08em; line-height: 1;
}
.brand-text small {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin-top: 4px;
}
.scrolled .brand-text { font-size: 1.25rem; }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: 0.92rem; font-weight: 500; color: rgba(255, 255, 255, 0.82);
  position: relative; transition: color .2s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--gold); transition: width .25s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-btn {
  font-size: 0.82rem; font-weight: 600; color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em; transition: color .2s ease;
}
.lang-btn.is-active { color: var(--gold); }
.lang-btn:hover { color: #fff; }
.lang-sep { color: rgba(255, 255, 255, 0.3); font-size: 0.8rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(200, 168, 107, 0.18), transparent 60%),
    linear-gradient(160deg, rgba(10,10,12,.55) 0%, rgba(20,21,26,.42) 45%, rgba(29,31,39,.62) 100%),
    url('../img/hero-taxi-paris.png') center 30%/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ""; 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: 64px 64px;
  mask-image: radial-gradient(circle at 30% 40%, black, transparent 75%);
}
.hero-content {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1fr; gap: 60px; align-items: start; width: 100%; max-width: 680px;
}
.hero-text { padding-top: clamp(30px, 7vh, 80px); }
.hero-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1.05rem; color: #fff; letter-spacing: 0.02em;
  padding: 10px 20px; margin-bottom: 22px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-light);
  border-radius: 100px; backdrop-filter: blur(6px);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.hero-phone svg { color: var(--gold); flex: none; }
.hero-phone:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-soft); }
.hero-eyebrow {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem); color: #fff; margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.12rem; color: rgba(255, 255, 255, 0.72); max-width: 520px; margin-bottom: 30px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-badges li { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.hero-badges .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }

/* ---------- Booking card ---------- */
.section-booking { background: var(--paper); padding: 0 0 80px; }
.booking-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.booking-form-col { padding-top: 8px; }
.booking-est-col {
  position: sticky; top: 100px; align-self: start;
  display: flex; flex-direction: column; justify-content: flex-start;
}
/* once the estimate or loading is visible, pin content to top */
.booking-est-col:has(#estimate:not([hidden])),
.booking-est-col:has(#estimateLoading:not([hidden])),
.booking-est-col:has(#estimateError:not([hidden])) {
  justify-content: flex-start;
}
.est-placeholder {
  flex: none; margin-top: 14px;
  border: 1.5px dashed var(--line); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--muted); font-size: 0.9rem;
  background: #fbfaf8; padding: 22px 18px;
}
.booking-card {
  background: var(--paper); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow); position: relative;
}
.booking-title { font-size: 1.7rem; margin-bottom: 22px; color: var(--ink); }
.field { margin-bottom: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Form groups (étapes) ---------- */
.form-group {
  padding: 22px; margin-bottom: 18px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fcfbf9;
}
.form-group:last-of-type { margin-bottom: 20px; }
.form-group-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.form-step-num {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 700; color: var(--gold);
  background: var(--gold-soft); border: 1px solid var(--gold);
}
.form-group-title {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink);
}
.form-group .field:last-child,
.form-group .field-row:last-child { margin-bottom: 0; }
.form-group .field-row { margin-bottom: 14px; }
.form-divider {
  border: none; height: 1px; margin: 22px 0;
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
  position: relative;
}
.form-divider::after {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.field label {
  display: block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.field input, .field select {
  width: 100%; font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fbfaf8; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.field input.invalid, .field select.invalid { border-color: #d3553f; box-shadow: 0 0 0 3px rgba(211, 85, 63, 0.12); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error-summary {
  display: none; background: rgba(211, 85, 63, 0.1); border: 1px solid #d3553f;
  color: #d3553f; border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 0.88rem; font-weight: 600; margin-bottom: 14px;
}
.form-error-summary:not([hidden]) { display: block; }
.booking-card .btn { margin-top: 8px; }
.booking-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 12px; }

/* ---------- Autocomplete ---------- */
.field-autocomplete { position: relative; }
.ac-input { position: relative; }
.ac-input input { padding-left: 38px; }
.ac-pin {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 9px; height: 9px; border-radius: 50%; pointer-events: none;
}
.ac-pin-start { background: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.ac-pin-end {
  background: transparent; border: 2px solid var(--gold);
  border-radius: 2px; width: 10px; height: 10px;
}
.ac-spinner {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--line); border-top-color: var(--gold);
  animation: ac-spin .7s linear infinite;
}
@keyframes ac-spin { to { transform: translateY(-50%) rotate(360deg); } }

.ac-list {
  position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 6px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); max-height: 260px; overflow-y: auto; padding: 6px;
}
.ac-item {
  display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px;
  border-radius: 8px; cursor: pointer; font-size: 0.9rem; color: var(--ink);
  transition: background .15s ease;
}
.ac-item:hover, .ac-item.active { background: var(--gold-soft); }
.ac-item-pin { font-size: 0.85rem; line-height: 1.4; flex: none; opacity: 0.7; }
.ac-item-text { line-height: 1.35; }

/* ---------- Quick places (aéroports / gares) ---------- */
.quick-places { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 8px; }
.quick-label { font-size: 0.72rem; color: var(--muted); margin-right: 2px; }
.quick-chip {
  font-size: 0.78rem; font-weight: 600; color: var(--ink);
  padding: 5px 12px; border-radius: 100px; border: 1px solid var(--line);
  background: #fbfaf8; transition: all .2s ease;
}
.quick-chip:hover { border-color: var(--gold); color: var(--gold); }
.quick-chip.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ---------- Round-trip checkbox ---------- */
.round-trip {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  font-size: 0.9rem; color: var(--ink); margin: 4px 0 14px;
}
.round-trip input { position: absolute; opacity: 0; pointer-events: none; }
.round-trip-box {
  width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--line);
  display: grid; place-items: center; transition: all .2s ease; flex: none;
}
.round-trip-box::after {
  content: "✓"; font-size: 0.72rem; color: var(--black); opacity: 0; transition: opacity .2s ease;
}
.round-trip input:checked + .round-trip-box {
  background: var(--gold); border-color: var(--gold);
}
.round-trip input:checked + .round-trip-box::after { opacity: 1; }
.round-trip input:focus-visible + .round-trip-box { box-shadow: 0 0 0 3px var(--gold-soft); }

.luggage-hint { font-size: 0.8rem; color: var(--muted); padding-top: 12px; }
.payment-note { font-size: 0.8rem; color: var(--muted); margin-top: 8px; }

/* ---------- Estimate panel ---------- */
.estimate {
  display: grid; grid-template-columns: 1fr;
  margin-top: 10px; padding: 16px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #faf7f1, #fff);
  border: 1px solid var(--gold); animation: est-in .35s ease;
}
/* has-map no longer creates a 2-col grid — estimate lives in its own column */
.estimate.has-map { display: block; }
@keyframes est-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Stats bar */
.estimate-trip {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  margin-bottom: 18px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; background: #fff;
}
.estimate-item {
  display: flex; flex-direction: column; gap: 5px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}
.estimate-item:last-child { border-right: none; }
.estimate-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--muted);
}
.estimate-item strong { font-family: var(--serif); font-size: 1.45rem; line-height: 1.1; color: var(--ink); }

/* ---------- Price cards (3 véhicules) ---------- */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.price-card {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 16px 10px 14px; border-radius: var(--radius-sm); text-align: center;
  border: 1.5px solid var(--line); background: #fff;
  cursor: pointer; transition: all .2s ease;
}
.price-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 4px 16px rgba(200,168,107,0.18); }
.price-card.selected { border-color: var(--gold); background: var(--gold-soft); box-shadow: 0 0 0 1.5px var(--gold); transform: translateY(-2px); }
.price-veh { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; color: var(--ink); }
.price-amount { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.price-pax { font-size: 0.71rem; color: var(--muted); }

/* ---------- Route map ---------- */
.route-map {
  height: 300px; border-radius: var(--radius-sm);
  overflow: hidden; border: 1px solid var(--line); background: #14151a;
}
.route-map .leaflet-container { background: #14151a; width: 100% !important; height: 100% !important; }
/* Mode clair (jour) */
.route-map.route-map--light { background: #e8e4dc; }
.route-map.route-map--light .leaflet-container { background: #e8e4dc; }

/* Plein écran */
.route-map.route-map--full {
  position: fixed; inset: 0; z-index: 200; height: 100vh !important;
  border-radius: 0; border: none;
}

/* Contrôles Leaflet — charte or/sombre */
.route-map .leaflet-control-zoom a,
.route-map .map-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: rgba(20,21,26,0.92); color: var(--gold);
  border: 1px solid rgba(200,168,107,0.35); border-radius: 8px !important;
  font-size: 18px; font-weight: 600; line-height: 1; text-decoration: none;
  backdrop-filter: blur(6px); transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.route-map .leaflet-control-zoom { border: none; box-shadow: none; }
.route-map .leaflet-control-zoom a { margin-bottom: 6px; }
.route-map .leaflet-control-zoom a:hover,
.route-map .map-btn:hover { background: var(--gold); color: #14151a; border-color: var(--gold); }
.route-map .map-btn.is-active { background: var(--gold); color: #14151a; }
.route-map .leaflet-bar { border: none; box-shadow: none; }
.route-map .leaflet-top.leaflet-right { display: flex; flex-direction: column; gap: 6px; padding: 8px; }
.route-map .leaflet-control-attribution {
  background: rgba(20,21,26,0.7); color: rgba(255,255,255,0.5); font-size: 10px;
  padding: 2px 6px; border-radius: 6px 0 0 0;
}
.route-map .leaflet-control-attribution a { color: rgba(200,168,107,0.7); }
.route-map .leaflet-control-scale-line {
  background: rgba(20,21,26,0.7); color: rgba(255,255,255,0.7);
  border-color: rgba(200,168,107,0.4); border-top: none;
}
.route-map .map-tip {
  background: #14151a; color: #fff; border: 1px solid rgba(200,168,107,0.5);
  border-radius: 8px; font-family: var(--sans); font-size: 0.78rem; font-weight: 500;
  padding: 5px 10px; box-shadow: 0 6px 18px -6px rgba(0,0,0,0.6);
}
.route-map .map-tip::before { border-top-color: rgba(200,168,107,0.5); }

.estimate-note {
  font-size: 0.75rem; color: var(--muted); margin-top: 14px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  background: rgba(200,168,107,0.07); border: 1px solid rgba(200,168,107,0.2);
  text-align: center;
}

.estimate-loading {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 10px; padding: 14px; font-size: 0.88rem; color: var(--muted);
}
.estimate-loading .ac-spinner { position: static; transform: none; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.estimate-error {
  margin-top: 10px; padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(211, 85, 63, 0.08); border: 1px solid rgba(211, 85, 63, 0.35);
  color: #8a2c1c; font-size: 0.85rem; text-align: center;
}

.booking-success { text-align: center; padding: 20px 6px; }
.success-check {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.8rem; color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.booking-success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.booking-success p { color: var(--muted); margin-bottom: 18px; }

/* Panneau paiement (carte) */
.success-check--pay { font-size: 1.4rem; }
.payment-module {
  margin: 4px auto 18px; max-width: 380px;
  border: 1.5px dashed var(--line); border-radius: var(--radius-sm);
  padding: 26px 18px; background: #fbfaf8;
}
.payment-placeholder { color: var(--muted); font-size: 0.9rem; margin: 0; }
/* Panneau espèces : bouton d'appel */
.booking-cash #cashCall { margin-bottom: 12px; }
.booking-cash #cashCall svg { margin-right: 2px; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--bg-dark); border-top: 1px solid var(--line-light); }
.trust-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 30px 24px; text-align: center;
}
.trust-item strong {
  display: block; font-family: var(--serif); font-size: 2rem; color: var(--gold); line-height: 1;
}
.trust-item span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); letter-spacing: 0.02em; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.legal-page h2 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--ink); }
.legal-page p { color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.legal-page ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal-page li { color: var(--muted); line-height: 1.7; margin-bottom: 6px; }
.legal-page code {
  background: var(--gold-soft); color: var(--gold); padding: 2px 6px;
  border-radius: 4px; font-size: 0.85em;
}
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark .section-title { color: #fff; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-title { font-size: clamp(2rem, 3.6vw, 3rem); color: var(--ink); margin-bottom: 16px; }
.section-lead { font-size: 1.08rem; color: var(--muted); }
.section-dark .section-lead { color: rgba(255,255,255,0.7); }

/* ---------- Grid & cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.section-dark .card { background: var(--bg-dark-2); border-color: var(--line-light); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: var(--gold); }

.service-card .card-icon {
  width: 56px; height: 56px; display: grid; place-items: center; font-size: 1.5rem;
  background: var(--gold-soft); color: var(--gold); border-radius: 14px; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Fleet ---------- */
.fleet-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.fleet-img {
  height: 270px; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.fleet-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,12,0.18) 0%, transparent 45%, rgba(10,10,12,0.5) 100%); pointer-events: none; }
.fleet-sedan { background: linear-gradient(135deg, #2a2d38, #3a3f4d), radial-gradient(circle at 70% 30%, var(--gold-soft), transparent); }
.fleet-van { background: linear-gradient(135deg, #20232c, #313643); }
.fleet-first { background: linear-gradient(135deg, #1a1c24, #2c303b); }
.fleet-eco { background: linear-gradient(135deg, #23262f, #343a47); }
.fleet-sedan, .fleet-van, .fleet-first, .fleet-eco { display: block; background: #0c0d11; }
.fleet-img img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  object-position: center 45%;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.fleet-card:hover .fleet-img img { transform: scale(1.06); }
.fleet-body { padding: 26px 26px 28px; position: relative; display: flex; flex-direction: column; flex: 1; }
.fleet-tag {
  position: absolute; top: -14px; left: 26px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  padding: 6px 12px; border-radius: 100px;
}
.fleet-body h3 { font-size: 1.4rem; margin-bottom: 6px; color: #fff; }
.fleet-body p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 18px; }
.fleet-specs { display: flex; gap: 24px; margin-bottom: 20px; }
.fleet-body .btn { margin-top: auto; }
.fleet-specs li { display: flex; flex-direction: column; }
.fleet-specs span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); }
.fleet-specs strong { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
.fleet-featured { border-color: var(--gold); }

/* ---------- Steps ---------- */
.steps .step { text-align: center; padding: 10px; }
.step-num {
  display: inline-block; font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: var(--gold); opacity: 0.85; margin-bottom: 12px;
}
.step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.96rem; max-width: 300px; margin: 0 auto; }

/* ---------- Split / About ---------- */
.section-split { padding: 0; }
.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.split-media {
  min-height: 560px;
  background-image: url('https://images.unsplash.com/photo-1531973576160-7125cd663d86?fit=crop&w=900&h=700&q=80');
  background-size: cover; background-position: center top;
  position: relative;
}
.split-media::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(20,21,26,0.18) 0%, rgba(20,21,26,0.08) 100%);
}
.split-text { padding: 90px 70px; }
.split-text p { color: var(--muted); margin-bottom: 16px; }
.check-list { margin-top: 24px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 500; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px;
  display: grid; place-items: center; font-size: 0.7rem; color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); border-radius: 50%;
}

/* ---------- Reviews ---------- */
.review-card { display: flex; flex-direction: column; gap: 14px; }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; }
.review-card p { color: rgba(255,255,255,0.82); font-style: italic; font-size: 1rem; flex: 1; }
.review-card footer { display: flex; flex-direction: column; }
.review-card footer strong { color: #fff; font-family: var(--serif); font-size: 1.1rem; }
.review-card footer span { color: var(--gold); font-size: 0.82rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(200,168,107,0.2), transparent 60%),
    linear-gradient(135deg, #0a0a0c, #1d1f27);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  padding: 70px 24px; flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: #fff; margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.7); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.contact-list { margin-top: 24px; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-size: 1.05rem; }
.contact-list .ci {
  width: 42px; height: 42px; display: grid; place-items: center; flex: none;
  background: var(--gold-soft); color: var(--gold); border-radius: 12px; font-size: 1.1rem;
}
.contact-list a:hover { color: var(--gold); }
.contact-cta { text-align: center; }
.contact-cta h3 { font-size: 1.5rem; margin-bottom: 10px; }
.contact-cta p { color: var(--muted); margin-bottom: 22px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.7); padding-top: 70px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid var(--line-light);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { max-width: 280px; font-size: 0.95rem; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col span { display: block; font-size: 0.92rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 24px 30px; font-size: 0.85rem; color: rgba(255,255,255,0.5); flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--gold); }

/* ---------- Floating actions (WhatsApp / call / book) ---------- */
.float-actions {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.float-btn {
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,0.45); transition: transform .2s ease;
}
.float-btn:hover { transform: translateY(-2px) scale(1.04); }
.float-whatsapp, .float-call {
  width: 54px; height: 54px; border-radius: 50%; color: #fff;
}
.float-whatsapp { background: #25d366; }
.float-call { background: var(--bg-dark); }
.float-book {
  display: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--black);
  font-weight: 600; padding: 14px 24px; border-radius: 100px; font-size: 0.95rem;
  box-shadow: 0 12px 28px -8px rgba(200,168,107,0.6);
}

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Pricing grid ---------- */
.pricing-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 10px; margin-bottom: 34px;
}
.pricing-tabs-label {
  width: 100%; text-align: center; margin-bottom: 4px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.pricing-tab {
  padding: 9px 20px; border: 1px solid var(--line); border-radius: 100px;
  font-family: var(--sans); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--muted); background: transparent;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.pricing-tab:hover { border-color: var(--gold); color: var(--ink); }
.pricing-tab.is-active {
  color: var(--gold); border-color: var(--gold); background: var(--gold-soft);
}
.pricing-panel { display: none; }
.pricing-panel.is-active { display: block; }
.pricing-table-wrap {
  max-width: 860px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--paper);
}
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table thead th {
  background: var(--bg-dark); color: rgba(255,255,255,0.72);
  font-family: var(--sans); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 15px 22px; text-align: center; white-space: nowrap;
}
.pricing-table thead th:first-child { text-align: left; }
.pricing-table thead th:not(:first-child) { color: var(--gold); }
.pricing-table tbody td { padding: 15px 22px; text-align: center; border-bottom: 1px solid var(--line); vertical-align: middle; }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr { transition: background .2s ease; }
.pricing-table tbody tr:hover { background: var(--gold-soft); }
.pt-dest {
  text-align: left; font-family: var(--serif); font-weight: 600; font-size: 1.1rem;
  color: var(--ink); white-space: nowrap; position: relative; padding-left: 38px !important;
}
.pt-dest::before {
  content: ""; position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.pt-price { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); line-height: 1; }
.pt-lbl { display: none; }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.86rem; font-style: italic; margin-top: 22px; }

/* ---------- Mobile nav panel ---------- */
@media (max-width: 980px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; gap: 8px; padding: 100px 28px 40px;
    background: rgba(10,10,12,0.98); backdrop-filter: blur(14px);
    transform: translateX(100%); transition: transform .35s ease; z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.15rem; padding: 12px 0; border-bottom: 1px solid var(--line-light); width: 100%; }
  .nav-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 44px; }
  .booking-cols { grid-template-columns: 1fr; }
  .booking-est-col { position: static; }
  .contact-inner { grid-template-columns: 1fr; }
  .split-inner { grid-template-columns: 1fr; }
  .split-media { min-height: 320px; }
  .split-text { padding: 56px 24px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-book-hide { display: none; }
  /* Le bouton flottant "Réserver" prend le relais : on allège le header */
  .header-actions .btn-gold { display: none; }
  .header-actions { gap: 12px; }
  .float-cta { display: inline-flex; }
  .float-book { display: inline-flex; }
  .cta-inner { flex-direction: column; align-items: flex-start; }

  /* Pricing : tableau -> cartes empilées */
  .pricing-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td { display: block; width: 100%; }
  .pricing-table-wrap { background: transparent; box-shadow: none; border: none; overflow: visible; }
  .pricing-table tr {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm); margin-bottom: 16px; padding: 8px 4px;
  }
  .pricing-table tr:hover { background: var(--paper); }
  .pricing-table td { text-align: left; border-bottom: 1px solid var(--line); padding: 12px 18px;
    display: flex; align-items: center; justify-content: space-between; }
  .pricing-table tr td:last-child { border-bottom: none; }
  .pt-dest { font-size: 1.2rem; padding: 14px 18px 10px 34px !important; white-space: normal; }
  .pt-dest::before { left: 18px; }
  .pt-lbl { display: inline; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted); }
  .pt-price { font-size: 1.35rem; }
}

@media (max-width: 460px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .price-cards { grid-template-columns: 1fr; }
  .estimate-trip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
  .container { padding: 0 18px; }
  .brand-text { font-size: 1.2rem; }
  .brand-text small { display: none; }
  .header-actions { gap: 10px; }
  .lang-switch { gap: 4px; }
}

/* =========================================================
   RTL — Arabic support (dir="rtl")
   ========================================================= */
[dir="rtl"] body { font-family: "Cairo", var(--sans); }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 {
  font-family: "Cairo", var(--serif); letter-spacing: 0;
}
[dir="rtl"] .brand-text, [dir="rtl"] .brand-mark,
[dir="rtl"] .price-amount, [dir="rtl"] .estimate-item strong,
[dir="rtl"] .step-num, [dir="rtl"] .fleet-specs strong,
[dir="rtl"] .trust-item strong, [dir="rtl"] .split-media::before {
  font-family: "Cormorant Garamond", "Cairo", serif;
}

/* Inputs: move the icon/pin to the right, text padding to the right side */
[dir="rtl"] .ac-input input { padding-left: 14px; padding-right: 38px; }
[dir="rtl"] .ac-pin { left: auto; right: 14px; }
[dir="rtl"] .ac-spinner { right: auto; left: 12px; }
[dir="rtl"] .field label,
[dir="rtl"] .field input,
[dir="rtl"] .field select { text-align: right; }
[dir="rtl"] .ac-item { flex-direction: row-reverse; text-align: right; }

/* Quick chips spacing */
[dir="rtl"] .quick-label { margin-right: 0; margin-left: 2px; }

/* Round-trip / check mark icon stays logical via flex; ensure list bullets flip */
[dir="rtl"] .check-list li { padding-left: 0; padding-right: 30px; }
[dir="rtl"] .check-list li::before { left: auto; right: 0; }

/* Floating actions to the left in RTL */
[dir="rtl"] .float-actions { right: auto; left: 18px; align-items: flex-start; }

/* Fleet tag flips to the right edge */
[dir="rtl"] .fleet-tag { left: auto; right: 26px; }

/* Main nav underline origin */
[dir="rtl"] .main-nav a::after { left: auto; right: 0; }

/* Mobile nav slides in from the left */
@media (max-width: 980px) {
  [dir="rtl"] .main-nav { inset: 0 auto 0 0; transform: translateX(-100%); }
  [dir="rtl"] .main-nav.open { transform: translateX(0); }
}

/* =========================================================
   Theme toggle button
   ========================================================= */
.theme-toggle {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 50%; color: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line-light); transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.theme-toggle:hover { color: var(--gold); border-color: var(--gold); }
.theme-toggle .ico-sun { display: none; }
.theme-toggle .ico-moon { display: block; }
html[data-theme="dark"] .theme-toggle .ico-sun { display: block; }
html[data-theme="dark"] .theme-toggle .ico-moon { display: none; }

/* =========================================================
   Hero — skyline + bokeh + parallax
   ========================================================= */
.hero-skyline {
  display: none;
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  color: #07080a; line-height: 0; pointer-events: none; will-change: transform;
}
.hero-skyline svg { width: 100%; height: 190px; display: block; opacity: .85; }
.hero-skyline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 190px;
  background: linear-gradient(180deg, transparent, rgba(10,10,12,.6));
}
.hero-bokeh { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; will-change: transform; }
.hero-bokeh span {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,107,.6), transparent 70%);
  filter: blur(1px); animation: bokeh-float 9s ease-in-out infinite;
}
.hero-bokeh span:nth-child(1) { width: 10px; height: 10px; top: 24%; left: 12%; animation-delay: 0s; }
.hero-bokeh span:nth-child(2) { width: 6px; height: 6px; top: 60%; left: 22%; animation-delay: 1.2s; opacity: .7; }
.hero-bokeh span:nth-child(3) { width: 14px; height: 14px; top: 38%; left: 70%; animation-delay: 2.1s; }
.hero-bokeh span:nth-child(4) { width: 8px; height: 8px; top: 70%; left: 82%; animation-delay: .6s; opacity: .8; }
.hero-bokeh span:nth-child(5) { width: 5px; height: 5px; top: 18%; left: 54%; animation-delay: 3s; opacity: .6; }
.hero-bokeh span:nth-child(6) { width: 11px; height: 11px; top: 48%; left: 40%; animation-delay: 1.8s; opacity: .5; }
@keyframes bokeh-float {
  0%, 100% { transform: translateY(0); opacity: .3; }
  50% { transform: translateY(-26px); opacity: .9; }
}
.hero-content { position: relative; z-index: 3; }

/* =========================================================
   Logos / trusted-by strip
   ========================================================= */
.logos-strip { background: var(--bg-dark); padding: 26px 0 30px; border-top: 1px solid var(--line-light); overflow: hidden; }
.logos-title {
  text-align: center; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px;
}
.logos-marquee { position: relative; direction: ltr; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logos-track { display: flex; gap: 56px; width: max-content; direction: ltr; animation: logos-scroll 34s linear infinite; }
.logos-strip:hover .logos-track { animation-play-state: paused; }
.logo-item {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55); white-space: nowrap; transition: color .25s ease;
}
.logo-item:hover { color: var(--gold); }
@keyframes logos-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   Experience gallery
   ========================================================= */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.exp-card {
  padding: 30px 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, var(--paper), var(--cream));
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.exp-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.exp-ico {
  display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 18px;
  color: var(--gold); background: var(--gold-soft); border-radius: 14px;
}
.exp-card h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--ink); }
.exp-card p { color: var(--muted); font-size: 0.94rem; }

/* =========================================================
   Richer card hover (gold sheen)
   ========================================================= */
.card { position: relative; overflow: hidden; }
.card::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: skewX(-18deg); transition: left .6s ease; pointer-events: none;
}
.card:hover::after { left: 130%; }
.service-card .card-icon { transition: transform .3s ease; }
.service-card:hover .card-icon { transform: translateY(-3px) scale(1.06); }

/* =========================================================
   Dark theme overrides (toggle)
   ========================================================= */
html[data-theme="dark"] {
  --paper: #15161c;
  --cream: #101117;
  --ink: #f2efe9;
  --muted: #9a9da6;
  --line: rgba(255, 255, 255, 0.10);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.65);
  --shadow-sm: 0 10px 28px -14px rgba(0, 0, 0, 0.6);
}
html[data-theme="dark"] body { background: #0a0a0c; }
html[data-theme="dark"] .field input,
html[data-theme="dark"] .field select { background: #1d1f27; color: var(--ink); }
html[data-theme="dark"] .quick-chip { background: #1d1f27; color: var(--ink); }
html[data-theme="dark"] .price-card { background: #1d1f27; }
html[data-theme="dark"] .estimate { background: linear-gradient(135deg, #1d1f27, #23262f); }
html[data-theme="dark"] .estimate-item strong,
html[data-theme="dark"] .booking-title,
html[data-theme="dark"] .section-title { color: var(--ink); }
html[data-theme="dark"] .btn-ghost { border-color: var(--line); color: var(--ink); }
html[data-theme="dark"] .round-trip-box { border-color: var(--line); }
html[data-theme="dark"] .exp-ico { background: rgba(200,168,107,0.16); }
html[data-theme="dark"] .form-group { background: #1a1b22; border-color: var(--line); }
html[data-theme="dark"] .payment-module { background: #1a1b22; border-color: var(--line); }

/* RTL for new elements */
[dir="rtl"] .logos-track { animation-name: logos-scroll; }
@keyframes logos-scroll-rtl { from { transform: translateX(-50%); } to { transform: translateX(0); } }
[dir="rtl"] .hero-sub, [dir="rtl"] .booking-note, [dir="rtl"] .estimate-note { text-align: right; }

@media (max-width: 760px) {
  .exp-grid { grid-template-columns: 1fr; }
  .hero-skyline svg { height: 130px; }
  .hero-skyline::after { height: 130px; }
}
