/* ════════════════════════════════════════════════════════════
   SAFEWAY TRANSPORTS — Design System
   ════════════════════════════════════════════════════════════ */

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

:root {
  --bg:        #0a0a0a;
  --surface:   #111111;
  --surface2:  #161616;
  --surface3:  #1b1b1b;
  --orange:    #e07820;
  --orange-d:  #b8611a;
  --blue:      #2d8fd4;
  --green:     #3aac3a;
  --chrome:    #c8c8c8;
  --muted:     #888;
  --muted2:    #666;
  --border:    rgba(255,255,255,0.08);
  --border2:   rgba(255,255,255,0.14);
  --radius:    8px;
  --maxw:      1140px;
}

html { scroll-behavior: smooth; }

html, body { min-height: 100vh; background: var(--bg); }

body {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

a { color: inherit; }

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

/* ── Lueurs d'ambiance fixes ── */
.glow-left {
  position: fixed; top: 10%; left: -15%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(224,120,32,0.06) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.glow-center {
  position: fixed; top: 35%; left: 50%; transform: translateX(-50%);
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(45,143,212,0.05) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.glow-right {
  position: fixed; bottom: 5%; right: -15%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(58,172,58,0.06) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp 0.7s ease both; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════════════════════════
   BARRE D'URGENCE (top bar)
   ════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.45rem 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 0.5rem; }
.topbar-left .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.topbar-right { display: flex; gap: 1.4rem; }
.topbar-right a { text-decoration: none; color: var(--chrome); font-weight: 600; }
.topbar-right a:hover { color: var(--orange); }
@media (max-width: 700px) {
  .topbar .wrap { justify-content: center; text-align: center; }
  .topbar-right { gap: 1rem; }
}

/* ════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ════════════════════════════════════════════════════════════ */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.5rem;
  gap: 1.5rem;
}
.brand { display: flex; align-items: baseline; gap: 0.5rem; text-decoration: none; }
.brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem; font-weight: 700; letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff 0%, #c0c0c0 50%, #999 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.brand-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em;
  color: var(--muted); text-transform: uppercase;
}

.navlinks {
  display: flex; align-items: center; gap: 1.8rem;
  list-style: none;
}
.navlinks li + li { margin-left: 1.8rem; }
.navlinks a {
  text-decoration: none;
  font-size: 0.84rem; font-weight: 600;
  color: var(--chrome);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.navlinks a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.25s;
}
.navlinks a:hover { color: #fff; }
.navlinks a:hover::after { width: 100%; }
.navlinks a.active { color: var(--orange); }
.navlinks a.active::after { width: 100%; }

.nav-cta {
  display: flex; align-items: center; gap: 0.9rem;
}
.btn-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: #0a0a0a;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.55rem 1.1rem;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(224,120,32,0.5);
  transition: transform 0.15s, box-shadow 0.3s, background 0.15s;
}
.btn-call:hover { background: #f08a30; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(224,120,32,0.35); }
.btn-call svg { width: 16px; height: 16px; stroke: #0a0a0a; fill: none; stroke-width: 2.2; }

.burger {
  display: none;
  flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  padding: 0.5rem 1.5rem 1rem;
}
.mobile-menu a {
  text-decoration: none; color: var(--chrome);
  font-size: 0.95rem; font-weight: 600;
  padding: 0.7rem 0; border-bottom: 1px solid var(--border);
}
.mobile-menu a.active { color: var(--orange); }
.mobile-menu.open { display: flex; }

@media (max-width: 880px) {
  .navlinks { display: none; }
  .burger { display: flex; }
  .nav-cta .btn-call span.btn-call-text { display: none; }
  .nav-cta .btn-call { padding: 0.55rem 0.7rem; }
}

/* ════════════════════════════════════════════════════════════
   PAGE HERO (sous-pages)
   ════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 3rem 0 2.2rem;
  text-align: center;
  position: relative; z-index: 1;
}
.eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}
.page-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; line-height: 1.1;
  text-transform: uppercase; letter-spacing: 0.01em;
  margin-bottom: 0.9rem;
}
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero p.lead {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--chrome);
  max-width: 680px; margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.breadcrumb {
  font-size: 0.75rem; color: var(--muted);
  margin-bottom: 1rem;
  display: block;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .breadcrumb-sep { margin: 0 0.4em; color: var(--muted2); }
.breadcrumb [aria-current="page"] { color: var(--muted); }

/* ════════════════════════════════════════════════════════════
   SECTIONS GÉNÉRIQUES
   ════════════════════════════════════════════════════════════ */
section { position: relative; z-index: 1; padding: 3.2rem 0; }
section.tight { padding: 2rem 0; }
section.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 2.4rem; }
.section-head .eyebrow { margin-bottom: 0.6rem; }
.section-head h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.01em; margin-bottom: 0.7rem; line-height: 1.2;
}
.section-head h2 em { color: var(--orange); font-style: normal; }
.section-head p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ── Séparateur décoratif ── */
.sep { display: flex; align-items: center; gap: 12px; margin: 0 auto 2rem; max-width: 400px; }
.sep-line { flex: 1; height: 1px; background: var(--border); }
.sep-dot  { width: 5px; height: 5px; border-radius: 50%; background: var(--chrome); opacity: 0.3; }

/* ════════════════════════════════════════════════════════════
   PILLS
   ════════════════════════════════════════════════════════════ */
.pills { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.pill {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.12em;
  padding: 5px 16px; border-radius: 3px;
}
.pill-orange { color: var(--orange); border: 1px solid rgba(224,120,32,0.4); background: rgba(224,120,32,0.07); }
.pill-blue   { color: var(--blue);   border: 1px solid rgba(45,143,212,0.4); background: rgba(45,143,212,0.07); }
.pill-green  { color: var(--green);  border: 1px solid rgba(58,172,58,0.4); background: rgba(58,172,58,0.07); }

/* ════════════════════════════════════════════════════════════
   HERO IMAGE (accueil)
   ════════════════════════════════════════════════════════════ */
.hero-img {
  width: 100%; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); position: relative;
}
.hero-img img { width: 100%; height: 380px; object-fit: cover; object-position: center 30%; display: block; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.15) 60%, transparent 100%);
  display: flex; align-items: center; padding: 2.4rem 3rem;
}
.hero-img-text { text-align: left; max-width: 480px; }
.hero-img-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.7rem); font-weight: 700;
  line-height: 1.15; text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}
.hero-img-title em { color: var(--orange); font-style: normal; }
.hero-img-sub { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.7; font-weight: 300; margin-bottom: 1.3rem; }

.btn-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.7rem 1.4rem; border-radius: 5px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.15s, box-shadow 0.25s, background 0.15s, color 0.15s;
}
.btn-primary { background: var(--orange); color: #0a0a0a; }
.btn-primary:hover { background: #f08a30; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(224,120,32,0.35); }
.btn-ghost { border: 1px solid var(--border2); color: #fff; background: rgba(255,255,255,0.03); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

@media (max-width: 700px) {
  /* Sur mobile, le texte passe sous l'image (flux normal) plutôt qu'en
     overlay absolu : impossible qu'il dépasse ou soit rogné, quelle que
     soit sa longueur. */
  .hero-img { display: flex; flex-direction: column; height: auto; overflow: hidden; }
  .hero-img img { height: 220px; object-position: 65% center; }
  .hero-img-overlay {
    position: static;
    background: linear-gradient(180deg, rgba(10,10,10,0.97) 0%, rgba(20,20,20,0.99) 100%);
    align-items: center;
    padding: 1.5rem 1.2rem;
  }
  .hero-img-title { margin-top: 0; }
  .hero-img-text { max-width: 100%; text-align: center; }
  .hero-img-text .btn-row { justify-content: center; }
}

@media (max-width: 420px) {
  .hero-img img { height: 180px; }
  .hero-img-title { font-size: clamp(1.3rem, 7vw, 1.8rem); }
}

/* ════════════════════════════════════════════════════════════
   CARDS GRID (services)
   ════════════════════════════════════════════════════════════ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px;
  padding: 1.5rem 1.3rem; position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { transform: translateY(-3px); border-color: var(--border2); }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.card-orange::before { background: var(--orange); }
.card-blue::before   { background: var(--blue); }
.card-green::before  { background: var(--green); }

.card-icon { font-size: 1.9rem; margin-bottom: 0.7rem; display: block; }
.card-title {
  font-family: 'Rajdhani', sans-serif; font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.card-orange .card-title { color: var(--orange); }
.card-blue   .card-title { color: var(--blue); }
.card-green  .card-title { color: var(--green); }
.card-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.card-link {
  display: inline-block; margin-top: 0.9rem; font-size: 0.78rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase;
}
.card-orange .card-link { color: var(--orange); }
.card-blue   .card-link { color: var(--blue); }
.card-green  .card-link { color: var(--green); }
.card-link:hover { text-decoration: underline; }

@media (max-width: 880px) { .cards { grid-template-columns: repeat(2, 1fr); } .cards.cols-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .cards, .cards.cols-4, .cards.cols-2 { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   BANDEAU EXPRESS / ALERTE
   ════════════════════════════════════════════════════════════ */
.express {
  border: 1px solid rgba(224,120,32,0.5); background: rgba(224,120,32,0.06);
  border-radius: 6px; padding: 1.1rem 1.6rem;
  display: flex; align-items: center; gap: 1.1rem; text-align: left;
}
.express-icon { font-size: 2rem; flex-shrink: 0; }
.express-title { font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em; color: #fff; text-transform: uppercase; line-height: 1.3; }
.express-sub { font-size: 0.78rem; color: var(--orange); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }
@media (max-width: 600px) { .express { flex-direction: column; text-align: center; } }

/* ════════════════════════════════════════════════════════════
   STATS
   ════════════════════════════════════════════════════════════ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.stat-item { background: var(--surface); padding: 1.3rem 0.9rem; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-val { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 4px; }
.stat-val.orange { color: var(--orange); } .stat-val.blue { color: var(--blue); } .stat-val.green { color: var(--green); }
.stat-lbl { font-size: 0.66rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
@media (max-width: 600px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

/* ════════════════════════════════════════════════════════════
   IMAGE DUO
   ════════════════════════════════════════════════════════════ */
.img-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.img-duo-item { border-radius: 6px; overflow: hidden; border: 1px solid var(--border); position: relative; }
.img-duo-item img { width: 100%; height: 220px; object-fit: cover; display: block; }
.img-duo-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.78)); padding: 0.9rem 1.1rem 0.8rem; text-align: left; }
.img-duo-caption strong { display: block; font-family: 'Rajdhani', sans-serif; font-size: 0.84rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
.img-duo-caption.orange strong { color: var(--orange); }
.img-duo-caption.blue strong   { color: var(--blue); }
.img-duo-caption span { font-size: 0.7rem; color: rgba(255,255,255,0.55); }
@media (max-width: 700px) {
  .img-duo { grid-template-columns: 1fr; }
  .img-duo-item[style*="height:320px"] { height: 220px !important; }
}

/* ════════════════════════════════════════════════════════════
   TEXTE ÉDITORIAL (contenu SEO)
   ════════════════════════════════════════════════════════════ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 {
  font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.01em; margin: 2rem 0 0.8rem; color: #fff;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--orange); margin: 1.4rem 0 0.5rem; letter-spacing: 0.02em;
}
.prose p { color: #ccc; font-size: 0.95rem; line-height: 1.85; margin-bottom: 1rem; font-weight: 300; }
.prose ul { color: #ccc; font-size: 0.95rem; line-height: 1.85; margin: 0 0 1rem 1.2rem; font-weight: 300; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: #fff; font-weight: 600; }
.prose a { color: var(--blue); text-decoration: underline; text-decoration-color: rgba(45,143,212,0.35); }
.prose a:hover { text-decoration-color: var(--blue); }

/* ════════════════════════════════════════════════════════════
   TABLEAU FLOTTE
   ════════════════════════════════════════════════════════════ */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fleet-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; transition: border-color 0.25s, transform 0.25s;
}
.fleet-card:hover { transform: translateY(-3px); border-color: var(--border2); }
.fleet-visual {
  height: 110px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; background: var(--surface2); border-bottom: 1px solid var(--border);
}
.fleet-body { padding: 1.1rem 1.2rem 1.3rem; }
.fleet-name { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.7rem; color: #fff; letter-spacing: 0.02em; }
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 0.8rem; margin-bottom: 0; }
.fleet-spec { font-size: 0.74rem; }
.fleet-spec-lbl { color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.62rem; margin-bottom: 1px; }
.fleet-spec-val { color: #fff; font-weight: 600; font-family: 'Rajdhani', sans-serif; font-size: 0.95rem; }
.fleet-spec-val.orange { color: var(--orange); }
.fleet-spec-val.blue { color: var(--blue); }
.fleet-spec-val.green { color: var(--green); }
@media (max-width: 880px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fleet-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   ZONES / VILLES
   ════════════════════════════════════════════════════════════ */
.zone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.zone-chip {
  background: var(--surface); border: 1px solid var(--border); border-radius: 6px;
  padding: 0.8rem 1rem; font-size: 0.85rem; color: var(--chrome); text-align: center;
  font-weight: 600; transition: border-color 0.2s, color 0.2s;
}
.zone-chip:hover { border-color: var(--orange); color: #fff; }
@media (max-width: 880px) { .zone-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .zone-grid { grid-template-columns: repeat(2, 1fr); } }

.map-block {
  background: var(--surface2); border: 1px solid var(--border); border-radius: 8px;
  padding: 1.6rem; text-align: center;
}

/* ════════════════════════════════════════════════════════════
   TIMELINE / PROCESS (comment ça marche)
   ════════════════════════════════════════════════════════════ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-step { text-align: left; position: relative; padding-left: 0; }
.process-num {
  font-family: 'Rajdhani', sans-serif; font-size: 2.2rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.5px var(--orange);
  line-height: 1; margin-bottom: 0.6rem; display: block;
}
.process-step h3 { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.4rem; color: #fff; letter-spacing: 0.03em; }
.process-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 880px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   FAQ (accordéon)
   ════════════════════════════════════════════════════════════ */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.3rem; text-align: left;
  font-family: 'Rajdhani', sans-serif; font-size: 0.98rem; font-weight: 700; color: #fff;
}
.faq-q .plus { font-size: 1.3rem; color: var(--orange); transition: transform 0.25s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 1.3rem 1.2rem; font-size: 0.87rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
.faq-item.open .faq-a { max-height: 500px; }

/* ════════════════════════════════════════════════════════════
   AVIS CLIENTS
   ════════════════════════════════════════════════════════════ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 1.4rem 1.3rem; }
.review-stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 0.7rem; letter-spacing: 2px; }
.review-text { font-size: 0.86rem; color: #ccc; line-height: 1.7; margin-bottom: 1rem; font-weight: 300; font-style: italic; }
.review-author { font-family: 'Rajdhani', sans-serif; font-size: 0.85rem; font-weight: 700; color: #fff; }
.review-role { font-size: 0.72rem; color: var(--muted); }
@media (max-width: 880px) { .reviews { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   PARTENAIRE BLOCK
   ════════════════════════════════════════════════════════════ */
.partner-block { background: var(--surface2); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem 1.7rem; text-align: left; }
.partner-title { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: #fff; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.partner-title span { color: var(--green); }
.partner-sub { font-size: 0.86rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.7rem; }
.partner-region { font-size: 0.82rem; color: var(--green); font-weight: 600; font-style: italic; }

/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: start; }
.contact-block { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 1.7rem 1.8rem; text-align: left; }
.contact-title { font-family: 'Rajdhani', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.contact-items { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 14px; font-size: 0.92rem; color: #ddd; }
.contact-item .ci-icon { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact-item.phone { font-size: 1.5rem; font-family: 'Rajdhani', sans-serif; font-weight: 700; color: #fff; }
.contact-item.phone .ci-icon { border-color: rgba(224,120,32,0.4); background: rgba(224,120,32,0.08); }
.contact-item a { color: inherit; text-decoration: none; }
.contact-item a:hover { color: var(--blue); }
.contact-hours { font-size: 0.82rem; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 1rem; }
.contact-hours strong { color: var(--green); }

/* Formulaire */
.form-block { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 1.7rem 1.8rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg); border: 1px solid var(--border2); border-radius: 5px;
  padding: 0.65rem 0.8rem; color: #fff; font-family: 'Open Sans', sans-serif; font-size: 0.9rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: var(--orange); color: #0a0a0a;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.85rem; border-radius: 5px; border: none; cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.form-submit:hover { background: #f08a30; transform: translateY(-1px); }
.form-note { font-size: 0.72rem; color: var(--muted2); margin-top: 0.8rem; text-align: center; }
.form-note.form-success { font-size: 0.9rem; font-weight: 600; color: #1e8e3e; }
.form-note.form-error { font-size: 0.9rem; font-weight: 600; color: #c5221f; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER VALEURS
   ════════════════════════════════════════════════════════════ */
.footer-bar { display: flex; justify-content: center; gap: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.footer-item { display: flex; align-items: center; gap: 9px; font-size: 0.74rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.footer-item svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; opacity: 0.6; }

/* ════════════════════════════════════════════════════════════
   FOOTER GLOBAL
   ════════════════════════════════════════════════════════════ */
footer.site {
  border-top: 1px solid var(--border);
  padding: 2.6rem 0 1.6rem;
  position: relative; z-index: 1;
  margin-top: 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 2rem; }
.footer-col h4 { font-family: 'Rajdhani', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer-col p { font-size: 0.82rem; color: var(--muted); line-height: 1.8; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.84rem; color: var(--chrome); text-decoration: none; }
.footer-col a:hover { color: var(--orange); }

.legal { border-top: 1px solid var(--border); padding-top: 1.4rem; display: flex; justify-content: center; gap: 2.2rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.legal-item { text-align: left; }
.legal-label { font-size: 0.6rem; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2px; }
.legal-value { font-size: 0.74rem; color: #bbb; }
.legal-sep { width: 1px; background: var(--border); }

.copyright { font-size: 10px; color: rgba(255,255,255,0.18); letter-spacing: 0.1em; text-align: center; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .legal { gap: 1.2rem; }
  .legal-sep { display: none; }
}

/* ════════════════════════════════════════════════════════════
   CTA BAND
   ════════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, rgba(224,120,32,0.12), rgba(45,143,212,0.08));
  border: 1px solid rgba(224,120,32,0.3);
  border-radius: 10px;
  padding: 2.4rem 2rem;
  text-align: center;
}
.cta-band h2 { font-family: 'Rajdhani', sans-serif; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; text-transform: uppercase; margin-bottom: 0.6rem; }
.cta-band p { color: var(--chrome); font-size: 0.95rem; margin-bottom: 1.4rem; }

/* ════════════════════════════════════════════════════════════
   UTILITAIRES
   ════════════════════════════════════════════════════════════ */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--orange); outline-offset: 2px;
}

/* ════════════════════════════════════════════════════════════
   LOGO ADR
   ════════════════════════════════════════════════════════════ */
.adr-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════
   RGPD — BANDEAU COOKIES
   ════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--surface2);
  border-top: 1px solid var(--border2);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.4);
}
.cookie-banner-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-banner-text {
  flex: 1 1 420px;
  font-size: 0.85rem;
  color: var(--chrome);
  margin: 0;
}
.cookie-banner-text a { color: var(--orange); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

@media (max-width: 600px) {
  .cookie-banner-inner {
    padding: 0.8rem 0.9rem;
    gap: 0.7rem;
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-banner-text {
    flex: 1 1 auto;
    font-size: 0.82rem;
    line-height: 1.4;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
  }
  .cookie-banner-actions {
    flex: 0 0 auto;
    gap: 0.5rem;
    width: 100%;
  }
  .cookie-banner-actions .btn-sm {
    flex: 1 1 0;
    padding: 0.55rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* ════════════════════════════════════════════════════════════
   RGPD — LIENS LÉGAUX FOOTER
   ════════════════════════════════════════════════════════════ */
.legal-links {
  display: inline-flex;
  gap: 0.5rem;
  margin-left: 0.6rem;
  flex-wrap: wrap;
}
.legal-links a { color: var(--muted); text-decoration: underline; }
.legal-links a:hover { color: var(--orange); }
.legal-links span[aria-hidden] { color: var(--muted2); }

@media (max-width: 600px) {
  .legal-links { display: flex; margin-left: 0; margin-top: 6px; }
}

/* ════════════════════════════════════════════════════════════
   RGPD — CASE DE CONSENTEMENT FORMULAIRE
   ════════════════════════════════════════════════════════════ */
.form-consent { margin-top: 0.4rem; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--chrome);
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}
.consent-label a { color: var(--orange); text-decoration: underline; }

/* ════════════════════════════════════════════════════════════
   PAGES LÉGALES (mentions-legales.html / politique-confidentialite.html)
   ════════════════════════════════════════════════════════════ */
.legal-page h2 { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; margin: 2rem 0 0.8rem; text-transform: uppercase; color: #fff; }
.legal-page h3 { font-size: 1.05rem; margin: 1.4rem 0 0.5rem; color: #fff; }
.legal-page p, .legal-page li { color: var(--chrome); font-size: 0.95rem; line-height: 1.7; }
.legal-page ul { padding-left: 1.3rem; margin-bottom: 0.8rem; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.6rem; font-size: 0.9rem; }
.legal-page th, .legal-page td { text-align: left; padding: 0.6rem 0.8rem; border: 1px solid var(--border); color: var(--chrome); }
.legal-page th { color: #fff; background: var(--surface2); }
.legal-page .updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.6rem; }
.table-responsive { width: 100%; max-width: 100%; }

@media (max-width: 700px) {
  /* Le tableau "Base légale" passe en cartes empilées : plus besoin de
     slider horizontalement, ce qui évitait le décalage de toute la page. */
  .legal-page .table-responsive table,
  .legal-page .table-responsive thead,
  .legal-page .table-responsive tbody,
  .legal-page .table-responsive tr,
  .legal-page .table-responsive th,
  .legal-page .table-responsive td {
    display: block;
    width: 100%;
  }
  .legal-page .table-responsive tr:first-child { display: none; } /* masque l'ancienne ligne d'en-tête */
  .legal-page .table-responsive tr {
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
  }
  .legal-page .table-responsive td {
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0.8rem;
  }
  .legal-page .table-responsive td:last-child { border-bottom: none; }
  .legal-page .table-responsive td::before {
    content: attr(data-label);
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 0.25rem;
  }
}
