/* ═══════════════════════════════════════════════════════════════
   local-seo.css — Pages SEO locales N&E Élagage
   Bouches-du-Rhône · elagage-aix-marseille.fr
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ─── CSS VARIABLES ─────────────────────────────────────────────── */
:root {
  --green:       #2E7D32;
  --green-dark:  #1B5E20;
  --green-light: #4CAF50;
  --green-pale:  #E8F5E9;
  --orange:      #FF6D00;
  --orange-dark: #E65100;
  --gray-100:    #F5F5F5;
  --gray-200:    #EEEEEE;
  --gray-600:    #757575;
  --gray-900:    #1a1a1a;
  --white:       #ffffff;
  --container:   1140px;
  --header-h:    72px;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 2px 12px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
  --transition:  0.3s ease;
}

/* ─── SKIP LINK ─────────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  background: var(--green);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

/* ─── CONTAINER ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ─── HEADER ────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  z-index: 1000;
  backdrop-filter: blur(6px);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-logo img { height: 48px; width: auto; }
.header-logo { flex-shrink: 0; }

/* Breadcrumb dans le contenu principal (sous le header sticky) */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: var(--gray-600);
  flex-wrap: wrap;
  background: var(--gray-100);
  padding: .6rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
}
.breadcrumb li { display: flex; align-items: center; gap: .35rem; }
.breadcrumb li:not(:last-child)::after {
  content: "›";
  color: var(--gray-600);
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li:last-child { color: var(--gray-900); font-weight: 600; }

/* CTA téléphone header */
.cta-header {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--green);
  color: #fff !important;
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.cta-header:hover { background: var(--green-dark); }

/* ─── BODY OFFSET ───────────────────────────────────────────────── */
.page-body { padding-top: var(--header-h); }

/* ─── HERO LOCAL ────────────────────────────────────────────────── */
.hero-local {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  overflow: hidden;
  position: relative;
}
.hero-local::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/img/pattern-leaves.svg') repeat;
  opacity: .04;
  pointer-events: none;
}
.hero-local .container { position: relative; }

#hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#hero-title .subtitle {
  display: block;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 600;
  opacity: .88;
  margin-top: .4rem;
}
.hero-intro {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 680px;
  opacity: .94;
  margin-bottom: 1.75rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.hero-img-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 400px;
}
.hero-img-wrap img { width: 100%; height: 400px; object-fit: cover; }

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 999px;
  padding: .35rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: #fff;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(255,109,0,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,109,0,.45);
}
.btn-primary.btn-xl { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: #fff;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--green);
  border: 2px solid var(--green);
  padding: .65rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--green); color: #fff; }

/* ─── SECTIONS ──────────────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section--alt { background: var(--gray-100); }
.section--green { background: var(--green-pale); }
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.section-intro {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ─── SERVICES GRID ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .75rem;
}
.service-card p { font-size: .95rem; color: #444; line-height: 1.65; }
.service-price {
  display: inline-block;
  margin-top: 1rem;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: .3rem .75rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
}

/* ─── WHY US / E-E-A-T ──────────────────────────────────────────── */
.eeat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.eeat-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.eeat-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: .85rem;
}
.eeat-block p { color: #444; line-height: 1.7; font-size: .97rem; }
.certifications-list { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.certifications-list li { font-size: .92rem; color: #333; padding-left: .25rem; }
.reviews-snippet {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: .75rem;
}
.reviews-snippet p { font-size: 1rem; color: var(--green-dark); }
.eeat-block address {
  font-style: normal;
  font-size: .92rem;
  line-height: 1.8;
  color: #444;
  background: var(--gray-100);
  padding: .85rem 1rem;
  border-radius: var(--radius);
  margin-top: .75rem;
}

/* ─── LOCAL CONTENT ─────────────────────────────────────────────── */
.local-content p { font-size: .97rem; line-height: 1.75; color: #333; margin-bottom: 1.25rem; }
.local-content h3 { font-size: 1.08rem; font-weight: 700; color: var(--green-dark); margin: 1.75rem 0 .75rem; }
.local-content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .4rem .75rem;
  margin-top: .5rem;
}
.local-content ul li {
  font-size: .93rem;
  color: #444;
  padding-left: 1.2rem;
  position: relative;
}
.local-content ul li::before {
  content: "🌿";
  position: absolute;
  left: 0;
  font-size: .75rem;
  top: .1rem;
}
.local-link-ext {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--green);
  font-size: .9rem;
  text-decoration: underline;
  margin-top: .75rem;
}
.local-link-ext:hover { color: var(--green-dark); }

/* ─── TESTIMONIALS ──────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.review-rating { color: #F9A825; font-size: 1.1rem; letter-spacing: .05rem; }
.review-text { font-size: .95rem; color: #333; line-height: 1.65; flex: 1; }
.review-author {
  font-size: .85rem;
  color: var(--gray-600);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.review-author strong { color: #333; font-weight: 600; }
.cta-review { text-align: center; margin-top: .5rem; }

/* ─── HOW-TO STEPS ──────────────────────────────────────────────── */
.how-to-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.how-to-steps li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.how-to-steps li::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.how-to-steps h3 { font-size: 1.02rem; font-weight: 700; color: var(--green-dark); margin-bottom: .4rem; }
.how-to-steps p { font-size: .93rem; color: #444; line-height: 1.65; }

/* ─── FAQ ───────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.faq-item summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0;
  flex: 1;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 1.4rem 1.1rem;
  border-top: 1px solid var(--gray-200);
}
.faq-answer p { font-size: .95rem; color: #444; line-height: 1.7; padding-top: .85rem; }

/* ─── COVERAGE / CITY LINKS ─────────────────────────────────────── */
.city-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin: 1.5rem 0;
}
.city-links-grid a {
  background: var(--green-pale);
  color: var(--green-dark);
  padding: .55rem .85rem;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  text-align: center;
  transition: background var(--transition), color var(--transition);
  border: 1px solid rgba(46,125,50,.15);
}
.city-links-grid a:hover { background: var(--green); color: #fff; }

/* ─── CTA SECTION ───────────────────────────────────────────────── */
.cta-section { background: var(--green-dark); color: #fff; padding: 4rem 0; }
.cta-section .section-title { color: #fff; }
.cta-section .section-intro { color: rgba(255,255,255,.85); margin-bottom: 2rem; }

/* Contact form */
.contact-form {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.9); }
.form-group input,
.form-group textarea {
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: .97rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.5); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.15);
}
.form-group input.error,
.form-group textarea.error { border-color: #FF5252; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tel-cta {
  margin-top: 1.75rem;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}
.tel-link { color: #fff; font-size: 1.1rem; text-decoration: underline; }
.tel-link:hover { color: var(--orange); }

/* ─── FOOTER ────────────────────────────────────────────────────── */
.site-footer {
  background: #111;
  color: rgba(255,255,255,.8);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-about img { height: 44px; width: auto; margin-bottom: .85rem; filter: brightness(2); }
.footer-about p { font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.65); }
.footer-grid h4 {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .85rem;
}
.footer-contact address { font-style: normal; display: flex; flex-direction: column; gap: .4rem; }
.footer-contact a { font-size: .9rem; color: rgba(255,255,255,.75); transition: color var(--transition); }
.footer-contact a:hover { color: #fff; }
.footer-nav nav { display: flex; flex-direction: column; gap: .4rem; }
.footer-nav a { font-size: .88rem; color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-nav a:hover { color: var(--green-light); }
.footer-legal p, .footer-legal a {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.footer-legal a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ─── REVEAL ANIMATION ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── HUB PAGE ──────────────────────────────────────────────────── */
.hub-hero { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff; padding: 5rem 0 3.5rem; }
.hub-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.hub-hero p { font-size: 1.1rem; opacity: .9; max-width: 640px; line-height: 1.7; }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.city-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.city-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.city-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); }
.city-card .city-meta { font-size: .8rem; color: var(--gray-600); }
.city-card a { margin-top: .6rem; color: var(--green); font-size: .88rem; font-weight: 600; }
.city-card a:hover { text-decoration: underline; }

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .eeat-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .city-links-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .breadcrumb { font-size: .72rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .section { padding: 2.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .city-links-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .local-content ul { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  #hero-title { font-size: 1.55rem; }
  .city-links-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .trust-badges { gap: .4rem; }
  .badge { font-size: .72rem; padding: .28rem .65rem; }
}

/* ─── POPUP & COOKIE BANNER ─────────────────────────────────────
   Force display:none sur [hidden] — certains environnements serveur
   peuvent écraser le comportement natif de l'attribut hidden.
   ─────────────────────────────────────────────────────────────── */
[hidden] { display: none !important; }

.popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup[hidden] { display: none !important; }

.popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.popup__content {
  position: relative;
  background: #fff;
  border-radius: var(--radius, 8px);
  padding: 2rem 2rem 1.5rem;
  max-width: 420px;
  width: 92%;
  z-index: 1;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.popup__content h3 {
  font-size: 1.25rem;
  color: var(--green-dark, #1B5E20);
  margin-bottom: .75rem;
}
.popup__content p { margin-bottom: 1rem; color: var(--gray-600, #757575); }
.popup__content input,
.popup__content textarea {
  width: 100%;
  border: 1px solid var(--gray-200, #eee);
  border-radius: var(--radius, 8px);
  padding: .7rem 1rem;
  margin-bottom: .75rem;
  font-size: 1rem;
  font-family: inherit;
}
.popup__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-600, #757575);
  padding: .25rem .5rem;
}
.popup__close:hover { color: var(--gray-900, #1a1a1a); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a3320;
  color: #fff;
  padding: 1rem 1.5rem;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .9rem;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { margin: 0; }
.cookie-banner__inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; max-width: var(--container); margin: 0 auto; }
.cookie-banner__text p { margin: 0; line-height: 1.4; }
.cookie-banner__actions { display: flex; gap: .75rem; flex-shrink: 0; }

/* ─── HEADER POUR PAGES INTÉRIEURES ────────────────────────────
   Le header de style.css est transparent par défaut (pour la home page
   avec hero plein écran). Sur les pages villes (body.page-body),
   on le rend toujours blanc, y compris en état .scrolled.
   ─────────────────────────────────────────────────────────────── */
body.page-body .header,
body.page-body .header.scrolled {
  background: rgba(255, 255, 255, .97) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .10);
}
body.page-body .header .header__nav a {
  color: var(--gray-900, #1a1a1a);
}
body.page-body .header .header__nav a:hover {
  color: var(--green, #2E7D32);
  background: var(--green-pale, #E8F5E9);
}
body.page-body .header .header__phone {
  color: var(--gray-900, #1a1a1a);
}

/* ─── BOUTON OUTLINE (pages locales) ───────────────────────────── */
.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--green, #2E7D32);
  border: 2px solid var(--green, #2E7D32);
  padding: .65rem 1.4rem;
  border-radius: var(--radius, 8px);
  font-weight: 700;
  font-size: .95rem;
  background: transparent;
  transition: background .3s ease, color .3s ease;
  cursor: pointer;
}
.btn--outline:hover { background: var(--green, #2E7D32); color: #fff; }

/* ─── BURGER ICON sur pages intérieures (header blanc) ─────────── */
body.page-body .header .header__burger span { background: #1a1a1a; }

/* ─── SECTION-INNER (container générique) ──────────────────────── */
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ─── HERO SECTION (template 2 colonnes) ───────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  padding: 3rem 0 2.5rem;
}
.hero-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-section h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.hero-section .hero-intro { font-size: 1rem; line-height: 1.7; opacity: .92; margin-bottom: 1.5rem; }
.hero-section .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image img { width: 100%; height: 340px; object-fit: cover; display: block; }

/* ─── SECTIONS GÉNÉRIQUES (template Septèmes) ──────────────────── */
.services-section,
.local-content-section,
.faq-section { padding: 4rem 0; background: #fff; }
.eeat-section,
.testimonials-section,
.coverage-section { padding: 4rem 0; background: var(--gray-100); }
.process-section { padding: 4rem 0; background: var(--green-pale); }
.local-content-section h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin: 1.75rem 0 .75rem; }
.local-content-section p { font-size: .97rem; line-height: 1.75; color: #333; margin-bottom: 1rem; }
.local-content-section a { color: var(--green); text-decoration: underline; }
.coverage-section p { font-size: .95rem; color: #444; margin-bottom: 1.5rem; }

/* ─── SERVICE ICON / EEAT ICON (emoji) ─────────────────────────── */
.service-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.eeat-icon { font-size: 2.5rem; margin-bottom: .75rem; display: block; }

/* ─── PROCESS STEPS ─────────────────────────────────────────────── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.step-content h3 { font-size: 1.02rem; font-weight: 700; color: var(--green-dark); margin-bottom: .4rem; }
.step-content p { font-size: .93rem; color: #444; line-height: 1.65; }
.step-content a { color: var(--green); }

/* ─── REVIEW STARS & BLOCKQUOTE ────────────────────────────────── */
.review-stars { color: #F9A825; font-size: 1.2rem; }
.review-card blockquote { margin: 0; }
.review-card blockquote p { font-size: .95rem; color: #333; line-height: 1.65; font-style: italic; }
.review-card cite { font-size: .85rem; color: var(--gray-600); font-style: normal; margin-top: .5rem; display: block; }

/* ─── CONTACT SECTION (fond clair) ─────────────────────────────── */
.contact-section { padding: 4rem 0; background: var(--gray-100); }
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}
.contact-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 1rem; }
.contact-info p { font-size: .95rem; color: #333; margin-bottom: .5rem; line-height: 1.6; }
.contact-info a { color: var(--green); }
/* Surcharge form pour fond clair */
.contact-section .contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 100%;
}
.contact-section .form-group label { color: #333; }
.contact-section .form-group input,
.contact-section .form-group textarea {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: #1a1a1a;
}
.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder { color: var(--gray-600); }
.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus { border-color: var(--green); background: #fff; }
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .9rem 1.75rem;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
}
.btn-submit:hover { background: var(--orange-dark); }
.form-legal { font-size: .78rem; color: var(--gray-600); margin-top: .5rem; text-align: center; }

/* ─── RESPONSIVE TEMPLATE SEPTÈMES ─────────────────────────────── */
@media (max-width: 900px) {
  .hero-section .section-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .process-step { flex-direction: column; gap: .75rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}
