/* ============================================================
   CRÉABAT 78 – Feuille de styles partagée
   Couleurs : Bleu #2B3990 | Orange #E8511A
   ============================================================ */

:root {
  --blue:        #2B3990;
  --blue-dark:   #1e2a6d;
  --orange:      #E8511A;
  --orange-light:#f06a35;
  --white:       #ffffff;
  --gray-light:  #f5f6fa;
  --gray:        #e8eaf0;
  --text:        #1a1a2e;
  --text-light:  #6b7280;
  --shadow:      0 4px 24px rgba(43,57,144,.12);
  --shadow-hover:0 8px 40px rgba(43,57,144,.22);
  --radius:      12px;
  --tr:          0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'Poppins', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }
img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ── Utilitaires ── */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 20px;
}

.section-title          { text-align: center; margin-bottom: 56px; }
.section-title .label   {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--orange); background: rgba(232,81,26,.1);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 14px;
}
.section-title h2 {
  font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800;
  color: var(--blue-dark); line-height: 1.2; margin-bottom: 16px;
}
.section-title p { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  border: none; transition: var(--tr); font-family: 'Poppins',sans-serif;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 20px rgba(232,81,26,.35);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,81,26,.45); }
.btn-blue   { background: var(--blue); color: #fff; box-shadow: 0 4px 20px rgba(43,57,144,.3); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; padding: 14px 22px;
  border-radius: 50px; font-weight: 700; font-size: .9rem;
  transition: var(--tr); box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { background: #1dbd5c; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.45); }

/* ── HEADER ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(43,57,144,.1); transition: var(--tr);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 74px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 56px; width: auto; border-radius: 8px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text strong { font-size: 1.25rem; font-weight: 900; color: var(--blue); line-height: 1; }
.logo-text strong span { color: var(--orange); }
.logo-text small { font-size: .65rem; font-weight: 500; color: var(--text-light); letter-spacing: .05em; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px; font-size: .88rem; font-weight: 500;
  color: var(--text); border-radius: 8px; transition: var(--tr);
}
.nav a:hover, .nav a.active { color: var(--blue); background: var(--gray-light); }
.nav a.active { font-weight: 700; }

.header-phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; padding: 10px 18px;
  border-radius: 50px; font-weight: 700; font-size: .9rem; transition: var(--tr);
}
.header-phone:hover { background: var(--blue-dark); }
.header-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border-radius: 8px; background: var(--gray-light);
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--tr); }

.mobile-nav {
  display: none; position: fixed; top: 74px; left: 0; right: 0; z-index: 999;
  background: #fff; padding: 20px; box-shadow: 0 8px 30px rgba(43,57,144,.15);
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 16px; font-size: .92rem; font-weight: 500; color: var(--text); border-radius: 10px; transition: var(--tr); }
.mobile-nav a:hover { background: var(--gray-light); color: var(--blue); }
.mobile-cta { margin-top: 12px; display: flex; gap: 10px; }
.mobile-cta a { flex: 1; text-align: center; padding: 12px; border-radius: 10px; font-weight: 700; font-size: .88rem; }
.m-phone { background: var(--blue); color: #fff !important; }
.m-wa    { background: #25D366; color: #fff !important; }

/* ── PAGE BANNER (pages intérieures) ── */
.page-banner {
  position: relative; padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #1f4b8f 100%);
  overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.page-banner::after {
  content: ''; position: absolute; bottom: -100px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(232,81,26,.1); pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner .label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--orange); background: rgba(232,81,26,.2);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.page-banner h1 {
  font-size: clamp(2rem,5vw,3.2rem); font-weight: 900;
  color: #fff; line-height: 1.15; margin-bottom: 16px;
}
.page-banner h1 span { color: var(--orange); }
.page-banner p { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 580px; line-height: 1.7; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-size: .8rem; color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--orange); font-weight: 600; }

/* ── TRUST BAR ── */
#trust { background: var(--blue); padding: 28px 0; }
.trust-grid {
  display: flex; align-items: center;
  justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 500; }
.trust-item .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.service-card {
  background: #fff; border-radius: 16px; padding: 36px 28px;
  box-shadow: var(--shadow); transition: var(--tr);
  position: relative; overflow: hidden; border: 2px solid transparent;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: var(--tr);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(43,57,144,.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 10px; }
.service-card p  { font-size: .88rem; color: var(--text-light); line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: .85rem; font-weight: 600; color: var(--orange); }
.service-link:hover { gap: 10px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; height: 520px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 75%; height: 85%; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-hover); }
.about-img-sec  { position: absolute; bottom: 0; right: 0; width: 55%; height: 50%; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-hover); border: 4px solid #fff; }
.about-badge {
  position: absolute; top: 60%; left: 55%;
  background: var(--orange); color: #fff; border-radius: 14px;
  padding: 14px 18px; text-align: center;
  box-shadow: 0 8px 32px rgba(232,81,26,.4); z-index: 2;
}
.about-badge .num { font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge .lbl { font-size: .7rem; font-weight: 600; opacity: .9; }
.about-text .label {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--orange); background: rgba(232,81,26,.1);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.about-text h2 { font-size: clamp(1.7rem,3.5vw,2.5rem); font-weight: 800; color: var(--blue-dark); line-height: 1.25; margin-bottom: 20px; }
.about-text h2 span { color: var(--orange); }
.about-text p  { font-size: .97rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.about-perks   { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 36px; }
.perk { display: flex; align-items: flex-start; gap: 12px; }
.perk-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.perk-icon svg { width: 14px; height: 14px; fill: #fff; }
.perk-text strong { display: block; font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.perk-text span   { font-size: .82rem; color: var(--text-light); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 16px; }
.gallery-item { position: relative; border-radius: 14px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; background: var(--gray); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,34,90,.8) 0%, transparent 60%);
  opacity: 0; transition: var(--tr); display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: .85rem; font-weight: 600; }
.gallery-zoom {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: flex; align-items: center;
  justify-content: center; opacity: 0; transition: var(--tr); font-size: 1rem;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.92); align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 12px; object-fit: contain; }
.lb-close { position: absolute; top: 20px; right: 24px; font-size: 2rem; color: #fff; cursor: pointer; line-height: 1; transition: var(--tr); }
.lb-close:hover { color: var(--orange); transform: rotate(90deg); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.3);
  color: #fff; font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--tr);
}
.lb-prev:hover, .lb-next:hover { background: var(--orange); border-color: var(--orange); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ── ZONES ── */
.cities-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.city-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  background: var(--gray-light); border: 1.5px solid var(--gray);
  font-size: .8rem; font-weight: 600; color: var(--blue); transition: var(--tr);
}
.city-tag:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.city-tag.main { background: var(--blue); color: #fff; border-color: var(--blue); }
.zones-highlight {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: 20px; padding: 40px; color: #fff;
}
.zones-highlight h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 24px; }
.zone-feat { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.zone-feat:last-child { border-bottom: none; }
.zone-feat .icon { font-size: 1.5rem; flex-shrink: 0; }
.zone-feat strong { display: block; font-size: .92rem; font-weight: 700; }
.zone-feat span { font-size: .8rem; opacity: .75; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 24px; }
.review-card {
  background: #fff; border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow); transition: var(--tr);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.review-stars  { color: #fbbf24; font-size: 1.1rem; letter-spacing: .05em; margin-bottom: 12px; }
.review-text   { font-size: .92rem; color: var(--text-light); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.review-author strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text); }
.review-author span   { font-size: .78rem; color: var(--text-light); }
.google-badge { margin-left: auto; display: flex; align-items: center; gap: 4px; font-size: .72rem; color: var(--text-light); font-weight: 600; }
.google-badge svg { width: 16px; height: 16px; }

/* ── CONTACT SECTION ── */
.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.channel {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; transition: var(--tr);
}
.channel:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.channel .ch-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.channel .ch-icon.blue   { background: rgba(255,255,255,.15); }
.channel .ch-icon.green  { background: rgba(37,211,102,.2); }
.channel .ch-icon.orange { background: rgba(232,81,26,.2); }
.channel strong { display: block; font-size: .92rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.channel span   { font-size: .8rem; color: rgba(255,255,255,.65); }
.channel a      { color: #fff; font-weight: 700; font-size: .92rem; }
.channel a:hover { color: var(--orange); }

/* ── FORM ── */
.contact-form-wrap {
  background: #fff; border-radius: 20px; padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.contact-form-wrap h3 { font-size: 1.4rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: .85rem; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border-radius: 10px; border: 1.5px solid var(--gray);
  font-family: 'Poppins',sans-serif; font-size: .88rem; color: var(--text);
  background: var(--gray-light); transition: var(--tr); resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(43,57,144,.1);
}
.form-submit {
  width: 100%; padding: 15px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff; font-size: 1rem; font-weight: 700; border: none;
  cursor: pointer; transition: var(--tr); font-family: 'Poppins',sans-serif;
}
.form-submit:hover { background: linear-gradient(135deg, var(--orange), #c94315); transform: translateY(-2px); }
.form-note { text-align: center; font-size: .75rem; color: var(--text-light); margin-top: 12px; }

/* ── FOOTER ── */
#footer { background: #0e1233; color: rgba(255,255,255,.75); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo img { height: 52px; margin-bottom: 16px; border-radius: 8px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.07); display: flex; align-items: center;
  justify-content: center; font-size: .95rem; transition: var(--tr); color: #fff;
}
.footer-social a:hover { background: var(--orange); }
.footer-col h4 {
  font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 18px;
  position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--orange); border-radius: 2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .83rem; color: rgba(255,255,255,.65); transition: var(--tr);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .78rem; }
.footer-bottom a { color: var(--orange); }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom nav a { font-size: .78rem; color: rgba(255,255,255,.5); transition: var(--tr); }
.footer-bottom nav a:hover { color: var(--orange); }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 0; overflow: hidden;
  border-radius: 50px; box-shadow: 0 6px 30px rgba(37,211,102,.5);
  cursor: pointer; transition: var(--tr);
}
.wa-float:hover .wa-text { max-width: 180px; padding: 0 18px 0 8px; }
.wa-icon {
  width: 58px; height: 58px; border-radius: 50px;
  background: #25D366; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.wa-icon svg { width: 28px; height: 28px; fill: #fff; }
.wa-text {
  max-width: 0; overflow: hidden; background: #25D366; color: #fff;
  font-weight: 700; font-size: .88rem; white-space: nowrap;
  transition: max-width .4s cubic-bezier(.4,0,.2,1), padding .4s;
  line-height: 58px; height: 58px; font-family: 'Poppins',sans-serif;
}
.wa-pulse {
  position: absolute; top: 0; right: 0;
  width: 14px; height: 14px; background: #ff4d4d;
  border-radius: 50%; border: 2px solid #fff; animation: wa-pulse 1.8s infinite;
}
@keyframes wa-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); } }

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue); color: #fff; display: none; align-items: center;
  justify-content: center; cursor: pointer; box-shadow: var(--shadow);
  font-size: 1.1rem; transition: var(--tr); border: none;
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--orange); transform: translateY(-3px); }

/* ── HERO (page d'accueil) ── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/realisations/PHOTO-2026-03-03-17-47-37.jpg') center/cover no-repeat; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,34,90,.88) 0%, rgba(43,57,144,.70) 50%, rgba(232,81,26,.35) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 120px 0 80px; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px); color: #fff; padding: 8px 18px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero-content h1 { font-size: clamp(2.2rem,6vw,3.8rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero-content h1 span { color: var(--orange); }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 36px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stars { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); font-size: .88rem; }
.stars { color: #fbbf24; font-size: 1rem; letter-spacing: .05em; }
.hero-stat-card {
  background: rgba(255,255,255,.12); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius);
  padding: 16px 20px; text-align: center; color: #fff; min-width: 130px;
}
.hero-stat-card .num { font-size: 1.8rem; font-weight: 900; line-height: 1; color: var(--orange); }
.hero-stat-card .lbl { font-size: .72rem; font-weight: 500; opacity: .85; margin-top: 4px; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: .95rem;
  color: var(--blue-dark); gap: 16px; transition: var(--tr);
}
.faq-question:hover { color: var(--orange); }
.faq-icon { font-size: 1.2rem; transition: var(--tr); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: .9rem; color: var(--text-light); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 64px 0; text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-band p  { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-band .cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-stats, .hero-stats-col { display: none !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  /* Header : cacher nav + bouton téléphone, afficher burger */
  .nav, .header-cta, .header-phone { display: none !important; }
  .burger { display: flex; }

  /* Hero : pleine largeur, pas de stats */
  #hero > .container > div { grid-template-columns: 1fr !important; }
  .hero-stats-col { display: none !important; }
  .hero-content { max-width: 100%; padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-content h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 280px; margin-bottom: 20px; }

  /* Formulaire */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom nav { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Trust bar */
  .trust-divider { display: none; }
  .trust-grid { gap: 16px; justify-content: flex-start; }
  .trust-item { font-size: .82rem; }

  /* Divers */
  .section-title { margin-bottom: 36px; }
  .cta-band .cta-btns { flex-direction: column; align-items: center; }
  .cta-band .btn, .cta-band .btn-whatsapp { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item { aspect-ratio: 1; }
  .contact-form-wrap { padding: 24px 18px; }
  .page-banner { padding: 110px 0 50px; }
  .page-banner h1 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .hero-content h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .zones-highlight { padding: 28px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
}
