/* ============================================================
   Construction Dominic Gagné Inc. — Feuille de styles
   ============================================================ */

/* ─── Variables ─── */
:root {
  --vert:      #6B705C;
  --vert-dark: #565a4a;
  --vert-light:#8a9079;
  --noir:      #0a0a0a;
  --blanc:     #ffffff;
  --gris-clair:#f5f5f3;
  --gris-mid:  #e8e8e4;
  --gris-texte:#555550;
  --font:      'Manrope', 'Inter', 'Archivo', Arial, sans-serif;
  --radius:    4px;
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --transition:all .28s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); color: var(--noir); background: var(--blanc); line-height: 1.65; overflow-x: hidden; max-width: 100%; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
p  { font-size: 1.05rem; color: var(--gris-texte); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: .75rem;
}
.section-title {
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gris-texte);
  max-width: 640px;
  margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--vert);
  color: var(--blanc);
  border-color: var(--vert);
}
.btn-primary:hover { background: var(--vert-dark); border-color: var(--vert-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-white {
  background: transparent;
  color: var(--blanc);
  border-color: var(--blanc);
}
.btn-outline-white:hover { background: var(--blanc); color: var(--noir); transform: translateY(-2px); }
.btn-dark {
  background: var(--noir);
  color: var(--blanc);
  border-color: var(--noir);
}
.btn-dark:hover { background: #222; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-dark {
  background: transparent;
  color: var(--noir);
  border-color: var(--noir);
}
.btn-outline-dark:hover { background: var(--noir); color: var(--blanc); }

/* ─── Layout helpers ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.section { padding: 6rem 0; }
.section-dark { background: var(--noir); color: var(--blanc); }
.section-grey { background: var(--gris-clair); }
.section-vert { background: var(--vert); color: var(--blanc); }
.text-center { text-align: center; }
.text-white { color: var(--blanc) !important; }

/* ─── Scroll animations ─── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   1. HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gris-mid);
  transition: box-shadow .3s ease;
}
#header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.header-logo img { height: 72px; width: 72px; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--noir);
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 2px;
  background: var(--vert);
  transition: right .25s ease;
}
.nav-links a:hover { color: var(--vert); }
.nav-links a:hover::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-tel {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .85rem;
  color: var(--blanc);
  background: var(--vert);
  padding: .45rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.header-tel:hover { background: var(--vert-dark); transform: translateY(-1px); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--noir);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   2. HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/projets/cuisine-hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.28) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 5rem;
  max-width: 780px;
}
.hero-rbq {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
  padding: .35rem .9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  color: var(--blanc);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-content h1 span { color: var(--vert-light); }
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   3. À PROPOS
   ============================================================ */
#apropos { background: var(--blanc); }
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.apropos-grid > * { min-width: 0; }
.apropos-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.apropos-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform .6s ease;
}
.apropos-image:hover img { transform: scale(1.04); }
.apropos-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--vert);
  color: var(--blanc);
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.apropos-badge .count { font-size: 2.8rem; font-weight: 800; line-height: 1; display: block; }
.apropos-badge .label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }

.apropos-text { padding-left: 1rem; }
.apropos-text h2 { margin-bottom: .75rem; }
.apropos-text .intro { font-size: 1.1rem; color: var(--gris-texte); margin-bottom: 2rem; line-height: 1.75; }
.apropos-text .intro strong { color: var(--noir); font-weight: 700; }

.apropos-checklist { margin-bottom: 2.5rem; }
.apropos-checklist li {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--gris-mid);
  font-weight: 600;
  font-size: .97rem;
}
.apropos-checklist li:last-child { border-bottom: none; }
.check-icon {
  width: 24px;
  height: 24px;
  background: var(--vert);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 2.5; }

/* ============================================================
   4. SERVICES — Cartes
   ============================================================ */
#services { background: var(--gris-clair); }
.services-header { text-align: center; margin-bottom: 4rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--blanc);
  border-radius: 6px;
  padding: 2.2rem 2rem;
  border: 1px solid var(--gris-mid);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--vert);
  transition: width .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--vert); }
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gris-clair);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background .3s;
}
.service-card:hover .service-icon { background: var(--vert); }
.service-icon svg { width: 28px; height: 28px; stroke: var(--vert); fill: none; stroke-width: 1.7; transition: stroke .3s; }
.service-card:hover .service-icon svg { stroke: var(--blanc); }

.service-card h3 { margin-bottom: .6rem; font-size: 1.15rem; }
.service-card p { font-size: .93rem; color: var(--gris-texte); }

/* ============================================================
   5. BANDES ALTERNÉES — Services phares
   ============================================================ */
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
}
.feature-band.reverse { direction: rtl; }
.feature-band.reverse > * { direction: ltr; }

.feature-image {
  position: relative;
  overflow: hidden;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
  transition: transform .6s ease;
}
.feature-band:hover .feature-image img { transform: scale(1.04); }

.feature-content {
  background: var(--blanc);
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-band:nth-child(even) .feature-content { background: var(--gris-clair); }

.feature-content h2 { margin-bottom: 1rem; }
.feature-content .intro-text { font-size: 1.05rem; color: var(--gris-texte); margin-bottom: 2rem; line-height: 1.75; }

.feature-bullets { margin-bottom: 2rem; }
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .9rem;
  font-size: .97rem;
}
.bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vert);
  flex-shrink: 0;
  margin-top: .5rem;
}

/* ============================================================
   6. GALERIE / RÉALISATIONS
   ============================================================ */
#realisations { background: var(--noir); color: var(--blanc); }
.realisations-header { text-align: center; margin-bottom: 3.5rem; }
.realisations-header .section-label { color: var(--vert-light); }
.realisations-header h2 { color: var(--blanc); }
.realisations-header .section-subtitle { color: rgba(255,255,255,.65); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107,112,92,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 36px; height: 36px; stroke: #fff; fill: none; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: #fff; font-size: 2.5rem;
  cursor: pointer; line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--vert); }

/* ============================================================
   7. ZONES DESSERVIES
   ============================================================ */
#zones { background: var(--blanc); }
.zones-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.zones-text h2 { margin-bottom: 1rem; }
.zones-text p { margin-bottom: 2rem; }

.zones-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.zones-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .75rem;
  background: var(--gris-clair);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  transition: background .2s;
}
.zones-list li:hover { background: var(--gris-mid); }
.zone-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vert); flex-shrink: 0; }

.zones-map {
  background: var(--gris-clair);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 360px;
  position: relative;
}
.zones-map iframe { width: 100%; height: 100%; min-height: 360px; border: none; }
.zones-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 360px;
  gap: 1rem;
  background: var(--gris-clair);
  color: var(--gris-texte);
  text-align: center;
  padding: 2rem;
}
.map-icon { width: 56px; height: 56px; background: var(--vert); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.map-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; }

/* ============================================================
   8. CERTIFICATIONS
   ============================================================ */
#certifications { background: var(--gris-clair); }
.certif-header { text-align: center; margin-bottom: 3.5rem; }
.certif-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.certif-card {
  background: var(--blanc);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--gris-mid);
  transition: var(--transition);
}
.certif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.certif-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.certif-card h3 { font-size: 1rem; margin-bottom: .4rem; color: var(--vert); }
.certif-card p { font-size: .88rem; color: var(--gris-texte); }

/* ============================================================
   9. FAQ
   ============================================================ */
#faq { background: var(--blanc); }
.faq-header { text-align: center; margin-bottom: 3.5rem; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gris-mid);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  font-family: var(--font);
  font-size: 1.03rem;
  font-weight: 700;
  color: var(--noir);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color .25s;
}
.faq-question:hover { color: var(--vert); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gris-clair);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, transform .3s;
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--noir); fill: none; stroke-width: 2.5; }
.faq-item.active .faq-icon { background: var(--vert); transform: rotate(45deg); }
.faq-item.active .faq-icon svg { stroke: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 0 1.5rem; color: var(--gris-texte); line-height: 1.75; }

/* ============================================================
   10. CTA SOUMISSION
   ============================================================ */
#soumission { background: var(--vert); }
.soumission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.soumission-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: .75rem;
}
.soumission-left p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2.5rem; }
.soumission-tel {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.15);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--blanc);
  transition: background .25s;
}
.soumission-tel:hover { background: rgba(255,255,255,.25); }
.soumission-tel svg { width: 28px; height: 28px; flex-shrink: 0; }
.soumission-sub { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: 1rem; }

/* Formulaire */
.form-soumission { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .97rem;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  color: var(--blanc);
  padding: .8rem 1rem;
  outline: none;
  transition: border-color .25s, background .25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blanc); background: rgba(255,255,255,.18); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { color: var(--blanc); }
.form-group select option { background: var(--vert-dark); }
.btn-submit {
  background: var(--blanc);
  color: var(--vert);
  border: 2px solid var(--blanc);
  font-size: 1rem;
  font-weight: 800;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: .04em;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.btn-submit:hover { background: var(--noir); border-color: var(--noir); color: var(--blanc); transform: translateY(-2px); box-shadow: var(--shadow); }

.form-success {
  display: none;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--blanc);
}
.form-success h3 { margin-bottom: .5rem; }

/* ============================================================
   11. FOOTER
   ============================================================ */
#footer { background: var(--noir); color: rgba(255,255,255,.75); padding: 4.5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { height: 100px; width: 100px; object-fit: contain; margin-bottom: 1.2rem; }
.footer-brand p { font-size: .92rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-rbq {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.25);
  padding: .35rem .8rem;
  border-radius: 2px;
  color: rgba(255,255,255,.5);
}

.footer-col h4 {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--vert-light); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .85rem;
  font-size: .92rem;
}
.footer-contact svg { width: 18px; height: 18px; stroke: var(--vert-light); fill: none; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: var(--vert-light); }

/* ============================================================
   BOUTON FLOTTANT MOBILE
   ============================================================ */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: .85rem 1.5rem;
  background: var(--vert);
  color: var(--blanc);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  border: none;
  cursor: pointer;
  letter-spacing: .04em;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.float-cta svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
#temoignages { background: var(--gris-clair); }
.temoignages-header { text-align: center; margin-bottom: 3.5rem; }
.temoignages-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.temoignage-card {
  background: var(--blanc);
  border-radius: 6px;
  padding: 2.2rem;
  border: 1px solid var(--gris-mid);
  position: relative;
  transition: var(--transition);
}
.temoignage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.temoignage-stars { display: flex; gap: .25rem; margin-bottom: 1rem; }
.star { color: #f5b041; font-size: 1.1rem; }
.temoignage-text { font-size: .97rem; color: var(--gris-texte); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.temoignage-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--vert);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--blanc); font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .95rem; }
.author-loc  { font-size: .82rem; color: var(--gris-texte); }
.quote-icon {
  position: absolute;
  top: 1.5rem; right: 1.8rem;
  font-size: 4rem;
  color: var(--gris-mid);
  line-height: 1;
  font-family: Georgia, serif;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .apropos-grid { grid-template-columns: 1fr; gap: 3rem; }
  .apropos-badge { right: 1rem; }
  .apropos-image img { height: 400px; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-band.reverse { direction: ltr; }
  .feature-image img { min-height: 300px; height: 300px; }
  .feature-content { padding: 3rem 2rem; }
  .zones-inner { grid-template-columns: 1fr; }
  .soumission-inner { grid-template-columns: 1fr; gap: 3rem; }
  .temoignages-carousel { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .btn { max-width: 100%; white-space: normal; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: fixed; top: 72px; left: 0; right: 0; background: var(--blanc); border-top: 1px solid var(--gris-mid); padding: 1rem 0; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .9rem 1.5rem; font-size: .95rem; border-bottom: 1px solid var(--gris-mid); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }
  .menu-toggle { display: flex; }
  .header-tel { display: none; }
  .float-cta { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .zones-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  body { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; white-space: normal; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 160px; }
}

/* ─── Utilitaires scroll margin pour header sticky ─── */
#apropos, #services, #realisations, #zones, #certifications, #faq, #soumission, #temoignages {
  scroll-margin-top: 82px;
}
