/* ==========================================================================
   TAXI BORDEAUX — Style inspiré Occitanie Chauffeur
   Design : Luxe moderne discret, noir/blanc/doré, sections aérées
   Sections : Hero → Réservation → Flotte → Engagements → Prestations → Équipements → Footer
   ========================================================================== */

/* --- Font Inter (auto-hébergée) --- */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/InterVariable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/InterVariable-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

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

:root {
  /* Palette — noir, blanc, or/cuivre comme accent */
  --noir:         #0A0A0A;
  --noir-carte:   #111111;
  --noir-light:   #1A1A1A;
  --gris-900:     #222222;
  --gris-700:     #555555;
  --gris-500:     #888888;
  --gris-300:     #CCCCCC;
  --gris-100:     #F2F2F2;
  --blanc:        #FFFFFF;
  --or:           #C9A84C;
  --or-light:     #E0C76A;
  --or-dark:      #A88A34;
  --rouge-erreur: #D44;

  /* Typo */
  --font-heading: 'Inter', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body:    'Inter', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing */
  --gutter:       clamp(1.2rem, 4vw, 3rem);
  --section-pad:  clamp(4rem, 10vh, 7rem);
  --max-width:    1200px;
  --radius:       8px;
  --radius-lg:    12px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gris-900);
  background: var(--blanc);
  overflow-x: hidden;
}

::selection { background: var(--or-light); color: var(--noir); }

:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 2px;
}

img { max-width: 100%; display: block; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

a { color: var(--or); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--or-light); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- Section titles (pattern récurrent) --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--or);
  display: inline-block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--noir);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gris-700);
  max-width: 550px;
  line-height: 1.65;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8em 1.8em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

/* Ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple 0.5s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--or);
  color: var(--noir);
}

.btn-primary:hover {
  background: var(--or-light);
  color: var(--noir);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  background: var(--noir);
  color: var(--blanc);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  background: var(--gris-900);
  border-color: var(--or);
  color: var(--or);
}

.btn-dark {
  background: var(--noir);
  color: var(--blanc);
}

.btn-dark:hover {
  background: var(--gris-900);
  transform: translateY(-1px);
  color: var(--blanc);
}

.btn-outline {
  background: transparent;
  color: var(--noir);
  border: 1px solid var(--gris-300);
}

.btn-outline:hover {
  border-color: var(--or);
  color: var(--or);
}

/* ==========================================================================
   HEADER / NAV — Barre noire, logo doré, téléphone visible
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.scrolled { background: rgba(10, 10, 10, 0.98); }

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--or);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--noir);
  letter-spacing: -0.02em;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: -0.01em;
}

.logo-text span { color: var(--or); }

/* Nav liens */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gris-300);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--blanc); }
.header-nav a.active { color: var(--or); }

.mobile-nav a.active { color: var(--or); }

/* Header right (tel + CTA) */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blanc);
  text-decoration: none;
}

.header-tel svg { color: var(--or); width: 16px; height: 16px; }
.header-tel:hover { color: var(--or); }

.header-cta {
  font-size: 0.78rem;
  padding: 0.6em 1.3em;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--blanc);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.mobile-nav.active { opacity: 1; pointer-events: auto; }

.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blanc);
}

.mobile-nav a:hover { color: var(--or); }

/* ==========================================================================
   HERO — Photo plein écran de Bordeaux
   Photo en object-fit cover, overlay gradient, texte centré gauche,
   barre de stats en bas avec glassmorphism.
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--noir);
  overflow: hidden;
}

/* Photo de fond plein écran + Ken Burns */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* Overlay gradient : sombre à gauche (lisibilité texte), plus clair à droite (voir la photo) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,  rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.35) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(4rem + 5rem) var(--gutter) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-text {
  max-width: 100%;
  width: 100%;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: end;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 3rem;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.5rem;
}

.hero-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--or);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--blanc);
  line-height: 1.02;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.hero-title span { color: var(--or); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--gris-300);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 100%;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  width: 100%;
  max-width: 280px;
}

/* --- Barre de stats en bas du hero (glassmorphism) --- */
.hero-stats-bar {
  margin-top: auto;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item { text-align: left; }

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--or);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--gris-300);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ==========================================================================
   PAGE HERO — Bandeau compact pour pages intérieures (ex: réservation)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: calc(4rem + 3.5rem) 0 3rem;
  background: var(--noir);
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,1) 0%, rgba(26,26,26,1) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero .hero-label {
  justify-content: center;
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--blanc);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.page-hero-title span { color: var(--or); }

.page-hero-subtitle {
  font-size: 1rem;
  color: var(--gris-500);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* ==========================================================================
   SECTION CONTACT — Formulaire simple
   ========================================================================== */

/* --- Canaux de contact --- */
.section-contact-channels {
  padding: 0 0 0;
  background: var(--gris-100);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 900px;
  margin: -2rem auto 0;
  position: relative;
  z-index: 3;
}

.contact-channel {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s var(--ease);
}

.contact-channel:hover {
  border-color: var(--or);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-channel--info {
  cursor: default;
}

.contact-channel--info:hover {
  border-color: transparent;
  transform: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-channel-icon svg {
  width: 22px;
  height: 22px;
  color: var(--or);
}

.contact-channel-icon--whatsapp {
  background: rgba(37, 211, 102, 0.1);
}

.contact-channel-icon--whatsapp svg {
  color: #25D366;
}

.contact-channel h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 0.25rem;
}

.contact-channel p {
  font-size: 0.9rem;
  color: var(--gris-700);
  margin-bottom: 0.4rem;
}

.contact-channel-detail {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--or);
}

/* Contact card header */
.contact-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-card-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 0.2rem;
}

.contact-card-header p {
  font-size: 0.85rem;
  color: var(--gris-500);
}

@media (max-width: 600px) {
  .contact-channels {
    grid-template-columns: 1fr;
    margin-top: -1.5rem;
  }

  .contact-channel {
    padding: 1.3rem 1rem;
  }
}

.section-contact {
  padding: var(--section-pad) 0;
  background: var(--gris-100);
}

.contact-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.8em 1em;
  border: 1px solid var(--gris-300);
  border-radius: var(--radius);
  background: var(--blanc);
  color: var(--noir);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  min-height: 120px;
}

.contact-form textarea:focus {
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.contact-form textarea::placeholder { color: var(--gris-300); }
.contact-form textarea.error { border-color: var(--rouge-erreur); }

.contact-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

.contact-confirmation {
  display: none;
  text-align: center;
  padding: 2rem;
}

.contact-confirmation.visible { display: block; animation: fadeUp 0.4s var(--ease); }

.contact-confirmation h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-confirmation p {
  color: var(--gris-700);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SECTION RÉSERVATION — Formulaire multi-étapes
   Fond gris clair, formulaire centré avec ombre.
   ========================================================================== */

.section-booking {
  padding: var(--section-pad) 0;
  background: var(--gris-100);
  position: relative;
}

/* Page dédiée réservation */
.section-booking--page {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.section-booking--page .container {
  margin-top: 0;
}

/* Décalage vers le haut pour chevaucher le hero */
.section-booking .container {
  margin-top: -3rem;
  position: relative;
  z-index: 3;
}

.booking-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.booking-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.booking-step {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--gris-100);
  transition: background 0.3s;
}

.booking-step.active { background: var(--or); }
.booking-step.done { background: var(--or-dark); }

.booking-step-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gris-500);
  transition: color 0.3s;
}

.step-label.active { color: var(--or); }

/* Étapes avec transition slide */
.booking-step-content {
  animation: stepSlideIn 0.35s var(--ease);
}

@keyframes stepSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Formulaire grille */
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gris-700);
}

.form-group input,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.8em 1em;
  border: 1px solid var(--gris-300);
  border-radius: var(--radius);
  background: var(--blanc);
  color: var(--noir);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group input::placeholder { color: var(--gris-300); }
.form-group input.error { border-color: var(--rouge-erreur); }

.form-error {
  font-size: 0.7rem;
  color: var(--rouge-erreur);
  min-height: 1em;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s var(--ease), opacity 0.3s var(--ease);
}

.form-error:not(:empty) {
  max-height: 2em;
  opacity: 1;
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  grid-column: 1 / -1;
}

.booking-actions .btn { min-width: 160px; }

/* Lieux populaires */
.quick-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gris-700);
}

.quick-places {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.quick-place {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.45em 0.9em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gris-700);
  background: var(--gris-100);
  border: 1px solid var(--gris-300);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.quick-place:hover {
  border-color: var(--or);
  color: var(--or);
  background: rgba(201, 168, 76, 0.06);
}

.quick-place svg { color: var(--or); }

/* Bouton ASAP */
.btn-asap {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  padding: 0.35em 0.8em;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--or);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.btn-asap:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--or);
}

/* Récapitulatif avant envoi */
.booking-summary {
  background: var(--gris-100);
  border: 1px solid var(--gris-300);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gris-700);
}

.booking-summary strong {
  color: var(--noir);
  font-weight: 600;
}

.booking-summary .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.2em 0;
}

.booking-summary .summary-row + .summary-row {
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Checkbox CGV */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  font-size: 0.85rem;
  color: var(--gris-700);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--or);
  flex-shrink: 0;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--or);
  text-decoration: underline;
}

/* Dropdown autocompletion BAN */
.ban-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--blanc);
  border: 1px solid var(--gris-300);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: none;
  max-height: 220px;
  overflow-y: auto;
}

.ban-dropdown.visible { display: block; }

.ban-item {
  padding: 0.65em 1em;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  border-bottom: 1px solid var(--gris-100);
}

.ban-item:last-child { border-bottom: none; }

.ban-item:hover,
.ban-item.active {
  background: rgba(201, 168, 76, 0.08);
}

.ban-main {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--noir);
}

.ban-city {
  font-size: 0.75rem;
  color: var(--gris-500);
}

/* Confirmation */
.booking-confirmation {
  display: none;
  text-align: center;
  padding: 2rem;
}

.booking-confirmation.visible { display: block; animation: fadeUp 0.4s var(--ease); }

.booking-confirmation h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.booking-confirmation p {
  color: var(--gris-700);
  margin-bottom: 1.5rem;
}

.check-circle {
  width: 56px;
  height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.check-circle svg {
  width: 28px;
  height: 28px;
  color: var(--or);
}

.check-circle svg polyline {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
}

.booking-confirmation.visible .check-circle svg polyline,
.contact-confirmation.visible .check-circle svg polyline {
  animation: drawCheck 0.5s 0.2s var(--ease) forwards;
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

/* ==========================================================================
   SECTION FLOTTE — Grille de véhicules (cartes sombres)
   ========================================================================== */

.section-fleet {
  padding: var(--section-pad) 0;
  background: var(--blanc);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.fleet-card {
  background: var(--noir);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.fleet-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--noir-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fleet-card-img svg {
  width: 48px;
  height: 48px;
  color: var(--or);
  opacity: 0.3;
}

.fleet-card-body {
  padding: 1.5rem;
}

.fleet-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 0.3rem;
}

.fleet-card-desc {
  font-size: 0.82rem;
  color: var(--gris-500);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.fleet-card-specs {
  display: flex;
  gap: 1.2rem;
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: 0.75rem;
  color: var(--gris-300);
}

.fleet-spec svg { width: 14px; height: 14px; color: var(--or); }

/* ==========================================================================
   SECTION ENGAGEMENTS — Grille 4 colonnes, icônes dorées
   ========================================================================== */

.section-commitments {
  padding: var(--section-pad) 0;
  background: var(--gris-100);
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.commitment-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.commitment-card:hover {
  border-color: var(--or);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.commitment-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.commitment-icon svg { width: 24px; height: 24px; color: var(--or); }

.commitment-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.commitment-card p {
  font-size: 0.85rem;
  color: var(--gris-700);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION PRESTATIONS — Alternance image/texte, style premium
   Photos réelles avec overlay, tag flottant, ombre portée forte.
   ========================================================================== */

.section-services {
  padding: var(--section-pad) 0;
  background: var(--gris-100);
}

.service-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--gris-300);
}

.service-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

/* Slide-from-left / slide-from-right en alternance */
.service-row.reveal {
  opacity: 0;
  transform: translateX(-40px);
}

.service-row.reveal.reverse {
  transform: translateX(40px);
}

.service-row.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

.service-row.reverse { grid-template-columns: 1fr 1.1fr; }
.service-row.reverse .service-img-wrap { order: 2; }
.service-row.reverse .service-text { order: 1; }

/* --- Image wrapper avec overlay + tag --- */
.service-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-row:hover .service-img-wrap {
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.16),
    0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.service-row:hover .service-photo {
  transform: scale(1.04);
}

/* Gradient sombre en bas de l'image */
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.0) 50%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  pointer-events: none;
}

/* Tag flottant sur l'image */
.service-img-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.4em 0.9em;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blanc);
}

.service-img-tag svg { width: 14px; height: 14px; }

/* --- Texte --- */
.service-text {
  padding: 0.5rem 0;
}

.service-text h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.service-text > p {
  font-size: 0.95rem;
  color: var(--gris-700);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.65em;
  font-size: 0.88rem;
  color: var(--gris-700);
  line-height: 1.4;
}

.service-features li svg {
  width: 18px;
  height: 18px;
  color: var(--or);
  flex-shrink: 0;
}

/* Bouton dans la prestation */
.service-text .btn {
  padding: 0.85em 2em;
}
.service-cta-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   SECTION ÉQUIPEMENTS (À BORD)
   Layout : photo intérieur à gauche + grille de cartes à droite
   Fond noir, accents dorés, badge flottant glassmorphism sur la photo.
   ========================================================================== */

.section-equipment {
  padding: var(--section-pad) 0;
  background: var(--noir);
  color: var(--blanc);
  overflow: hidden;
}

.section-equipment .section-title { color: var(--blanc); }
.section-equipment .section-subtitle { color: var(--gris-500); }

/* --- Layout 2 colonnes : visual | content --- */
.equip-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* --- Colonne gauche : photo + stats --- */
.equip-visual {
  position: sticky;
  top: 6rem;
}

.equip-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.equip-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.equip-photo-wrap:hover .equip-photo {
  transform: scale(1.03);
}

.equip-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.0) 45%
  );
  pointer-events: none;
}

/* Badge flottant glassmorphism sur la photo */
.equip-badge-float {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.equip-badge-float svg { color: var(--or); flex-shrink: 0; }

.equip-badge-value {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--blanc);
  line-height: 1.1;
}

.equip-badge-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gris-300);
  letter-spacing: 0.03em;
}

/* Mini stats sous la photo */
.equip-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 1.2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.equip-stat {
  flex: 1;
  text-align: center;
}

.equip-stat-value {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--or);
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.equip-stat-label {
  display: block;
  font-size: 0.65rem;
  color: var(--gris-500);
  letter-spacing: 0.03em;
}

.equip-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* --- Colonne droite : titre + grille cartes --- */
.equip-content {
  padding-top: 0.5rem;
}

.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.equip-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s var(--ease);
}

.equip-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-2px);
}

/* Icône dans un cercle doré transparent */
.equip-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.equip-card:hover .equip-icon {
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.3);
}

.equip-icon svg {
  width: 18px;
  height: 18px;
  color: var(--or);
}

.equip-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blanc);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.equip-card p {
  font-size: 0.76rem;
  color: var(--gris-500);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION FAQ — Accordéon
   ========================================================================== */

.section-faq {
  padding: var(--section-pad) 0;
  background: var(--blanc);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  color: var(--noir);
  line-height: 1.4;
  transition: color 0.2s var(--ease);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--or);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--gris-500);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--or);
}

.faq-answer {
  padding: 0 0 1.25rem 0;
  animation: faqSlideDown 0.3s var(--ease);
}

.faq-answer p {
  color: var(--gris-500);
  line-height: 1.75;
  font-size: 0.92rem;
}

.faq-answer a {
  color: var(--or);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--or-clair, var(--or));
}

@keyframes faqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-more {
  text-align: center;
  margin-top: 2.5rem;
}

.section-faq--alt {
  background: var(--gris-50, #F8F8F8);
}

/* ==========================================================================
   FOOTER — Noir, 3 colonnes + legal
   ========================================================================== */

.site-footer {
  padding: 3.5rem 0 1.5rem;
  background: var(--noir);
  color: var(--gris-500);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand-text span { color: var(--or); }

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris-300);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--or);
  color: var(--noir);
}

.footer-social a svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--gris-500);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--or); }

/* Badges paiement / confiance */
.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gris-300);
}

.footer-badge svg { color: var(--or); flex-shrink: 0; }

.footer-badge-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .footer-badges { gap: 0.8rem; }
  .footer-badge-sep { display: none; }
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}

.footer-legal-links a:hover { color: var(--or); }

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: var(--blanc); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  padding: 0.8em 1.5em;
  background: var(--noir);
  color: var(--blanc);
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--radius);
  z-index: 200;
  opacity: 0;
  transition: all 0.3s var(--ease);
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.toast.visible { transform: translateX(-50%) translateY(0); opacity: 1; }

.toast--error {
  background: var(--rouge-erreur);
}

/* Spinner bouton */
.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 0.5em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Formulaire désactivé pendant soumission */
.form-submitting input,
.form-submitting select,
.form-submitting textarea {
  pointer-events: none;
  opacity: 0.6;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .header-nav, .header-tel { display: none; }
  .burger { display: flex; }

  .mobile-sticky-bar { display: flex; }
  .whatsapp-float { bottom: 5rem; }

  body { padding-bottom: 4.5rem; }

  .hero-content {
    padding-top: calc(4rem + 3rem);
  }

  .hero-text {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1.5rem;
  }

  .hero-stats-bar {
    padding: 1.2rem var(--gutter);
  }

  .stat-divider { display: none; }

  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-row.reverse .service-img-wrap { order: 0; }
  .service-row.reverse .service-text { order: 0; }

  .equip-layout {
    grid-template-columns: 1fr;
  }

  .equip-visual {
    position: static;
  }

  .equip-photo {
    aspect-ratio: 16/9;
  }

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

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .stat-value { font-size: 1.2rem; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.85) 100%);
  }

  .booking-form { grid-template-columns: 1fr; }
  .booking-actions { flex-direction: column; gap: 0.8rem; }
  .booking-actions .btn { width: 100%; }

  .contact-form { grid-template-columns: 1fr; }
  .contact-actions .btn { width: 100%; }

  .equip-grid { grid-template-columns: 1fr; }
  .equip-stats { flex-direction: column; gap: 0.8rem; }
  .equip-stat-divider { width: 40px; height: 1px; }

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

  .stat-value { font-size: 1.4rem; }
}

/* ==========================================================================
   MOBILE STICKY BAR — Appeler + Réserver en bas de l'écran
   ========================================================================== */

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--noir);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0.6rem;
  gap: 0.5rem;
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75em 1em;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}

.mobile-sticky-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mobile-sticky-call {
  background: transparent;
  color: var(--blanc);
  border: 1px solid rgba(255,255,255,0.15);
}

.mobile-sticky-call:hover {
  border-color: var(--or);
  color: var(--or);
}

.mobile-sticky-book {
  background: var(--or);
  color: var(--noir);
}

.mobile-sticky-book:hover {
  background: var(--or-light);
}

/* ==========================================================================
   PAGE À PROPOS
   ========================================================================== */

.text-or { color: var(--or); }

/* --- Section about : layout 2 colonnes texte/image --- */
.section-about,
.section-commitments-about {
  padding: var(--section-pad) 0;
  background: var(--blanc);
}

.about-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-row.reverse { grid-template-columns: 0.9fr 1.1fr; }
.about-row.reverse .about-visual { order: -1; }

.about-text p {
  font-size: 0.95rem;
  color: var(--gris-700);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.4) 0%, transparent 50%);
  pointer-events: none;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.92rem;
  color: var(--gris-700);
  line-height: 1.5;
}

.about-list li svg {
  width: 18px;
  height: 18px;
  color: var(--or);
  flex-shrink: 0;
}

/* --- Valeurs : 4 cartes --- */
.section-values {
  padding: var(--section-pad) 0;
  background: var(--gris-100);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.value-card:hover {
  border-color: var(--or);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.value-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--or);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--gris-700);
  line-height: 1.65;
}

/* --- Chiffres clés --- */
.section-numbers {
  padding: var(--section-pad) 0;
  background: var(--noir);
  color: var(--blanc);
}

.section-numbers .section-title { color: var(--blanc); }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.number-value {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--or);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.number-label {
  font-size: 0.82rem;
  color: var(--gris-500);
  font-weight: 500;
}

/* --- CTA block --- */
.section-cta {
  padding: var(--section-pad) 0;
  background: var(--gris-100);
}

.cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.cta-block p {
  font-size: 1rem;
  color: var(--gris-700);
  margin-bottom: 1.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary-dark {
  background: transparent;
  color: var(--noir);
  border: 1px solid var(--gris-300);
}

.btn-secondary-dark:hover {
  border-color: var(--or);
  color: var(--or);
}

/* --- Responsive about --- */
@media (max-width: 900px) {
  .about-row,
  .about-row.reverse {
    grid-template-columns: 1fr;
  }

  .about-row.reverse .about-visual { order: 0; }
}

@media (max-width: 600px) {
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}

/* ==========================================================================
   PAGES VILLES SEO
   ========================================================================== */

.section-city-features {
  padding: var(--section-pad) 0;
  background: var(--blanc);
}

.city-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}

.city-features-list li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.95rem;
  color: var(--gris-700);
  line-height: 1.5;
}

.city-features-list li svg {
  width: 20px;
  height: 20px;
  color: var(--or);
  flex-shrink: 0;
}

.city-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Contenu SEO ville --- */
.section-city-seo {
  padding: var(--section-pad) 0;
  background: var(--blanc);
}
.city-seo-content {
  max-width: 800px;
  margin: 0 auto;
}
.city-seo-content h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1.5rem;
  color: var(--noir);
}
.city-seo-content p {
  color: var(--gris-500);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.city-seo-content a {
  color: var(--or);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.city-seo-content a:hover {
  color: var(--or-clair, var(--or));
}
.city-seo-content h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin: 1.5rem 0 0.75rem;
  color: var(--noir);
}
.city-seo-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}
.city-seo-content ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--gris-500);
  line-height: 1.6;
}
.city-seo-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
}

/* --- Distances --- */
.section-city-distances {
  padding: var(--section-pad) 0;
  background: var(--noir);
  color: var(--blanc);
}

.section-city-distances .section-title { color: var(--blanc); }

.distances-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.distance-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s var(--ease);
}

.distance-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(255,255,255,0.06);
}

.distance-from {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blanc);
}

.distance-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.distance-time {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--or);
}

.distance-km {
  font-size: 0.72rem;
  color: var(--gris-500);
}

/* --- Villes proches --- */
.section-city-nearby {
  padding: var(--section-pad) 0;
  background: var(--gris-100);
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.nearby-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.3s var(--ease);
}

.nearby-card:hover {
  border-color: var(--or);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.nearby-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 0.2rem;
}

.nearby-cp {
  font-size: 0.78rem;
  color: var(--gris-500);
}

.nearby-arrow {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  color: var(--or);
  opacity: 0;
  transition: opacity 0.2s;
}

.nearby-card:hover .nearby-arrow { opacity: 1; }

@media (max-width: 600px) {
  .city-cta-group { flex-direction: column; }
  .city-cta-group .btn { width: 100%; }
}

/* ==========================================================================
   PAGES LÉGALES
   ========================================================================== */

.section-legal {
  padding: var(--section-pad) 0;
  background: var(--blanc);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--noir);
  margin: 2.5rem 0 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--or);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--noir);
  margin: 1.5rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  color: var(--gris-700);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

.legal-content ul {
  list-style: none;
  padding: 0;
}

.legal-content ul li {
  padding-left: 1.2em;
  position: relative;
}

.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--or);
}

.legal-content a {
  color: var(--or);
  text-decoration: underline;
}

.legal-content strong {
  color: var(--noir);
}

/* ==========================================================================
   ACCESSIBILITÉ — Réduire les animations
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-photo {
    animation: none !important;
  }

  .service-row.reveal {
    transform: none !important;
  }

  .booking-step-content {
    animation: none !important;
  }
}

@media print {
  .site-header, .whatsapp-float, .toast { display: none; }
  .reveal { opacity: 1; transform: none; }
  .hero { min-height: auto; background: #fff; color: #000; }
}
