/* ════════════════════════════════════════════════
   VOLET ROULANT YVELINES — shared stylesheet
   Same palette, refreshed design language:
   · Hero: full-bleed dark slate with orange diagonal accent
   · Cards: border-bottom accent instead of border-top/left
   · Section alternation: white → cream → slate → white
   · Tags: pill-shaped with filled orange background
   · Buttons: rounded-full pill style
   · Nav: transparent-to-dark scroll effect
   · Callbar: compact stripe pattern
   · Footer: two-tone split
════════════════════════════════════════════════ */

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

:root {
  --orange:    #f26522;
  --orange-dk: #d4511a;
  --orange-lt: #fff3ec;
  --orange-mid:#ff8c42;
  --slate:     #0f172a;
  --slate-mid: #1e293b;
  --slate-lt:  #334155;
  --ink:       #0f172a;
  --muted:     #64748b;
  --border:    #e2e8f0;
  --surface:   #ffffff;
  --cream:     #f8f9fc;
  --green:     #25D366;
  --r:    6px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-full: 9999px;
}

html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { font-family: 'Poppins', sans-serif; background: var(--surface); color: var(--ink); line-height: 1.68; }
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; }
strong { color: var(--slate); font-weight: 600; }
a  { text-decoration: none; }
img { display: block; }

/* ════ CALLBAR ════ */
.callbar {
  background: var(--slate);
  border-bottom: 3px solid var(--orange);
  padding: .42rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2.4rem; flex-wrap: wrap;
}
.cb-item { display: flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.75); font-size: .78rem; font-weight: 500; }
.cb-item i { color: var(--orange); font-size: .72rem; }
.cb-item strong { color: #fff; font-weight: 700; }
.cb-sep { color: rgba(255,255,255,.18); font-size: .7rem; }
@media(max-width:600px){ .cb-sep{display:none;} .callbar{gap:.7rem;padding:.42rem 1rem;} }

/* ════ NAV ════ */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--slate);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 6px 28px rgba(15,23,42,.28);
}
.nav-logo { font-weight: 800; font-size: 1rem; color: #fff; display: flex; align-items: center; gap: .55rem; letter-spacing: -.01em; }
.nav-logo .logo-mark {
  width: 32px; height: 32px; border-radius: var(--r);
  background: var(--orange); display: grid; place-items: center;
  color: #fff; font-size: .85rem; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a {
  color: rgba(255,255,255,.6); font-size: .84rem; font-weight: 500;
  padding: .45rem .9rem; border-radius: var(--r-full);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-links a.active { color: #fff; background: rgba(242,101,34,.18); }
.nav-right { display: flex; align-items: center; gap: .55rem; }
.nav-tel {
  color: rgba(255,255,255,.7); font-size: .84rem; font-weight: 500;
  display: flex; align-items: center; gap: .4rem;
  padding: .38rem .9rem; border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-full); transition: all .2s;
}
.nav-tel i { color: var(--orange); }
.nav-tel:hover { color: #fff; border-color: rgba(255,255,255,.36); }
.nav-cta {
  background: var(--orange); color: #fff; font-weight: 700; font-size: .84rem;
  padding: .42rem 1.2rem; border-radius: var(--r-full);
  display: flex; align-items: center; gap: .38rem;
  transition: background .2s, transform .15s;
  box-shadow: 0 2px 12px rgba(242,101,34,.4);
}
.nav-cta:hover { background: var(--orange-dk); transform: translateY(-1px); }
@media(max-width:900px){ .nav-links{display:none;} }
@media(max-width:580px){ .nav-tel{display:none;} nav{padding:0 1rem;} }

/* ════ HERO — dark slate + image ════ */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--slate);
  position: relative; overflow: hidden;
}
/* diagonal orange bar */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--slate) 52%, transparent 52%);
  pointer-events: none; z-index: 1;
}
@media(max-width:860px){
  .hero { grid-template-columns: 1fr; min-height: auto; display: flex;
        flex-direction: column;}
  .hero::after { display: none; }
  .hero-right { order: -1; min-height: 350px!important;}
  .urgence-strip-right{justify-content: center;}
  .urgence-strip-left{flex-direction: column;text-align: center;}
  .trust-bar-inner{justify-content: center;flex-wrap: wrap;}
  .cta-btns{justify-content: center;}
}
.hero-left {
  position: relative; z-index: 2;
  padding: 5rem 3.5rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
@media(max-width:860px){ .hero-left{ padding: 2.5rem 1.5rem 3rem; align-items: center; text-align: center; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(242,101,34,.18); border: 1px solid rgba(242,101,34,.35);
  color: var(--orange-mid); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem 1rem; border-radius: var(--r-full);
  margin-bottom: 1.6rem; width: fit-content;
}
@media(max-width:860px){ .hero-eyebrow{ margin-left:auto; margin-right:auto; } }

.hero h1 { font-size: clamp(2.1rem,4.5vw,3.6rem); color: #fff; line-height: 1.1; margin-bottom: 1rem; font-weight: 800; letter-spacing: -.02em; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero h1 strong { color: #fff; }

.hero-sub { color: rgba(255,255,255,.6); font-size: .97rem; line-height: 1.8; margin-bottom: 2rem; max-width: 460px; }
.hero-sub strong { color: rgba(255,255,255,.9); }
@media(max-width:860px){ .hero-sub{ max-width: 100%; } }

.pill-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.2rem; }
@media(max-width:860px){ .pill-list{ justify-content: center; } }
.pill {
  display: inline-flex; align-items: center; gap: .38rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8); font-size: .76rem; font-weight: 600;
  padding: .28rem .85rem; border-radius: var(--r-full);
}
.pill i { color: var(--orange); font-size: .68rem; }

.hero-btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.8rem; }
@media(max-width:860px){ .hero-btns{ justify-content: center; } }

/* stat strip */
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.8rem;
}
@media(max-width:860px){ .hero-stats{ justify-content: center; } }
.hs-item { flex: 1; padding-right: 2rem; }
@media(max-width:860px){ .hs-item{ padding: 0 1.2rem; text-align: center; border-right: 1px solid rgba(255,255,255,.1); } .hs-item:last-child{ border-right: none; } }
.hs-num { font-size: 1.55rem; font-weight: 800; color: var(--orange); line-height: 1; }
.hs-lbl { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: .2rem; text-transform: uppercase; letter-spacing: .06em; }

/* hero right — full bleed image */
.hero-right { position: relative; z-index: 0; overflow: hidden; min-height: 480px; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; }
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--slate) 0%, transparent 35%);
}
@media(max-width:860px){ .hero-right-overlay{ background: linear-gradient(to bottom, transparent 60%, var(--slate) 100%); } }
/* floating badge on image */
.hero-img-badge {
  position: absolute; bottom: 1.8rem; left: 1.8rem; right: 1.8rem;
  background: rgba(15,23,42,.82); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1); border-left: 3px solid var(--orange);
  border-radius: var(--r-lg); padding: 1rem 1.4rem; z-index: 3;
  display: flex; align-items: center; gap: 1rem;
}
.hib-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--orange); border-radius: var(--r); display: grid; place-items: center; color: #fff; font-size: 1rem; }
.hib-text strong { display: block; font-size: .92rem; color: #fff; }
.hib-text span { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ════ URGENCE STRIP ════ */
.urgence-strip {
  background: var(--orange);
  padding: .9rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.urgence-strip-left { display: flex; align-items: center; gap: 1rem; }
.us-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(255,255,255,.2); border-radius: var(--r); display: grid; place-items: center; font-size: 1.1rem; color: #fff; }
.us-text { font-size: .9rem; font-weight: 600; color: #fff; }
.us-text span { font-weight: 400; opacity: .85; font-size: .82rem; display: block; }
.urgence-strip-right { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.us-num { font-size: 1.45rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: .45rem; letter-spacing: -.01em; }

/* ════ BUTTONS ════ */
.btn-orange {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--orange); color: #fff; font-weight: 700; font-size: .97rem;
  padding: .82rem 1.9rem; border-radius: var(--r-full);
  box-shadow: 0 4px 18px rgba(242,101,34,.38);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-orange:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,101,34,.45); }

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff; font-weight: 600; font-size: .97rem;
  padding: .82rem 1.9rem; border-radius: var(--r-full);
  border: 2px solid rgba(255,255,255,.35);
  transition: border-color .2s, background .2s;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.07); }

.btn-slate {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--slate); color: #fff; font-weight: 700; font-size: .97rem;
  padding: .82rem 1.9rem; border-radius: var(--r-full);
  transition: background .2s, transform .15s;
}
.btn-slate:hover { background: var(--slate-mid); transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--orange-dk); font-weight: 700; font-size: .9rem;
  padding: .72rem 1.5rem; border-radius: var(--r-full);
  transition: background .2s;
}
.btn-white:hover { background: #fff0e8; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff; font-weight: 600; font-size: .9rem;
  padding: .72rem 1.5rem; border-radius: var(--r-full);
  border: 2px solid rgba(255,255,255,.5);
  transition: border-color .2s;
}
.btn-outline-white:hover { border-color: #fff; }

/* ════ SECTIONS ════ */
section { padding: 5.5rem 2.5rem; }
.sec-cream { background: var(--cream); }
.sec-white { background: var(--surface); }
.sec-slate { background: var(--slate); }
.container { max-width: 1160px; margin: 0 auto; }
@media(max-width:600px){ section{ padding: 3.5rem 1.2rem; } }

/* section label / eyebrow */
.sec-label {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--orange); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: .28rem .9rem; border-radius: var(--r-full); margin-bottom: .9rem;
}
.sec-label-ghost {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--orange-lt); color: var(--orange-dk);
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: .28rem .9rem; border-radius: var(--r-full); margin-bottom: .9rem;
}
.sec-label-dark {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(242,101,34,.18); color: var(--orange-mid);
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: .28rem .9rem; border-radius: var(--r-full); margin-bottom: .9rem;
}

h2 { font-size: clamp(1.75rem,3vw,2.6rem); color: var(--slate); line-height: 1.18; margin-bottom: 1rem; font-weight: 700; letter-spacing: -.01em; }
h2 em { color: var(--orange); font-style: normal; }
.sec-slate h2 { color: #fff; }

.lead-text { color: var(--muted); max-width: 620px; font-size: .98rem; margin-bottom: 3rem; line-height: 1.82; }
.lead-text strong { color: var(--orange-dk); }
.sec-slate .lead-text { color: rgba(255,255,255,.5); }

/* two-col layout helper */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.two-col-start { align-items: start; }
@media(max-width:820px){ .two-col{ grid-template-columns: 1fr; gap: 2.5rem; } }

.text-body p { color: var(--muted); font-size: .97rem; line-height: 1.82; margin-bottom: 1.2rem; }
.text-body p strong { color: var(--slate); }
.text-body p:last-child { margin-bottom: 0; }
.sec-slate .text-body p { color: rgba(255,255,255,.6); }
.sec-slate .text-body p strong { color: rgba(255,255,255,.9); }

/* ════ ATOUTS / FEATURE CARDS ════ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.4rem; margin-top: 2.5rem; }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.8rem 1.8rem 2rem;
  border-bottom: 4px solid var(--orange);   /* ← bottom accent instead of top */
  transition: transform .22s, box-shadow .22s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(242,101,34,.08) 0%, transparent 70%);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.09); }

.fc-num {
  font-size: 2.8rem; font-weight: 800;
  color: rgba(242,101,34,.12); line-height: 1;
  margin-bottom: .6rem; letter-spacing: -.04em;
}
.fc-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--orange); display: grid; place-items: center;
  color: #fff; font-size: 1.15rem; margin-bottom: 1.1rem;
}
.feature-card h3 { font-size: 1.02rem; color: var(--slate); margin-bottom: .45rem; font-weight: 700; }
.feature-card p { font-size: .87rem; color: var(--muted); line-height: 1.72; }
.feature-card p strong { color: var(--slate); }

/* dark variant */
.feature-card.dark {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  border-bottom-color: var(--orange);
}
.feature-card.dark h3 { color: #fff; }
.feature-card.dark p { color: rgba(255,255,255,.5); }

/* ════ SERVICE CARDS ════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.4rem; margin-top: 2rem; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem; overflow: hidden; position: relative;
  transition: transform .22s, box-shadow .22s;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.08); }
.service-card:hover::after { transform: scaleX(1); }
.sc-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  background: var(--orange-lt); display: grid; place-items: center;
  color: var(--orange); font-size: 1.25rem; margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1.05rem; color: var(--slate); margin-bottom: .5rem; font-weight: 700; }
.service-card p { font-size: .87rem; color: var(--muted); line-height: 1.68; }
.service-card p strong { color: var(--slate); }
.sc-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 600; color: var(--orange); margin-top: 1.1rem; transition: gap .2s; }
.sc-link:hover { gap: .65rem; }

/* ════ CALLOUT BOX ════ */
.callout-box {
  background: var(--slate);
  border-radius: var(--r-xl);
  padding: 2rem 2.2rem;
  position: relative; overflow: hidden;
  border-left: 4px solid var(--orange);
  margin-top: 2rem;
}
.callout-box::after {
  content: '\f095';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%);
  font-size: 5rem; color: rgba(255,255,255,.05);
}
.callout-box p { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.78; margin-bottom: .8rem; }
.callout-box p strong { color: #fff; }
.callout-num { font-size: 1.65rem; color: var(--orange); font-weight: 700; display: flex; align-items: center; gap: .5rem; }

/* ════ ASIDE IMAGE ════ */
.aside-img { border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.13); }
.aside-img img { width: 100%; height: 420px; object-fit: cover; }

/* ════ TARIF CARD ════ */
.tarif-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.tc-head {
  background: var(--slate);
  padding: 1.8rem 2rem;
}
.tc-eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: .55rem; }
.tc-title { font-size: 1.35rem; color: #fff; font-weight: 700; line-height: 1.28; margin-bottom: .4rem; }
.tc-subtitle { font-size: .83rem; color: rgba(255,255,255,.45); line-height: 1.65; }
.tc-price-badge {
  display: inline-flex; align-items: baseline; gap: .3rem;
  margin-top: 1.1rem;
}
.tc-price-badge strong { font-size: 2.6rem; color: var(--orange); font-weight: 800; line-height: 1; }
.tc-price-badge span { font-size: .82rem; color: rgba(255,255,255,.4); }
.tc-body { padding: 1.8rem 2rem; }
.tc-rows { display: flex; flex-direction: column; }
.tc-row { display: flex; align-items: center; justify-content: space-between; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.tc-row:last-child { border-bottom: none; }
.tc-row-label { font-size: .88rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.tc-row-label i { color: var(--orange); font-size: .75rem; }
.tc-row-val { font-size: .92rem; font-weight: 700; color: var(--slate); }
.tc-cta { padding: 0 2rem 1.8rem; }
.tc-cta .btn-orange { width: 100%; justify-content: center; }

/* dark tarif variant (used on dark sections) */
.tarif-card.dark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.09); }
.tarif-card.dark .tc-body { padding: 1.8rem 2rem; }
.tarif-card.dark .tc-row { border-bottom-color: rgba(255,255,255,.07); }
.tarif-card.dark .tc-row-label { color: rgba(255,255,255,.6); }
.tarif-card.dark .tc-row-val { color: var(--orange); }
.tarif-card.dark .tc-cta { padding: 0 2rem 1.8rem; }

/* ════ PANNE ITEMS ════ */
.pannes-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.1rem; margin-top: 2rem; }
.panne-item {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.1rem 1.2rem;
  transition: border-color .2s, transform .2s;
}
.panne-item:hover { border-color: var(--orange); transform: translateX(3px); }
.panne-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--orange-lt); border-radius: 8px; display: grid; place-items: center; color: var(--orange); font-size: .88rem; }
.panne-item h3 { font-size: .92rem; color: var(--slate); font-weight: 700; margin-bottom: .2rem; }
.panne-item p { font-size: .8rem; color: var(--muted); line-height: 1.58; }

/* ════ STEPS (process) ════ */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item { display: grid; grid-template-columns: 48px 1fr; gap: 1.2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange-lt); border: 2px solid var(--orange);
  display: grid; place-items: center;
  font-size: 1.1rem; font-weight: 800; color: var(--orange);
  flex-shrink: 0;
}
.step-item h3 { font-size: .98rem; color: var(--slate); font-weight: 700; margin-bottom: .25rem; }
.step-item p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ════ MARQUES GRID ════ */
.marques-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(170px,1fr)); gap: 1rem; margin-top: 2.5rem; }
.marque-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.4rem 1.2rem; text-align: center;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.marque-card:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.mc-icon { width: 46px; height: 46px; background: var(--orange-lt); border-radius: 10px; display: grid; place-items: center; color: var(--orange); font-size: 1.2rem; margin: 0 auto .9rem; }
.marque-card h3 { font-size: .92rem; color: var(--slate); font-weight: 700; margin-bottom: .3rem; }
.marque-card p { font-size: .78rem; color: var(--muted); line-height: 1.55; }

/* ════ HORAIRES ════ */
.horaires-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.horaire-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: .75rem;
}
.hi-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(242,101,34,.2); border-radius: 8px; display: grid; place-items: center; color: var(--orange); font-size: .85rem; }
.horaire-item strong { font-size: .82rem; color: #fff; display: block; }
.horaire-item span { font-size: .78rem; color: rgba(255,255,255,.45); }

/* ════ FAQ ════ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.05rem 0; cursor: pointer; user-select: none;
}
.faq-q:hover .fq-label { color: var(--orange); }
.fq-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .fq-dot { transform: scale(1.6); }
.fq-label { font-size: .93rem; font-weight: 600; color: var(--ink); flex: 1; transition: color .2s; }
.faq-item.open .fq-label { color: var(--orange); }
.fq-arr { color: var(--muted); font-size: .72rem; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .fq-arr { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; padding-left: 1.7rem; }
.faq-a p { font-size: .87rem; color: var(--muted); line-height: 1.74; padding-bottom: 1.1rem; }
.faq-item.open .faq-a { max-height: 240px; }

/* ════ CONTACT ════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 4rem; align-items: start; }
@media(max-width:820px){ .contact-layout{ grid-template-columns: 1fr; gap: 2.5rem; } 
.horaires-grid { display: flex; flex-direction: column;}}
.contact-left p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 2rem; }

.cinfo-stack { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.cinfo-row {
  display: flex; align-items: center; gap: .85rem;
  padding: .8rem 1rem;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r-lg); transition: border-color .2s;
}
.cinfo-row:hover { border-color: var(--orange); }
.ci-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--orange); border-radius: 8px; display: grid; place-items: center; color: #fff; font-size: .85rem; }
.cinfo-row > div:last-child { display: flex; flex-direction: column; gap: .1rem; }
.cinfo-row strong { font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; display: block; }
.cinfo-row a, .cinfo-row span { font-size: .9rem; color: var(--slate); font-weight: 600; }
.cinfo-row a:hover { color: var(--orange); }

/* form card */
.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
}
.form-card-head { background: var(--slate); padding: 1.6rem 2rem; }
.form-card-head h3 { font-size: 1.25rem; color: #fff; font-weight: 700; margin-bottom: .3rem; }
.form-card-head p { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.form-card-body { padding: 1.8rem 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
@media(max-width:560px){ .form-grid{ grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; gap: .35rem; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: .76rem; font-weight: 700; color: var(--slate); letter-spacing: .04em; text-transform: uppercase; display: flex; align-items: center; gap: .3rem; }
.fg label i { color: var(--orange); font-size: .68rem; }
.req { color: var(--orange); }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: .62rem .9rem;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: 'Poppins', sans-serif; font-size: .87rem; color: var(--ink);
  background: var(--cream); transition: border-color .2s, box-shadow .2s; outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--orange); background: #fff;
  box-shadow: 0 0 0 3px rgba(242,101,34,.1);
}
.fg textarea { min-height: 105px; resize: vertical; }
.form-submit {
  width: 100%; margin-top: 1rem;
  background: var(--orange); color: #fff; font-weight: 700; font-size: 1rem;
  padding: .88rem 1.5rem; border-radius: var(--r-full); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: 'Poppins', sans-serif;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(242,101,34,.3);
}
.form-submit:hover { background: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(242,101,34,.4); }
.form-note { font-size: .71rem; color: var(--muted); text-align: center; margin-top: .8rem; }
#result { margin-top: .75rem; font-size: .88rem; color: #16a34a; text-align: center; font-weight: 600; }

/* ════ FINAL CTA ════ */
.cta-final { background: var(--slate); padding: 5.5rem 2.5rem; position: relative; overflow: hidden; }
.cta-final::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 5px;
  background: var(--orange);
}
.cta-final::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 40%;
  background: linear-gradient(to left, rgba(242,101,34,.06) 0%, transparent 100%);
}
.cta-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; position: relative; z-index: 1; }
@media(max-width:820px){ .cta-inner{ grid-template-columns: 1fr; } }
.cta-text h2 { color: #fff; font-size: clamp(1.55rem,2.8vw,2.2rem); margin-bottom: .9rem; }
.cta-text h2 em { color: var(--orange); font-style: italic; }
.cta-text p { color: rgba(255,255,255,.6); font-size: .97rem; line-height: 1.82; max-width: 540px; }
.cta-action { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; min-width: 220px; }
.cta-phone { font-size: 1.85rem; color: var(--orange); font-weight: 800; display: flex; align-items: center; gap: .55rem; letter-spacing: -.02em; transition: opacity .2s; }
.cta-phone:hover { opacity: .85; }
.cta-btns { display: flex; flex-wrap: wrap; gap: .7rem; }
.cta-checks { display: flex; flex-direction: column; gap: .42rem; }
.cta-check { display: flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.65); font-size: .82rem; }
.cta-check i { color: var(--orange); font-size: .65rem; }

/* ════ BREADCRUMB ════ */
.breadcrumb { padding: .85rem 2.5rem; background: var(--cream); border-bottom: 1px solid var(--border); }
.breadcrumb-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; gap: .45rem; font-size: .78rem; color: var(--muted); }
.breadcrumb-inner a { color: var(--orange); font-weight: 600; }
.breadcrumb-inner i { font-size: .58rem; }

/* ════ FOOTER ════ */
footer { background: var(--slate); }
.footer-top {
  max-width: 1160px; margin: 0 auto; padding: 3.5rem 2.5rem 2.5rem;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media(max-width:720px){ .footer-top{ grid-template-columns: 1fr; } }
.footer-brand { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: .6rem; letter-spacing: -.01em; }
.footer-brand em { color: var(--orange); font-style: normal; }
.footer-desc { font-size: .83rem; color: rgba(255,255,255,.38); line-height: 1.78; margin-bottom: .9rem; }
.footer-address { font-size: .8rem; color: rgba(255,255,255,.35); display: flex; align-items: flex-start; gap: .4rem; }
.footer-address i { color: var(--orange); margin-top: .18rem; flex-shrink: 0; }
.footer-col h4 { font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.35); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.5); font-size: .85rem; margin-bottom: .5rem; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-col a i { width: 14px; color: rgba(242,101,34,.6); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding: 1.1rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.22); }

/* ════ FLOAT PHONE ════ */
.float-btn {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center; font-size: 1.45rem;
  box-shadow: 0 4px 20px rgba(242,101,34,.5);
  transition: transform .2s, box-shadow .2s;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(242,101,34,.6); }
.float-tip {
  position: fixed; bottom: 2.4rem; right: 4.8rem; z-index: 998;
  background: var(--slate); color: #fff; font-size: .74rem; font-weight: 600;
  padding: .38rem .85rem; border-radius: var(--r-full); white-space: nowrap;
  box-shadow: 0 3px 14px rgba(0,0,0,.18); opacity: 0; transition: opacity .3s; pointer-events: none;
}
.float-btn:hover ~ .float-tip { opacity: 1; }

/* ════ RESPONSIVE HELPERS ════ */
@media(max-width:860px){
  .hero-sub, .hero p.lead { max-width: 100%; }
  .two-col.flip-mobile > *:first-child { order: 2; }
  .two-col.flip-mobile > *:last-child { order: 1; }
}

/* form submit animation */
@keyframes spin { to{ transform: rotate(360deg); } }
.fa-spin { animation: spin .7s linear infinite; }
