/* ============================================================
   LOCO LABS — main.css  |  Swiss Purity Design
   ============================================================ */

/* ── Reset & Variables ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }

:root {
  --green:      #1C4A35;
  --green-mid:  #2D6E50;
  --green-lt:   #4A9E74;
  --mint:       #E8F5EE;
  --white:      #FAFAF8;
  --offwhite:   #F2F0EB;
  --grey-lt:    #E8E6E0;
  --grey:       #999990;
  --dark:       #1A1A18;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Jost', sans-serif;
  --radius:     2px;
  --shadow:     0 4px 32px rgba(28,74,53,0.10);
  --shadow-lg:  0 16px 64px rgba(28,74,53,0.14);
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
ul  { list-style: none; }

/* ── Utilitaires ────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

.tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-mid);
  border: 1px solid var(--green-lt);
  padding: .3rem .75rem;
  border-radius: 99px;
  background: var(--mint);
}

.section-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green-lt);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--green);
}
.section-title em { font-style: italic; color: var(--green-mid); }

/* ── Boutons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border: none;
  cursor: pointer;
  transition: all .25s;
  border-radius: var(--radius);
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-mid); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

.btn-loading { display: none; }
.btn.loading .btn-text    { display: none; }
.btn.loading .btn-loading { display: inline; }

/* ── Animations ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   NAV — UN SEUL HEADER, AUCUN LAYOUT SHIFT
═══════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-lt);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 2px 24px rgba(28,74,53,0.08); }

/* Ligne 1 — Logo | Lang + CTA */
.nav-top {
  max-width: 1180px;
  margin: 0 auto;
  padding: .5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  border-bottom: 1px solid var(--grey-lt);
}
.nav-top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Ligne 2 — Liens */
.nav-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: .4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.5rem;
}

.nav-inner { display: contents; }

/* Logo SVG natif — zéro image, zéro problème de dimensionnement */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav-logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .08em;
  white-space: nowrap;
}
.nav-logo-tagline {
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 500;
  color: var(--green-lt);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

/* Sélecteur de langue */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.lang-switcher a,
.lang-switcher .lang-item {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  padding: .2rem .4rem;
  border-radius: 3px;
  transition: color .2s, background .2s;
}
.lang-switcher a:hover,
.lang-switcher .lang-item:hover { color: var(--green); }
.lang-switcher a.current-lang,
.lang-switcher .lang-active,
.lang-switcher li.current-language a {
  color: var(--green) !important;
  font-weight: 700 !important;
  background: var(--mint);
  border-radius: 3px;
}
.lang-switcher .lang-sep { color: var(--grey-lt); font-size: .7rem; }
/* Polylang list reset */
.lang-switcher ul { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.lang-switcher ul li { margin: 0; }

/* Liens nav */
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--grey);
}
.nav-links a:hover { color: var(--green); }

/* CTA téléphone */
.nav-cta { white-space: nowrap; padding: .55rem 1.2rem; font-size: .75rem; flex-shrink: 0; }

/* Burger mobile */
.nav-burger {
  display: none; background: none; border: none;
  cursor: pointer; padding: .4rem; flex-direction: column; gap: 5px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--green); transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
  padding-top: 130px; /* nav 2 lignes : ~90px logo + ~40px liens */
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--mint) 0%, var(--white) 55%);
  z-index: 0;
}
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 120%;
  background: var(--green);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-left { position: relative; z-index: 2; padding: 5rem 3rem 5rem 2rem; }
.hero-tag  { margin-bottom: 1.5rem; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--green-mid); display: block; }

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: #555550;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-wa {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: #25D366;
  border-radius: 50%;
  color: var(--white);
  transition: transform .25s, background .25s;
}
.hero-wa:hover { background: #1da851; transform: scale(1.08); }
.wa-dot { display: none; }

.hero-stats {
  display: flex; gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-lt);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem; font-weight: 300; color: var(--green); line-height: 1;
}
.hero-stat-label { font-size: .72rem; color: var(--grey); margin-top: .2rem; }

.hero-right {
  position: relative; z-index: 2;
  padding: 5rem 2rem;
  display: flex; flex-direction: column; align-items: flex-end; gap: 1.2rem;
}
.hero-card {
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1.4rem 1.8rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow);
  width: 280px;
  transition: transform .3s;
}
.hero-card:hover { transform: translateX(-4px); }
.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--mint);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.hero-card-title { font-size: .82rem; font-weight: 600; color: var(--green); margin-bottom: .15rem; }
.hero-card-sub   { font-size: .72rem; color: var(--grey); line-height: 1.4; }

/* ── Trust Bar ──────────────────────────────────────────── */
#trust { background: var(--green); padding: 1.2rem 0; }
.trust-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .75rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(250,250,248,.75);
}
.trust-sep { width: 1px; height: 18px; background: rgba(255,255,255,.2); }

/* ── Services ───────────────────────────────────────────── */
#services { padding: 7rem 0; background: var(--white); }
.services-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem; gap: 2rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--grey-lt);
  border: 1px solid var(--grey-lt);
}
.service-card {
  background: var(--white);
  padding: 2rem 1.6rem;
  display: flex; flex-direction: column; gap: .8rem;
  transition: background .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--green-lt);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { background: var(--mint); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 1.6rem; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--mint); border-radius: 10px;
  transition: background .25s;
}
.service-card:hover .service-icon { background: rgba(255,255,255,.8); }
.service-num {
  position: absolute; top: 1rem; right: 1.2rem;
  font-family: var(--font-head); font-size: 3rem; font-weight: 300;
  color: rgba(28,74,53,.07); line-height: 1;
}
.service-name {
  font-family: var(--font-head); font-size: 1.15rem;
  font-weight: 400; color: var(--green); line-height: 1.2;
}
.service-desc { font-size: .8rem; line-height: 1.6; color: var(--grey); font-weight: 300; }

/* ── Pourquoi nous ──────────────────────────────────────── */
#why {
  padding: 7rem 0; background: var(--offwhite);
  position: relative; overflow: hidden;
}
#why::before {
  content: 'Qualité';
  position: absolute; top: 50%; right: -2rem;
  transform: translateY(-50%);
  font-family: var(--font-head); font-size: 12rem; font-weight: 300;
  color: rgba(28,74,53,.04); pointer-events: none; white-space: nowrap; line-height: 1;
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-left .section-title { margin-bottom: 1.5rem; }
.why-left > p { font-size: .95rem; line-height: 1.8; color: #555550; font-weight: 300; margin-bottom: 2rem; }
.why-features { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2.5rem; }
.why-feat { display: flex; align-items: flex-start; gap: 1rem; }
.why-feat-icon {
  width: 36px; height: 36px; background: var(--green); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .1rem;
}
.why-feat-text h4 { font-size: .85rem; font-weight: 600; color: var(--green); margin-bottom: .25rem; }
.why-feat-text p  { font-size: .8rem; line-height: 1.5; color: var(--grey); }
.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why-card { background: var(--white); padding: 2rem 1.5rem; border-radius: 4px; box-shadow: var(--shadow); }
.why-card:first-child { grid-column: span 2; background: var(--green); color: var(--white); }
.why-card-num {
  font-family: var(--font-head); font-size: 3.5rem;
  font-weight: 300; line-height: 1; margin-bottom: .3rem;
}
.why-card:first-child .why-card-num { color: var(--mint); }
.why-card-label { font-size: .78rem; color: var(--grey); }
.why-card:first-child .why-card-label { color: rgba(250,250,248,.65); }

/* ── Réalisations ───────────────────────────────────────── */
#realisations { padding: 7rem 0; background: var(--white); }
.real-header  { text-align: center; margin-bottom: 3.5rem; }
.real-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.real-item {
  position: relative; overflow: hidden; border-radius: 4px;
  aspect-ratio: 4/3; background: var(--offwhite);
}
.real-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.real-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.real-item:hover img { transform: scale(1.04); }
.real-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,74,53,.7) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.2rem;
  opacity: 0; transition: opacity .3s;
}
.real-item:hover .real-overlay { opacity: 1; }
.real-caption { font-size: .78rem; font-weight: 500; color: var(--white); letter-spacing: .06em; text-transform: uppercase; }

/* ── Avis Clients ───────────────────────────────────────── */
#avis { padding: 7rem 0; background: var(--green); position: relative; overflow: hidden; }
#avis::before {
  content: '"';
  position: absolute; top: -2rem; left: 3rem;
  font-family: var(--font-head); font-size: 20rem;
  color: rgba(255,255,255,.04); line-height: 1; pointer-events: none;
}
.avis-header { text-align: center; margin-bottom: 3.5rem; }
.avis-header .section-label { color: var(--green-lt); }
.avis-header .section-title { color: var(--white); }
.avis-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.avis-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px; padding: 1.8rem; transition: background .3s;
}
.avis-card:hover { background: rgba(255,255,255,.1); }
.avis-stars { display: flex; gap: 2px; margin-bottom: 1rem; color: #F5C842; font-size: .9rem; }
.avis-text {
  font-family: var(--font-head); font-size: 1rem;
  font-weight: 300; font-style: italic;
  color: rgba(250,250,248,.85); line-height: 1.65; margin-bottom: 1.2rem;
}
.avis-author { font-size: .75rem; font-weight: 600; color: var(--green-lt); letter-spacing: .08em; text-transform: uppercase; }
.avis-role   { font-size: .7rem; color: rgba(250,250,248,.4); margin-top: .2rem; }

/* ── Zones ──────────────────────────────────────────────── */
#zones { padding: 7rem 0; background: var(--offwhite); }

.zones-header { margin-bottom: 2.5rem; }
.zones-header .section-title { margin-bottom: 1rem; }
.zones-intro { font-size: .9rem; line-height: 1.8; color: #555550; font-weight: 300; }

/* Tags inline */
.zones-tags-block { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; align-items: center; }
.zone-group-inline { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; }
.zone-group-title-inline {
  font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-lt); margin-right: .3rem;
}
.zone-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.zone-tag {
  font-size: .75rem; color: var(--green); background: var(--white);
  border: 1px solid var(--grey-lt); padding: .3rem .7rem;
  border-radius: 99px; font-weight: 400; transition: all .2s;
}
.zone-tag:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* Carte + bloc infos côte à côte */
.zones-bottom { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: start; }

/* Carte Google Maps */
.zones-map {
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--grey-lt);
}
.zones-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Bloc horaires + contact */
.zones-right { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.zones-hours { background: var(--green); padding: 2rem 2.5rem; }
.zones-hours h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 300; color: var(--white); margin-bottom: 1.2rem; }
.hours-grid { display: flex; flex-direction: column; gap: .6rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .82rem; padding: .4rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hours-row:last-child { border: none; }
.hours-day  { color: rgba(250,250,248,.6); }
.hours-time { font-weight: 500; color: var(--mint); }
.zones-contact { padding: 2rem 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-line { display: flex; align-items: center; gap: .8rem; font-size: .85rem; color: var(--dark); }
.contact-line-icon {
  width: 36px; height: 36px; background: var(--mint);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1rem;
}
.contact-line a { color: var(--green); font-weight: 500; }
.contact-line a:hover { color: var(--green-mid); }

/* ── Formulaire Contact ─────────────────────────────────── */
#contact { padding: 7rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-left .section-title { margin-bottom: 1rem; }
.contact-left > p { font-size: .9rem; line-height: 1.8; color: #555550; font-weight: 300; margin-bottom: 2rem; }
.contact-alts { display: flex; flex-direction: column; gap: 1rem; }
.contact-alt-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--offwhite);
  border: 1px solid var(--grey-lt);
  border-radius: 6px;
  color: var(--dark);
  transition: all .2s;
}
.contact-alt-item:hover { border-color: var(--green-lt); background: var(--mint); }
.contact-alt-icon { width: 36px; height: 36px; background: var(--mint); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact-alt-item strong { font-size: .85rem; font-weight: 600; color: var(--green); display: block; }
.contact-alt-item small  { font-size: .72rem; color: var(--grey); }

.contact-right { background: var(--offwhite); padding: 2.5rem; border-radius: 8px; }
.contact-form  { display: flex; flex-direction: column; gap: 1rem; }
.form-group    { display: flex; flex-direction: column; gap: .4rem; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label    { font-size: .65rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--green); }
.req { color: #C1121F; }
.form-input, .form-select, .form-textarea {
  background: var(--white);
  border: 1px solid var(--grey-lt);
  color: var(--dark);
  padding: .85rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  border-radius: var(--radius);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); }
.form-textarea { resize: vertical; min-height: 110px; }

.form-feedback { display: none; padding: .9rem 1rem; border-radius: 4px; font-size: .82rem; margin-bottom: .5rem; }
.form-feedback.success { display: block; background: rgba(74,158,116,.1); color: var(--green); border: 1px solid rgba(74,158,116,.3); }
.form-feedback.error   { display: block; background: rgba(193,18,31,.08); color: #C1121F; border: 1px solid rgba(193,18,31,.2); }

/* ── Footer ─────────────────────────────────────────────── */
#footer { background: var(--dark); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-logo-mark { width: 32px; height: 32px; background: var(--green); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.footer-logo-mark svg { width: 18px; height: 18px; }
.footer-brand { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--white); }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer-contact-item { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: .5rem; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--green-lt); }
.footer-col h4 { font-size: .65rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col li a { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-col li a:hover { color: var(--green-lt); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ── Cookie Notice plugin — harmonisation design Loco Labs ── */
#cookie-notice {
  background: var(--dark) !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  font-family: var(--font-body) !important;
}
#cookie-notice .cookie-notice-container {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 1rem 2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
  flex-wrap: wrap !important;
}
#cookie-notice-text,
#cookie-notice p,
#cookie-notice .cn-text-container {
  font-size: .78rem !important;
  color: rgba(255,255,255,.6) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
#cookie-notice a {
  color: var(--green-lt) !important;
  text-decoration: underline !important;
}
/* Bouton Accepter */
#cn-accept-cookie,
.cn-button.wp-default,
.cn-set-cookie {
  background: var(--green) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 2px !important;
  padding: .6rem 1.4rem !important;
  font-family: var(--font-body) !important;
  font-size: .75rem !important;
  font-weight: 500 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background .2s !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}
#cn-accept-cookie:hover,
.cn-button.wp-default:hover {
  background: var(--green-mid) !important;
}
/* Bouton Refuser */
#cn-refuse-cookie,
.cn-refuse-cookie {
  background: transparent !important;
  color: rgba(255,255,255,.45) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  border-radius: 2px !important;
  padding: .6rem 1.4rem !important;
  font-family: var(--font-body) !important;
  font-size: .75rem !important;
  font-weight: 500 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all .2s !important;
  text-decoration: none !important;
}
#cn-refuse-cookie:hover { color: var(--white) !important; border-color: rgba(255,255,255,.4) !important; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .avis-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-bg-pattern::after { display: none; }
  .hero-left { padding: 3rem 1.5rem 2rem; }
  .hero-right { display: none; }
  .hero-stats { gap: 1.5rem; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { font-size: .7rem; padding: .45rem .9rem; }
  .lang-switcher { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 130px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--grey-lt);
    padding: 1rem 0; box-shadow: var(--shadow);
    z-index: 199;
  }
  .nav-links.open li { padding: .7rem 2rem; }
  .nav-links.open a  { font-size: 1rem; }

  .services-grid  { grid-template-columns: 1fr 1fr; }
  .why-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .why-right      { grid-template-columns: 1fr; }
  .why-card:first-child { grid-column: span 1; }
  .real-grid      { grid-template-columns: 1fr; }
  .real-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .avis-grid      { grid-template-columns: 1fr; }
  .zones-bottom   { grid-template-columns: 1fr; }
  .zones-map      { height: 320px; }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .trust-inner    { gap: 1.5rem; }
  .trust-sep      { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats    { flex-wrap: wrap; gap: 1rem; }
}

/* ── Bouton WhatsApp flottant ────────────────────────────── */
#wa-float {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 250;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform .25s, background .25s;
  text-decoration: none;
}
#wa-float:hover { background: #1da851; transform: scale(1.08); }
#wa-float svg { flex-shrink: 0; }

/* ── Pages standard (mentions légales, RGPD, etc.) ─────── */
.page-main {
  padding-top: calc(130px + 5rem);
  padding-bottom: 6rem;
  min-height: 80vh;
  background: var(--white);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--grey);
  margin-bottom: 2.5rem;
  letter-spacing: .04em;
}
.breadcrumb a { color: var(--green-lt); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-sep { color: var(--grey-lt); }
.page-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--green);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-lt);
}
.page-body {
  font-size: .95rem;
  line-height: 1.9;
  color: #555550;
  max-width: 780px;
}
.page-body h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--green);
  margin: 2.5rem 0 1rem;
}
.page-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-mid);
  margin: 1.5rem 0 .5rem;
}
.page-body p { margin-bottom: 1rem; }
.page-body ul, .page-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-body li { margin-bottom: .4rem; }
.page-body a { color: var(--green-lt); text-decoration: underline; }
.page-body a:hover { color: var(--green); }
.page-body strong { color: var(--green); font-weight: 600; }
.page-back { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--grey-lt); }

