/* ==========================================================
   LOCCAR — Feuille de styles principale
   Couleurs : #001c91 (bleu) | #d73a03 (orange)
   Fichier : assets/css/style.css
   ========================================================== */

/* --- Variables CSS ---------------------------------------- */
:root {
  --blue:       #001c91;
  --blue-dark:  #001270;
  --blue-light: #e8ecff;
  --orange:     #d73a03;
  --orange-dark:#b03002;
  --white:      #ffffff;
  --off-white:  #f7f8fc;
  --gray-light: #eef0f6;
  --gray:       #8a91a8;
  --text:       #111827;
  --text-light: #4b5563;

  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0, 28, 145, 0.10);
  --shadow-md:  0 8px 40px rgba(0, 28, 145, 0.15);
  --transition: 0.22s ease;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Utilitaires ----------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
}

/* --- Boutons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-wa {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-wa:hover { background: #1ebe5d; border-color: #1ebe5d; }

.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* --- Navigation ------------------------------------------ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo img { height: 58px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-light);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  padding: 16px 24px 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--gray-light);
  font-size: 16px;
}
.nav-mobile a:last-child { border-bottom: none; }

/* --- Hero ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
  background: var(--blue);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(215,58,3,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(0,18,112,0.9) 0%, transparent 60%),
    linear-gradient(135deg, #001270 0%, #001c91 50%, #002bc4 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 60px
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (min-width: 769px) {
  .hero-content {
    max-width: 560px;
    padding-right: 56px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(215,58,3,0.15);
  border: 1px solid rgba(215,58,3,0.4);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb89a;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.hero-title span { color: var(--orange); }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
}
.hero-badge svg { flex-shrink: 0; }

/* --- Hero accent (voiture droite) ----------------------- */
.hero-accent {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: min(42vw, 620px);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-accent::before {
  content: "";
  position: absolute;
  inset: 7% 5%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.24),
    0 10px 30px rgba(0, 28, 145, 0.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-accent img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.28));
}

@media (max-width: 1200px) {
  .hero-accent { right: 2%; width: min(44vw, 540px); }
}
@media (max-width: 1024px) {
  .hero-accent { right: 2%; width: min(46vw, 460px); }
  .hero-accent::before { inset: 8% 5%; border-radius: 24px; }
}
@media (max-width: 768px) {
  .hero-accent {
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 100%;
    max-width: 420px;
    margin: 28px auto 0;
  }
  .hero-accent::before { inset: 8% 5%; border-radius: 22px; }
}
@media (max-width: 480px) {
  .hero-accent { max-width: 320px; margin-top: 22px; }
  .hero-accent::before { inset: 10% 6%; border-radius: 18px; }
}

/* --- Catalogue ------------------------------------------- */
.catalogue {
  background: var(--off-white);
  padding: 96px 0;
}

.section-header {
  margin-bottom: 52px;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.vehicle-img {
  position: relative;
  height: 200px;
  background: var(--gray-light);
  overflow: hidden;
}
.vehicle-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vehicle-card:hover .vehicle-img img { transform: scale(1.04); }

.vehicle-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray);
  font-size: 13px;
  font-weight: 500;
}
.vehicle-img-placeholder svg { opacity: 0.4; }

.vehicle-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.vehicle-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.vehicle-category {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 18px;
  text-transform: capitalize;
}

.vehicle-price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 20px;
  margin-top: auto;
}
.vehicle-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.vehicle-price-unit {
  font-size: 13px;
  color: var(--gray);
  padding-bottom: 4px;
}

/* --- Contact --------------------------------------------- */
.contact {
  background: var(--white);
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 14px;
}

.contact-reassure {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}
.contact-item-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.contact-item-value a {
  color: var(--blue);
  transition: color var(--transition);
}
.contact-item-value a:hover { color: var(--orange); }

/* Carte de contact CTA */
.contact-cta-card {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-cta-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(215,58,3,0.2);
}
.contact-cta-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -30px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.contact-cta-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.contact-cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
  line-height: 1.6;
  position: relative;
}
.contact-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* Boutons adaptatifs desktop/mobile */
.btn-contact-desktop { display: inline-flex; }
.btn-contact-mobile  { display: none; }

/* --- Footer ---------------------------------------------- */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.65);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo img { height: 58px; opacity: 0.9; }

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  flex: 1;
}

.footer-text { font-size: 13px; }
.footer-text a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-text a:hover { color: var(--white); }

.footer-legal-line {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-legal-line a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-legal-line a:hover { color: rgba(255,255,255,0.8); }

.footer-creator {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}
.footer-creator a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  font-weight: 500;
}
.footer-creator a:hover { color: var(--white); }

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

/* --- WhatsApp flottant ----------------------------------- */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* =========================================================
   PAGE DETAILING
   ========================================================= */

/* Hero detailing — structure parente */
.detailing-hero {
  background: var(--blue);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.detailing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(215,58,3,0.15) 0%, transparent 60%),
    linear-gradient(135deg, #001270 0%, #001c91 100%);
  z-index: 0;
}
/* Pattern géométrique */
.detailing-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 60px
    );
  z-index: 1;
}
.detailing-hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Contenu texte hero detailing */
.detailing-hero-content {
  max-width: 560px;
  padding-right: 40px;
}

/* Labels/titres dans le hero détailing */
.detailing-hero .section-label { color: #ffb89a; }
.section-title.detailing-h1 { color: var(--white); }
.section-sub.detailing-sub {
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
}

.detailing-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Zone image hero detailing (comme .hero-accent) ------- */
.detailing-hero-accent {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  width: min(42vw, 600px);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  overflow: hidden;
}

.detailing-hero-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.10),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.24),
    0 10px 30px rgba(0, 28, 145, 0.20);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

/* L'image réelle (quand elle existe) */
.detailing-hero-accent img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.28));
  /* Masquée tant qu'elle n'est pas chargée */
}

/* Placeholder si image absente */
.detailing-hero-placeholder {
  position: relative;
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 48px 32px;
  width: 100%;
  min-height: 280px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}
.detailing-hero-placeholder small {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
}

/* Quand onerror déclenche .no-img : masque img, affiche placeholder */
.detailing-hero-accent.no-img img { display: none !important; }
.detailing-hero-accent.no-img .detailing-hero-placeholder { display: flex; }

/* Responsive hero detailing */
@media (max-width: 1200px) {
  .detailing-hero-accent { right: 2%; width: min(44vw, 520px); }
}
@media (max-width: 1024px) {
  .detailing-hero-accent { right: 1%; width: min(44vw, 440px); }
}
@media (max-width: 768px) {
  .detailing-hero {
    padding: 100px 0 60px;
    min-height: auto;
    flex-direction: column;
  }
  .detailing-hero-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 32px;
  }
  .detailing-hero-accent {
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 18px;
  }
  .detailing-hero-accent img { height: 220px; border-radius: 16px; }
  .detailing-hero::after { display: none; }
}
@media (max-width: 480px) {
  .detailing-hero-accent { max-width: 320px; }
  .detailing-hero-accent img { height: 180px; }
  .detailing-hero-actions { flex-direction: column; }
  .detailing-hero-actions .btn { justify-content: center; }
}

/* Services detailing */
.detailing-services {
  background: var(--off-white);
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); }
.service-card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 18px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Marques */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.brand-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-light);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.brand-logo-area {
  width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-area img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--transition);
}

/* CTA detailing */
.detailing-cta {
  background: var(--off-white);
  padding: 72px 0;
}
.cta-box {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
}
.cta-box::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(215,58,3,0.15);
}
.cta-box-text { flex: 1; position: relative; }
.cta-box-text h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-box-text p { color: rgba(255,255,255,0.7); font-size: 15px; }
.cta-box-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
}

/* =========================================================
   PAGE MENTIONS LÉGALES
   ========================================================= */
.legal-page {
  padding-top: 68px;
}
.legal-hero {
  background: var(--blue-dark);
  padding: 60px 0 48px;
}
.legal-hero .section-label { color: #ffb89a; }
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}
.legal-body {
  padding: 64px 0 80px;
}
.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-light);
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-section h2::before {
  content: '';
  width: 4px; height: 20px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.legal-section p,
.legal-section li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-section ul { padding-left: 20px; list-style: disc; }
.legal-section strong { color: var(--text); font-weight: 600; }
.legal-section a { color: var(--blue); transition: color var(--transition); }
.legal-section a:hover { color: var(--orange); }

/* --- Responsive global ----------------------------------- */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-box { flex-direction: column; text-align: center; align-items: center; }
  .cta-box-actions { flex-direction: column; width: 100%; }
  .cta-box-actions .btn { justify-content: center; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; padding-top: 68px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  /* Mobile : CTA principal = tel */
  .btn-contact-desktop { display: none !important; }
  .btn-contact-mobile  { display: inline-flex !important; }

  /* Catalogue */
  .vehicles-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  /* Contact */
  .contact-cta-card { padding: 32px 24px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .footer-center { order: 2; }
  .footer-logo { order: 1; }
  .footer-links { order: 3; }

  /* Detailing */
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }

  /* WhatsApp */
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }

  /* CTA box */
  .cta-box { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-badges { flex-direction: column; gap: 10px; }
  .contact-cta-btns .btn { font-size: 14px; padding: 12px 18px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { padding: 28px 20px; }
  .footer-links { gap: 16px; font-size: 12px; }

  /* Legal page */
  .legal-body { padding: 40px 0 60px; }
}

/* Tablet — 2 colonnes véhicules */
@media (min-width: 600px) and (max-width: 900px) {
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
}
