/*
Made by__           ___                         ___           ___          
     /__/\         /  /\                       /  /\         /  /\         
     \  \:\       /  /::\                     /  /::\       /  /:/_        
      \__\:\     /  /:/\:\                   /  /:/\:\     /  /:/ /\       
  ___ /  /::\   /  /:/  \:\   ___     ___   /  /:/  \:\   /  /:/ /::\      
 /__/\  /:/\:\ /__/:/ \__\:\ /__/\   /  /\ /__/:/ \__\:\ /__/:/ /:/\:\     
 \  \:\/:/__\/ \  \:\ /  /:/ \  \:\ /  /:/ \  \:\ /  /:/ \  \:\/:/~/:/     
  \  \::/       \  \:\  /:/   \  \:\  /:/   \  \:\  /:/   \  \::/ /:/      
   \  \:\        \  \:\/:/     \  \:\/:/     \  \:\/:/     \__\/ /:/       
    \  \:\        \  \::/       \  \/:/       \  \::/        /_Gouriou Axel
     \__\/         \__\/         \__\/         \__\/         \__\/         
                                                                           
                         - Built for reality -
*/
/* ============================================================
   TY MUZ'O — Feuille de styles
   Palette :
     --beige  : #f6dcb0  (accent chaud)
     --vert   : #a7bf95  (vert sauge clair, décoratif)
     --vert-a : #5a7a4a  (vert accessible, texte/fond avec blanc)
     --clair  : #fff7e0  (fond principal)
     --corail : #dd7f5f  (couleur de marque, décoratif)
     --corail-a: #b85a38 (corail accessible, texte sur fond clair)
     --fonce  : #5a4a42  (texte principal)
============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --beige:    #f6dcb0;
  --vert:     #a7bf95;
  --vert-a:   #5a7a4a;
  --clair:    #fff7e0;
  --corail:   #dd7f5f;
  --corail-a: #b85a38;
  --fonce:    #5a4a42;
  --white:    #ffffff;
}

/* ── Reset & base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--fonce);
  background: var(--clair);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; }
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; letter-spacing: 0.01em; }

/* ── Focus visible global ───────────────────────────────── */
:focus-visible { outline: 2px solid var(--corail-a); outline-offset: 3px; border-radius: 4px; }

/* ── Boutons communs ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 20px 50px; border-radius: 25px;
  font-weight: 700; font-size: 1.2em;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--corail-a); color: var(--white); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(184,90,56,.4); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { transform: translateY(-3px); background: #20bd5a; }

/* ══════════════════════════════════════════════════════════
   SOCIAL BAR (fixe droite)
══════════════════════════════════════════════════════════ */
.social-bar {
  position: fixed; right: 20px; top: 50%;
  transform: translateY(-50%);
  z-index: 1000; display: flex; flex-direction: column; gap: 15px;
}
.social-bar a {
  width: 50px; height: 50px;
  background: var(--vert-a); border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.3em;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
  transition: transform .3s ease, background .3s ease;
}
.social-bar a:hover { transform: scale(1.15); background: var(--corail-a); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #9ab88a 0%, #a7bf95 40%, #8faa80 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--fonce);
  padding: 15px; width: 100%; animation: fadeInUp 1s ease;
}
.logo-hero {
  width: 460px; height: 460px;
  margin: 0 auto -80px;
  display: flex; align-items: center; justify-content: center;
}
.logo-hero img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
  mix-blend-mode: multiply;
}
.hero h1 {
  font-size: 6.5em; font-weight: 600;
  color: #5a3a28; margin-bottom: 0;
  text-shadow: none; letter-spacing: 0.02em;
}
.hero .slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 2.2em;
  color: #4a2e18; margin-bottom: 5px;
}
.hero .subtitle {
  font-size: 1.35em; max-width: 720px;
  margin: 0 auto 50px;
  color: #3d2510; font-weight: 300;
}
.cta-buttons {
  display: flex; gap: 20px;
  justify-content: center; flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  color: #5a3a28; background: none; border: none;
  cursor: pointer; animation: bounce 2s infinite;
}

/* ══════════════════════════════════════════════════════════
   CAROUSEL PHOTOS
══════════════════════════════════════════════════════════ */
.carousel-section { padding: 100px 20px; background: var(--clair); }
.carousel-section h2 { text-align: center; font-size: 3em; color: var(--fonce); margin-bottom: 20px; }
.carousel-section > p { text-align: center; font-size: 1.2em; color: var(--fonce); margin-bottom: 60px; opacity: .8; }

.carousel-container {
  max-width: 1200px; margin: 0 auto;
  position: relative; overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  touch-action: pan-y pinch-zoom;
}
.carousel {
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
}
.carousel-item {
  min-width: 100%; max-width: 100%;
  height: 600px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: 40px; flex-shrink: 0;
}
.carousel-caption {
  background: rgba(255,255,255,.95);
  padding: 25px 35px; border-radius: 20px;
  backdrop-filter: blur(10px);
}
.carousel-caption h3 { color: var(--corail-a); font-size: 1.6em; }
.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex;
  justify-content: space-between; padding: 0 20px;
  pointer-events: none;
}
.carousel-nav button {
  width: 60px; height: 60px; border-radius: 15px; border: none;
  background: rgba(255,255,255,.9); color: var(--corail-a);
  font-size: 1.5em; cursor: pointer; pointer-events: all;
  transition: transform .3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,.2);
}
.carousel-nav button:hover { background: var(--white); transform: scale(1.1); }
.carousel-indicators {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 10px;
}
.carousel-indicators button {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid white; background: transparent;
  cursor: pointer; transition: all .3s ease;
}
.carousel-indicators button.active { background: white; width: 35px; border-radius: 6px; }

/* ══════════════════════════════════════════════════════════
   À PROPOS
══════════════════════════════════════════════════════════ */
.about-section { padding: 100px 20px; background: var(--white); }
.about-section h2 { text-align: center; font-size: 3em; color: var(--corail-a); margin-bottom: 50px; }
.about-container {
  max-width: 900px; margin: 0 auto;
  background: var(--clair); padding: 50px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
  border-left: 5px solid var(--vert-a);
}
.about-content p {
  font-size: 1.15em; line-height: 1.9;
  color: var(--fonce); margin-bottom: 20px; text-align: justify;
}
.about-content p:last-child { text-align: center; font-size: 1.3em; margin-top: 30px; margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services-section { padding: 100px 20px; background: var(--clair); }
.services-section h2 { text-align: center; font-size: 3em; color: var(--fonce); margin-bottom: 70px; }
.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 30px;
  align-items: center; justify-content: center;
}
.service-card {
  background: var(--vert-a); padding: 30px 25px;
  border-radius: 25px; text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  color: var(--white); position: relative;
  overflow: hidden; display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 100px; height: 100px;
  background: rgba(255,255,255,.1); border-radius: 0 0 0 100%;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,.2); }
.service-card.compact { width: 320px; min-height: 360px; }
.service-card.large   { width: 420px; min-height: 460px; }
.service-card-top { flex-shrink: 0; }
.service-card-bottom { flex-grow: 1; display: flex; flex-direction: column; justify-content: flex-start; padding-top: 15px; }
.service-icon { font-size: 2.8em; margin-bottom: 5px; }
.service-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.5em; font-weight: 700; line-height: 1.2; }
.service-card p { color: var(--white); line-height: 1.4; margin-bottom: 15px; font-size: 1em; font-weight: 600; padding: 0 5px 15px; border-bottom: 2px solid rgba(255,255,255,.3); }
.service-prices { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.service-card .price { font-size: 1.4em; font-weight: 700; color: var(--white); }
.fidelite-badge {
  background: var(--white); color: var(--fonce);
  padding: 50px 30px; border-radius: 30px;
  text-align: center; max-width: 500px; margin: 50px auto 0;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  border: 3px solid var(--corail-a);
}
.fidelite-badge .icon { font-size: 3em; margin-bottom: 15px; }
.fidelite-badge h3 { font-size: 1.8em; margin-bottom: 10px; color: var(--corail-a); }
.fidelite-badge p { font-size: 1.2em; font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   FORFAITS
══════════════════════════════════════════════════════════ */
.forfaits-section { padding: 80px 20px; background: var(--clair); }
.forfaits-section h2 { text-align: center; font-size: 2.5em; color: var(--fonce); margin-bottom: 50px; }
.forfaits-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.forfait-card {
  background: var(--vert-a); padding: 35px 30px;
  border-radius: 25px; border: 4px solid var(--corail-a);
  position: relative; color: var(--white);
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  transition: transform .3s ease;
  min-height: 280px; display: flex; flex-direction: column;
}
.forfait-card:hover { transform: translateY(-5px); }
.forfait-badge {
  position: absolute; top: -15px; right: 20px;
  background: var(--corail-a); color: var(--white);
  padding: 8px 20px; border-radius: 20px;
  font-weight: 700; font-size: .9em;
}
.forfait-card h3 { font-size: 1.9em; margin-bottom: 15px; color: var(--white); font-weight: 700; }
.forfait-card .details { font-size: 1.2em; margin-bottom: auto; font-weight: 600; line-height: 1.5; }
.forfait-card .price-old { text-decoration: line-through; opacity: .75; font-size: 1.1em; margin: 15px 0 5px; font-weight: 600; }
.forfait-card .price-new { font-size: 2.4em; font-weight: 800; margin-bottom: 10px; }
.forfait-card .validity { font-style: italic; opacity: .9; font-size: 1.05em; }

/* ══════════════════════════════════════════════════════════
   SUPPLÉMENTS
══════════════════════════════════════════════════════════ */
.supplements-section { padding: 60px 20px; background: var(--clair); }
.supplements-section h2 { text-align: center; font-size: 2.5em; margin-bottom: 40px; color: var(--fonce); }
.supplements-box {
  max-width: 800px; margin: 0 auto;
  background: var(--white); padding: 35px; border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
  border: 3px solid var(--vert-a);
}
.supplement-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 0; border-bottom: 2px solid var(--beige); gap: 15px;
}
.supplement-item:last-child { border-bottom: none; }
.supplement-item .label { font-size: 1.1em; color: var(--fonce); flex: 1; }
.supplement-item .value { font-weight: 700; font-size: 1.2em; color: var(--corail-a); white-space: nowrap; min-width: 80px; text-align: right; }

/* ══════════════════════════════════════════════════════════
   AVIS GOOGLE
══════════════════════════════════════════════════════════ */
.reviews-section { padding: 80px 20px 100px; background: var(--clair); }
.reviews-section h2 { text-align: center; font-size: 3em; color: var(--fonce); margin-bottom: 12px; }
.reviews-rating-block { text-align: center; margin-bottom: 50px; }
.reviews-rating-row { display: flex; align-items: center; justify-content: center; gap: 10px; }
.g-score { font-size: 2em; font-weight: 800; color: var(--fonce); font-family: 'Cormorant Garamond', serif; }
.g-stars { color: #f59e0b; font-size: 1.4em; letter-spacing: 2px; }
.g-count { font-size: .9em; color: var(--fonce); opacity: .5; }

/* Carousel avis */
.reviews-carousel-wrap {
  max-width: 1150px; margin: 0 auto 40px;
  position: relative; padding: 0 50px; box-sizing: border-box;
}
.reviews-carousel-outer { overflow: hidden; padding: 10px 0; }
.reviews-track {
  display: flex; gap: 22px;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.reviews-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: var(--white); color: var(--fonce);
  box-shadow: 0 3px 12px rgba(0,0,0,.1);
  cursor: pointer; font-size: 1em;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  z-index: 10;
}
.reviews-carousel-btn:hover { background: var(--corail-a); color: var(--white); transform: translateY(-50%) scale(1.08); }
.reviews-carousel-btn:disabled { opacity: .3; cursor: default; pointer-events: none; }
.reviews-carousel-btn.prev { left: 0; }
.reviews-carousel-btn.next { right: 0; }

/* Card avis */
.review-card {
  background: var(--white); border-radius: 16px; padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(90,74,66,.07);
  border-left: 4px solid var(--vert-a);
  display: flex; flex-direction: column; gap: 16px;
  text-decoration: none; color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-left-color .25s ease;
  height: 260px; overflow: hidden; box-sizing: border-box;
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(90,74,66,.13); border-left-color: var(--corail-a); }
.review-header { display: flex; align-items: center; gap: 14px; }
.review-avatar-img  { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.review-avatar-letter {
  width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4em; font-weight: 700; color: var(--corail-a);
  background: var(--beige);
}
.review-header-info { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.review-name { font-weight: 700; font-size: 1em; color: var(--fonce); margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-meta-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.review-stars-row { color: #f59e0b; font-size: .95em; letter-spacing: 1px; flex-shrink: 0; }
.review-date { font-size: .8em; color: var(--fonce); opacity: .45; }
.review-text {
  color: var(--fonce); line-height: 1.7; font-size: .95em;
  font-style: italic; flex-grow: 1;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.review-source {
  display: flex; align-items: center; gap: 6px;
  font-size: .78em; color: var(--fonce); opacity: .4;
  padding-top: 10px; border-top: 1px solid var(--beige); margin-top: auto;
}
.review-source svg { width: 12px; height: 12px; flex-shrink: 0; }

/* Dots */
.reviews-dots-row { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; }
.reviews-dots-row span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--beige); cursor: pointer; transition: all .3s ease;
}
.reviews-dots-row span.active { background: var(--corail-a); width: 22px; border-radius: 4px; }

/* Fallback avis */
.reviews-fallback { text-align: center; padding: 50px 20px; }
.reviews-fallback p { font-family: 'Cormorant Garamond', serif; font-size: 1.6em; color: var(--fonce); margin-bottom: 8px; }
.reviews-fallback small { color: var(--fonce); opacity: .55; font-size: .95em; }

/* Bouton bas */
.reviews-footer { text-align: center; }
.reviews-footer a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--corail-a); color: var(--white);
  padding: 15px 35px; border-radius: 30px;
  font-weight: 700; font-size: 1em; white-space: nowrap;
  text-decoration: none; transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 6px 20px rgba(184,90,56,.25);
}
.reviews-footer a svg { width: 18px; height: 18px; flex-shrink: 0; }
.reviews-footer a:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,90,56,.35); }

/* ══════════════════════════════════════════════════════════
   ZONE D'INTERVENTION
══════════════════════════════════════════════════════════ */
.zone-section { padding: 80px 20px; background: var(--vert-a); color: var(--white); text-align: center; }
.zone-section h2 { font-size: 3em; margin-bottom: 20px; color: var(--white); }
.zone-section p { font-size: 1.2em; max-width: 700px; margin: 0 auto; line-height: 1.8; opacity: .95; }

/* ══════════════════════════════════════════════════════════
   CARTE GOOGLE MAPS
══════════════════════════════════════════════════════════ */
.map-section { padding: 80px 20px; background: var(--clair); }
.map-section h2 { text-align: center; font-size: 2.5em; color: var(--fonce); margin-bottom: 15px; }
.map-subtitle { text-align: center; font-size: 1.1em; color: var(--fonce); opacity: .7; margin-bottom: 40px; }
.map-wrapper {
  max-width: 1000px; margin: 0 auto;
  border-radius: 25px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  border: 4px solid var(--vert-a);
}
.map-wrapper iframe { width: 100%; height: 420px; display: block; border: none; }

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-section { padding: 100px 20px; background: var(--white); }
.faq-section h2 { text-align: center; font-size: 3em; color: var(--fonce); margin-bottom: 60px; }
.faq-container { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: var(--clair); border-radius: 20px; border: 2px solid var(--beige); overflow: hidden; transition: border-color .3s ease, box-shadow .3s ease; }
.faq-item:hover { border-color: var(--vert-a); box-shadow: 0 8px 25px rgba(0,0,0,.08); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 25px 30px; text-align: left;
  font-size: 1.15em; font-weight: 700; color: var(--fonce);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: inherit;
}
.faq-icon { color: var(--corail-a); font-size: 1.2em; flex-shrink: 0; transition: transform .3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; padding: 0 30px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 30px 25px; }
.faq-answer p { font-size: 1.05em; line-height: 1.8; color: var(--fonce); opacity: .85; }

/* ══════════════════════════════════════════════════════════
   INFOS PRATIQUES
══════════════════════════════════════════════════════════ */
.infos-section { padding: 100px 20px; background: var(--clair); }
.infos-section h2 { text-align: center; font-size: 3em; color: var(--fonce); margin-bottom: 60px; }
.infos-container { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; }
.info-box { background: var(--white); padding: 40px; border-radius: 25px; box-shadow: 0 15px 40px rgba(0,0,0,.1); border-top: 5px solid var(--corail-a); }
.info-box h3 { color: var(--corail-a); font-size: 1.5em; margin-bottom: 25px; text-align: center; }
.info-box ul { list-style: none; padding: 0; }
.info-box ul li { font-size: 1.1em; color: var(--fonce); margin-bottom: 15px; padding-left: 25px; position: relative; line-height: 1.6; }
.info-box ul li::before { content: "✓"; position: absolute; left: 0; color: var(--vert-a); font-weight: 700; }
.info-box ul li strong { color: var(--corail-a); }

/* ══════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════ */
.contact-section { padding: 100px 20px; background: var(--clair); }
.contact-section h2 { text-align: center; font-size: 3em; color: var(--fonce); margin-bottom: 70px; }
.contact-info {
  background: var(--white); padding: 40px; border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
  max-width: 500px; margin: 0 auto;
}
.contact-info h3 { color: var(--corail-a); margin-bottom: 30px; font-size: 1.8em; }
.contact-item { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; font-size: 1.1em; }
.contact-item i {
  width: 50px; height: 50px; background: var(--vert-a);
  border-radius: 15px; display: flex; align-items: center;
  justify-content: center; color: var(--white); font-size: 1.3em; flex-shrink: 0;
}
.contact-item a { color: var(--fonce); text-decoration: underline; }
.contact-item a:hover { color: var(--corail-a); }

/* ══════════════════════════════════════════════════════════
   MODAL CGV
══════════════════════════════════════════════════════════ */
.cgv-modal { position: fixed; inset: 0; z-index: 10000; display: none; }
.cgv-modal.is-open { display: block; }
.cgv-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.8); }
.cgv-content {
  position: relative; width: 90%; max-width: 900px;
  height: 90vh; margin: 5vh auto;
  background: var(--white); border-radius: 20px;
  padding: 50px; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.cgv-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border: none;
  background: var(--corail-a); color: var(--white);
  font-size: 24px; border-radius: 50%; cursor: pointer;
  transition: background .3s ease;
}
.cgv-close:hover { background: var(--fonce); }
.cgv-content h1 { color: var(--corail-a); font-size: 2.2em; margin-bottom: 30px; text-align: center; }
.cgv-section { margin-bottom: 40px; }
.cgv-section h2 { color: var(--vert-a); font-size: 1.6em; margin-bottom: 15px; border-bottom: 2px solid var(--beige); padding-bottom: 10px; }
.cgv-section h3 { color: var(--corail-a); font-size: 1.3em; margin: 20px 0 10px; }
.cgv-section p, .cgv-section li { color: var(--fonce); line-height: 1.8; margin-bottom: 15px; font-size: 1.05em; }
.cgv-section ul { margin: 15px 0 15px 30px; }
.cgv-section strong { color: var(--corail-a); }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer { background: var(--fonce); color: var(--white); padding: 60px 20px 30px; }
.footer-content {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 60px; margin-bottom: 50px; text-align: center;
}
.footer-section h3 { color: var(--beige); margin-bottom: 25px; font-size: 1.5em; font-weight: 700; }
.footer-section p { line-height: 2; opacity: .95; font-size: 1.05em; }
.footer-section a { color: var(--white); opacity: .95; transition: color .3s ease; display: inline-block; }
.footer-section a:hover { color: var(--beige); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 2px solid rgba(255,255,255,.15); opacity: .75; font-size: .9em; line-height: 1.8; }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — tablette
══════════════════════════════════════════════════════════ */
@media (min-width: 600px) and (max-width: 900px) {
  .reviews-track .review-card { height: auto !important; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — mobile < 768px
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero { min-height: 100svh; padding: 20px 0; }
  .hero-content { padding: 15px; width: 100%; }
  .logo-hero { width: 220px !important; height: 220px !important; margin: 0 auto -35px !important; }
  .hero h1 { font-size: 2.4em !important; margin-bottom: 4px !important; }
  .hero .slogan { font-size: 1.2em !important; margin-bottom: 4px !important; }
  .hero .subtitle { font-size: .95em !important; max-width: 100% !important; padding: 0 10px; margin-bottom: 30px !important; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .btn { width: 85%; max-width: 320px; padding: 15px 20px; font-size: 1em; justify-content: center; }
  .carousel-item { height: 300px; }
  .carousel-nav { display: none; }
  .carousel-caption { padding: 15px 20px; }
  .carousel-caption h3 { font-size: 1.2em; }
  .social-bar { display: none; }
  .services-section h2, .reviews-section h2, .zone-section h2,
  .contact-section h2, .about-section h2, .infos-section h2,
  .faq-section h2, .carousel-section h2, .map-section h2,
  .forfaits-section h2, .supplements-section h2 { font-size: 1.8em; }
  .services-grid { flex-direction: column; align-items: center; gap: 20px; }
  .service-card.compact, .service-card.large { width: 90%; max-width: 400px; min-height: auto !important; height: auto !important; }
  .forfaits-grid { grid-template-columns: 1fr; }
  .infos-container { grid-template-columns: 1fr; }
  .info-box { padding: 25px 20px; }
  .about-container { padding: 25px 20px; }
  .about-content p { font-size: 1em; text-align: left; }
  .footer-content { grid-template-columns: 1fr; gap: 30px; text-align: left; }
  .footer-section h3 { font-size: 1.2em; }
  .footer-bottom { font-size: .8em; }
  .map-wrapper iframe { height: 250px; }
  .cgv-content { padding: 25px 20px; width: 95%; height: 95vh; margin: 2.5vh auto; }
  .reviews-carousel-wrap { padding: 0 40px; }
  .reviews-carousel-btn { width: 36px; height: 36px; font-size: .85em; }
  .review-card { height: auto !important; min-height: 0 !important; }
  .review-name { white-space: normal !important; }
}

@media (max-width: 390px) {
  .logo-hero { width: 180px !important; height: 180px !important; margin: 0 auto -25px !important; }
  .hero h1 { font-size: 2em !important; }
  .btn { width: 90%; }
}
