/* =============================================
   VAN TAXI PARIS – Premium Stylesheet
   ============================================= */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --dark: #0D0D0D;
  --dark-2: #161616;
  --dark-3: #1E1E1E;
  --dark-card: #242424;
  --grey: #6B7280;
  --grey-light: #F5F5F5;
  --white: #FFFFFF;
  --green: #22C55E;
  --blue: #3B82F6;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 50px rgba(0,0,0,0.18);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: 1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 90px 0; }
.bg-dark { background: var(--dark-2); color: var(--white); }
.mt-20 { margin-top: 20px; }
.gold { color: var(--gold); }
.accent { color: var(--gold); }
.icon-gold { color: var(--gold); }
.icon-green { color: var(--green); }
.icon-blue { color: var(--blue); }

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--grey);
  font-size: 1.05rem;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: #9CA3AF; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border: none;
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
  width: 100%;
  justify-content: center;
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-nav {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
}
.btn-nav:hover { background: var(--gold-light); }
.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px;
  margin-top: 10px;
}

/* === NAVBAR === */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}
#main-header.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--gold); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a1a2e 50%, #0D0D0D 100%);
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}
/* Animated lines */
#hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(201,168,76,0.06)" stroke-width="0.5"/><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(201,168,76,0.04)" stroke-width="0.5"/></svg>') center/cover no-repeat;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 20px 80px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  color: rgba(255,255,255,0.70);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 30px;
  backdrop-filter: blur(10px);
  width: fit-content;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}
.stat strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat span { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === PROMO BANNER === */
.promo-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--dark);
  text-align: center;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.promo-banner i { font-size: 1rem; }
.promo-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 0.9rem;
  opacity: 0.7;
}
.promo-close:hover { opacity: 1; }

/* === RESERVATION === */
#reservation { background: var(--grey-light); }
.reservation-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
#booking-form { padding: 36px; }
.trip-tabs {
  display: flex;
  background: var(--grey-light);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 28px;
  gap: 4px;
}
.trip-tab {
  flex: 1;
  padding: 10px;
  border: none;
  background: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--grey);
  transition: var(--transition);
}
.trip-tab.active {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group input::placeholder { color: #9CA3AF; }
/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
}
.step-btn {
  width: 40px;
  height: 44px;
  border: none;
  background: var(--grey-light);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
  flex-shrink: 0;
}
.step-btn:hover { background: var(--gold); color: var(--white); }
.step-val {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}
/* Promo */
.promo-row { position: relative; }
.promo-input-wrap { display: flex; gap: 8px; }
.promo-input-wrap input { flex: 1; }
.btn-promo {
  padding: 12px 18px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-promo:hover { background: var(--gold); color: var(--dark); }
#promo-msg {
  font-size: 0.8rem;
  margin-top: 2px;
}
#promo-msg.success { color: var(--green); }
#promo-msg.error { color: #EF4444; }
/* Estimate */
.estimate-box {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 16px;
  color: var(--white);
  border-left: 3px solid var(--gold);
}
.estimate-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.estimate-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.estimate-details span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}
.est-price {
  color: var(--gold);
  font-size: 1.3rem !important;
  font-weight: 700;
}
/* ============================================
   AUTOCOMPLETE STYLE GPS EXACT
   (comme Google Maps mobile)
   ============================================ */

/* Dropdown container */
.autocomplete-list {
  position: absolute;
  top: calc(100% + 2px);
  left: 0; right: 0;
  background: #fff;
  border-radius: 0 0 16px 16px;
  z-index: 500;
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 1px solid #E5E7EB;
  border-top: none;
  padding: 4px 0 6px;
  display: none;
  scroll-behavior: smooth;
}
.autocomplete-list.open { display: block; }
.autocomplete-list li::before { display: none !important; }

/* Chaque ligne de suggestion */
.ac-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 14px 12px 10px;
  cursor: pointer;
  border-bottom: 1px solid #F3F4F6;
  transition: background 0.12s;
}
.ac-item:last-child { border-bottom: none; }
.ac-item:hover,
.ac-item.ac-active { background: #F5F5F5; }

/* Colonne gauche : icône ronde + distance */
.ac-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 44px;
  flex-shrink: 0;
  margin-right: 10px;
}

/* Icône GPS ronde grise (comme dans l'image) */
.ac-loc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EBEBEB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.ac-loc-icon::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236B7280'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Distance en petit sous l'icône */
.ac-dist {
  font-size: 0.68rem;
  color: #9CA3AF;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

/* Corps texte central */
.ac-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
  gap: 1px;
}

/* Ligne 1 : adresse en noir semi-gras */
.ac-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.35;
}
/* Partie tapée en gras dans le titre */
.ac-title strong {
  font-weight: 700;
  color: #000;
}

/* Ligne 2 : ville en gris clair */
.ac-city {
  font-size: 0.78rem;
  color: #9CA3AF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

/* Flèche diagonale à droite (↗) */
.ac-diag {
  font-size: 1rem;
  color: #9CA3AF;
  flex-shrink: 0;
  margin-left: 6px;
  line-height: 1;
  transition: color 0.12s;
}
.ac-item:hover .ac-diag,
.ac-item.ac-active .ac-diag { color: #374151; }

/* Spinner chargement */
.ac-loading {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #9CA3AF;
  font-size: 0.85rem;
  cursor: default;
}
.ac-loading:hover { background: none !important; }

.ac-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #E5E7EB;
  border-top-color: #6B7280;
  border-radius: 50%;
  animation: acSpin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes acSpin { to { transform: rotate(360deg); } }

/* Aucun résultat */
.ac-empty {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #9CA3AF;
  font-size: 0.85rem;
  cursor: default;
  font-style: italic;
}
.ac-empty .ac-loc-icon { opacity: 0.5; }
.ac-empty:hover { background: none !important; }
/* Map */
.map-container {
  position: relative;
  background: #E8ECEF;
  min-height: 500px;
}
#map {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.map-info {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(13,13,13,0.9);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 500;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,0.3);
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--dark);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p { color: #9CA3AF; font-size: 0.9rem; line-height: 1.6; }

/* === HERO CAR IMAGE === */
.hero-car-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-car-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.45;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.9) 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.9) 100%);
}

/* === WHY-US REAL IMAGE === */
.why-img-real {
  position: relative;
  width: 420px;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border: 3px solid var(--gold);
}
.why-img-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.why-img-real:hover img { transform: scale(1.05); }
.why-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(13,13,13,0.85);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,0.3);
}

/* === VEHICLES === */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vehicle-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  background: var(--white);
}
.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.vehicle-card.featured { border-color: var(--gold); }
.vehicle-img {
  height: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.berline-img {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.berline-real-img {
  background: var(--dark);
  padding: 0;
  align-items: flex-start;
  justify-content: flex-end;
}
.berline-real-img .vehicle-badge {
  position: relative;
  z-index: 2;
  margin: 14px 14px 0 0;
}
.berline-real-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.van-real-img,
.minibus-real-img {
  background: var(--dark);
  padding: 0;
  align-items: flex-start;
  justify-content: flex-end;
}
.vehicle-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  opacity: 0.92;
}
.vehicle-card:hover .vehicle-photo {
  transform: scale(1.06);
}
.van-real-img .vehicle-badge,
.minibus-real-img .vehicle-badge {
  position: relative;
  z-index: 2;
  margin: 14px 14px 0 0;
}
/* Gradient overlay on real photos */
.van-real-img::after,
.minibus-real-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.minibus-img {
  background: linear-gradient(135deg, #1a2a1a 0%, #1e3a1e 50%, #0f2a0f 100%);
}
/* Car silhouettes using CSS */
.berline-img::before {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 4rem;
  color: rgba(255,255,255,0.1);
}
.vehicle-badge {
  background: var(--dark);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.gold-badge { background: var(--gold); color: var(--dark); }
.vehicle-info { padding: 24px; }
.vehicle-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.vehicle-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.vehicle-specs span {
  font-size: 0.82rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 4px;
}
.vehicle-specs i { color: var(--gold); }
.vehicle-info p { font-size: 0.9rem; color: var(--grey); margin-bottom: 16px; line-height: 1.5; }
.vehicle-price { font-size: 1.1rem; margin-bottom: 16px; color: var(--dark); }
.vehicle-price strong { color: var(--gold); font-size: 1.4rem; }

/* === WHY US === */
.why-us { background: var(--grey-light); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 30px;
}
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.why-list li i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.why-list li strong { display: block; font-weight: 600; margin-bottom: 2px; }
.why-list li div { font-size: 0.92rem; color: #4B5563; }
.why-image { display: flex; justify-content: center; }
.why-img-placeholder {
  width: 300px; height: 300px;
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--gold);
  box-shadow: 0 0 60px rgba(201,168,76,0.15);
}
.why-img-placeholder i { font-size: 3rem; color: var(--gold); margin-bottom: 12px; }
.why-img-placeholder p { color: var(--white); font-size: 1rem; font-weight: 600; }
.why-img-placeholder .stars { color: var(--gold); font-size: 1.3rem; margin-top: 8px; }

/* === TARIFS === */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.tarif-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.tarif-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.tarif-dest {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tarif-dest i { color: var(--gold); }
.tarif-prices { display: flex; flex-direction: column; gap: 8px; }
.tarif-prices > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.88rem;
}
.tarif-prices > div span { color: #9CA3AF; }
.tarif-prices > div strong { color: var(--white); font-size: 1rem; }
.tarif-prices > div.highlight {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
}
.tarif-prices > div.highlight strong { color: var(--gold); }
.tarif-note {
  text-align: center;
  color: #9CA3AF;
  font-size: 0.85rem;
}
.tarif-note a { color: var(--gold); }

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #F3F4F6;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.review-card p {
  font-size: 0.88rem;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.reviewer strong { font-size: 0.9rem; display: block; }
.reviewer small { color: var(--grey); font-size: 0.78rem; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item i {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--white); margin-bottom: 4px; font-size: 0.9rem; }
.contact-item a, .contact-item span { color: #9CA3AF; font-size: 0.92rem; }
.contact-item a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .form-group label { color: #D1D5DB; text-transform: none; font-size: 0.85rem; }
.contact-form input,
.contact-form textarea {
  background: var(--dark-card);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #6B7280; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }

/* === FOOTER === */
#main-footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .brand-logo { margin-bottom: 16px; }
.footer-brand p { color: #9CA3AF; font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: var(--dark-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--dark); }
.footer-links h4, .footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #9CA3AF; font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  color: #9CA3AF;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-contact i { color: var(--gold); width: 16px; }
.footer-contact a { color: #9CA3AF; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: #6B7280; font-size: 0.82rem; }
.footer-bottom a { color: #9CA3AF; }
.footer-bottom a:hover { color: var(--gold); }

/* ===================================================
   SECTION AVIS CLIENTS
   =================================================== */

/* Barre de note globale */
.avis-global-bar {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin-bottom: 40px;
}
.avis-global-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
}
.avis-big-note {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.avis-global-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin: 6px 0 4px;
}
.avis-global-count {
  font-size: 0.78rem;
  color: var(--grey);
  white-space: nowrap;
}
.avis-global-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.avis-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--grey);
}
.avis-bar-row > span:first-child {
  width: 28px;
  text-align: right;
  color: var(--gold);
  font-weight: 600;
}
.avis-bar-row > span:last-child {
  width: 34px;
  text-align: right;
  color: #9CA3AF;
  font-size: 0.78rem;
}
.avis-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  overflow: hidden;
}
.avis-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  transition: width 1s ease;
}


/* Bloc Google Reviews */
.avis-form-wrapper {
  margin-top: 50px;
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}
.avis-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #EA4335, #FBBC05, #34A853, #4285F4);
}

.avis-google-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.avis-google-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.avis-google-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avis-google-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}
.avis-google-text p {
  color: #9CA3AF;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0 0 10px;
}

.avis-google-stars-preview {
  display: flex;
  align-items: center;
  gap: 3px;
}
.avis-google-stars-preview span {
  color: #FBBC05;
  font-size: 1.2rem;
  line-height: 1;
}
.avis-note-label {
  font-size: 0.78rem !important;
  color: #9CA3AF !important;
  margin-left: 8px;
  font-style: italic;
}

/* Bouton Google Reviews */
.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #111827;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
  border: none;
}
.btn-google-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  background: #f8f8f8;
  color: #111827;
}
.btn-google-review .fa-arrow-right {
  transition: transform 0.2s;
}
.btn-google-review:hover .fa-arrow-right {
  transform: translateX(4px);
}

/* Carte avis dynamique */
.review-card-dynamic {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  animation: fadeInUp 0.4s ease;
}
.review-card-dynamic::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
}
.review-new-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 99px;
  margin-bottom: 8px;
  border: 1px solid rgba(201,168,76,0.3);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive avis */
@media (max-width: 768px) {
  .avis-global-bar {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
  }
  .avis-global-score {
    flex-direction: row;
    gap: 16px;
    align-items: center;
    min-width: unset;
  }
  .avis-big-note { font-size: 2.8rem; }
  .avis-form-wrapper { padding: 24px 18px; }
  .avis-google-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .avis-google-left { gap: 14px; }
  .avis-google-icon { width: 52px; height: 52px; border-radius: 12px; }
  .avis-google-text h3 { font-size: 1.1rem; }
  .btn-google-review {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.92rem;
  }
}

/* === FLOATING BUTTONS === */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  transition: var(--transition);
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(0,0,0,0.4); }
.float-label { display: none; }
.phone-btn { background: var(--gold); color: var(--dark); }
.whatsapp-btn { background: #25D366; color: var(--white); }

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(4px);
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-icon i {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 16px;
}
.modal-box h3 { font-size: 1.3rem; margin-bottom: 12px; }
.modal-box p { color: var(--grey); margin-bottom: 10px; font-size: 0.92rem; }
.modal-box a { color: var(--gold); font-weight: 700; }
.modal-box .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* =============================================
   RESPONSIVE – TABLETTE (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  .reservation-card { grid-template-columns: 1fr; }
  .map-container { min-height: 300px; }
  #map { min-height: 300px; }
  .vehicles-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .tarifs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-img-real { width: 320px; height: 240px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   RESPONSIVE – MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {

  /* --- Base --- */
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .section-pad { padding: 50px 0; }

  /* --- Navbar --- */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 30px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(20px);
    box-shadow: -4px 0 30px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .burger { display: flex; z-index: 1000; }
  .navbar { padding-top: 14px; padding-bottom: 14px; }

  /* --- Hero --- */
  .hero-car-img { display: none; }
  .hero-content {
    padding: 110px 16px 50px;
    max-width: 100%;
  }
  .hero-badge { font-size: 0.78rem; padding: 7px 14px; }
  .hero-content h1 { font-size: clamp(1.9rem, 8vw, 3rem); margin-bottom: 14px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-ctas { flex-direction: column; gap: 12px; margin-bottom: 30px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    padding: 14px 10px;
    justify-content: center;
  }
  .stat { padding: 8px 16px; }
  .stat strong { font-size: 1.2rem; }
  .stat span { font-size: 0.72rem; }
  .stat-sep { width: 1px; height: 36px; }

  /* --- Promo banner --- */
  .promo-banner { font-size: 0.78rem; padding: 10px 40px 10px 14px; text-align: left; }

  /* --- Réservation --- */
  #reservation { padding: 30px 0; }
  .reservation-card { border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.10); }
  #booking-form { padding: 18px 14px 24px; }

  /* Onglets aller/retour : texte complet visible */
  .trip-tabs { margin-bottom: 16px; padding: 3px; gap: 3px; }
  .trip-tab {
    font-size: 0.78rem;
    padding: 10px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    flex: 1;
    min-width: 0;
  }

  /* Grille formulaire 1 colonne */
  .form-grid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 10px; }
  .form-group { gap: 5px; }
  .form-group label { font-size: 0.74rem; letter-spacing: 0.2px; }
  .form-group input,
  .form-group select {
    padding: 13px 12px;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  /* Steppers plus grands et ergonomiques */
  .stepper { border-radius: 10px; }
  .step-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  .step-val { font-size: 1rem; font-weight: 700; }

  /* Code promo : bouton en dessous pour éviter la coupure */
  .promo-input-wrap { flex-direction: column; gap: 8px; }
  .promo-input-wrap input { width: 100%; }
  .btn-promo {
    width: 100%;
    padding: 13px;
    font-size: 0.92rem;
    text-align: center;
    border-radius: 10px;
  }

  /* Estimation */
  .estimate-box { padding: 14px 14px; margin-bottom: 12px; }
  .estimate-details { gap: 10px; flex-wrap: wrap; }
  .est-price { font-size: 1.1rem !important; }

  /* Boutons pleine largeur, pas cachés par les flottants */
  .btn-submit {
    padding: 16px;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 0;
    padding-right: 16px;
  }
  .btn-gold {
    padding: 16px;
    font-size: 1rem;
    width: 100%;
    margin-top: 10px;
  }

  /* Carte en dessous du formulaire */
  .map-container { min-height: 240px; }
  #map { min-height: 240px; }
  .map-info { font-size: 0.75rem; padding: 6px 10px; top: 8px; right: 8px; }

  /* --- Section header --- */
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-header p { font-size: 0.9rem; }

  /* --- Services --- */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { padding: 22px 16px; }
  .service-icon { width: 52px; height: 52px; font-size: 1.1rem; margin-bottom: 14px; }
  .service-card h3 { font-size: 0.95rem; }
  .service-card p { font-size: 0.82rem; }

  /* --- Véhicules --- */
  .vehicles-grid { grid-template-columns: 1fr; gap: 18px; }
  .vehicle-img { height: 190px; }
  .vehicle-info { padding: 18px; }
  .vehicle-info h3 { font-size: 1.05rem; }
  .vehicle-specs span { font-size: 0.78rem; }
  .vehicle-info p { font-size: 0.85rem; }
  .vehicle-price { font-size: 1rem; }
  .vehicle-price strong { font-size: 1.25rem; }
  .btn-outline-dark, .vehicle-info .btn { padding: 12px; font-size: 0.88rem; }

  /* --- Pourquoi nous --- */
  .why-grid { grid-template-columns: 1fr; gap: 30px; }
  .why-image { display: none; }
  .why-text h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .why-list li div { font-size: 0.88rem; }
  .why-list { gap: 12px; }

  /* --- Tarifs --- */
  .tarifs-grid { grid-template-columns: 1fr; gap: 14px; }
  .tarif-card { padding: 18px; }
  .tarif-dest { font-size: 0.88rem; }
  .tarif-prices > div { padding: 7px 8px; }
  .tarif-prices > div span { font-size: 0.82rem; }
  .tarif-prices > div strong { font-size: 0.92rem; }
  .tarif-note { font-size: 0.78rem; }

  /* --- Avis --- */
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card { padding: 18px; }
  .review-card p { font-size: 0.85rem; }

  /* --- Contact --- */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { gap: 14px; }
  .contact-item i { width: 38px; height: 38px; font-size: 0.95rem; }
  .contact-item strong { font-size: 0.85rem; }
  .contact-item a, .contact-item span { font-size: 0.85rem; }
  .contact-form .form-group input,
  .contact-form .form-group textarea { font-size: 0.92rem; padding: 11px 12px; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  #main-footer { padding-top: 40px; }
  .footer-brand p { font-size: 0.85rem; }
  .footer-links ul { gap: 8px; }
  .footer-links a, .footer-contact p { font-size: 0.85rem; }
  .footer-bottom p { font-size: 0.78rem; }

  /* --- Boutons flottants --- */
  /* Déplacés plus bas à gauche pour ne pas couper le contenu */
  .floating-btns {
    bottom: 20px;
    right: 12px;
    gap: 8px;
    z-index: 800;
  }
  .float-btn { width: 46px; height: 46px; font-size: 1.05rem; }
  /* Marge droite sur les éléments du formulaire pour éviter superposition */
  .btn-submit, .btn-gold { margin-right: 0; }
  #booking-form { padding-right: 14px; }

  /* --- Modal --- */
  .modal-box { padding: 32px 20px; width: 92%; }
  .modal-box h3 { font-size: 1.1rem; }
  .modal-icon i { font-size: 2.8rem; }
}

/* =============================================
   RESPONSIVE – PETIT MOBILE (≤480px)
   ============================================= */
@media (max-width: 480px) {

  /* --- Base --- */
  body { font-size: 14px; }
  .container { padding: 0 14px; }
  .section-pad { padding: 40px 0; }

  /* --- Navbar --- */
  .brand-logo { font-size: 1.05rem; }
  .logo-icon { width: 34px; height: 34px; font-size: 0.85rem; }

  /* --- Hero --- */
  .hero-content { padding: 100px 14px 40px; }
  .hero-badge { font-size: 0.72rem; padding: 6px 12px; }
  .hero-content h1 { font-size: clamp(1.7rem, 9vw, 2.4rem); }
  .hero-sub { font-size: 0.88rem; line-height: 1.6; }
  .hero-ctas .btn { font-size: 0.88rem; padding: 13px 16px; }
  .hero-stats { padding: 12px 8px; }
  .stat { padding: 6px 12px; }
  .stat strong { font-size: 1.1rem; }
  .stat span { font-size: 0.68rem; }
  .stat-sep { width: 1px; height: 30px; }

  /* --- Promo --- */
  .promo-banner { font-size: 0.72rem; }

  /* --- Formulaire --- */
  #booking-form { padding: 14px 12px 20px; }
  .trip-tabs { padding: 3px; gap: 2px; }
  .trip-tab { font-size: 0.75rem; padding: 9px 2px; }
  .form-group label { font-size: 0.7rem; }
  .form-group input,
  .form-group select { padding: 12px 10px; font-size: 0.9rem; }
  .step-btn { width: 48px; height: 48px; font-size: 1.2rem; }
  .step-val { font-size: 0.95rem; }
  .promo-input-wrap { flex-direction: column; gap: 7px; }
  .btn-promo { width: 100%; padding: 12px; font-size: 0.9rem; }
  .btn-submit, .btn-gold { font-size: 0.92rem; padding: 15px; width: 100%; }
  .map-container { min-height: 220px; }
  #map { min-height: 220px; }

  /* --- Services --- */
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { padding: 20px 14px; }

  /* --- Tarifs --- */
  .tarif-prices { gap: 6px; }
  .tarif-prices > div { flex-direction: row; }

  /* --- Boutons --- */
  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .btn-nav { padding: 9px 16px; font-size: 0.82rem; }

  /* --- Modal --- */
  .modal-box { padding: 28px 16px; }
  .modal-box h3 { font-size: 1rem; }

  /* --- Footer --- */
  .social-links a { width: 34px; height: 34px; font-size: 0.82rem; }
  .footer-bottom { padding: 16px 0; }
}

/* =============================================
   RESPONSIVE – TRÈS PETIT (≤360px)
   ============================================= */
@media (max-width: 360px) {
  .hero-content h1 { font-size: 1.6rem; }
  .hero-stats { flex-direction: column; align-items: center; gap: 8px; }
  .stat-sep { width: 60%; height: 1px; }
  .stat { flex-direction: row; justify-content: center; padding: 4px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-group label { font-size: 0.72rem; }
  .brand-logo .logo-text { font-size: 0.95rem; }
  .float-btn { width: 44px; height: 44px; font-size: 1rem; }
  .floating-btns { right: 10px; bottom: 12px; }
}
