/* =====================================================================
   FUNTASTIC33 — CSS GLOBAL
   Site événementiel | Bassin d'Arcachon · Bordeaux · Gironde · Landes
   --------------------------------------------------------------------
   Architecture du fichier :
   1. Variables (couleurs, typo, spacings, ombres)
   2. Reset + base
   3. Typographie
   4. Layout (container, sections, grilles)
   5. Composants (boutons, cartes, badges, formulaires)
   6. Header / Navigation
   7. Hero
   8. Sections spécifiques (réassurance, prestations, locations, clients,
      témoignages, CTA, zones, footer)
   9. WhatsApp flottant
   10. Animations
   11. Responsive (tablette, mobile, menu burger)
   ===================================================================== */


/* =================================================================
   1. VARIABLES
   ================================================================= */
:root {
  /* Couleurs - Charte */
  --c-blue:        #0B3D91;
  --c-blue-dark:   #082B66;
  --c-blue-light:  #1A4FB5;
  --c-orange:      #FF6B35;
  --c-orange-dark: #E5562A;
  --c-yellow:      #FFC93C;
  --c-yellow-dark: #E5B232;

  /* Neutres */
  --c-white:       #FFFFFF;
  --c-bg:          #FFFFFF;
  --c-bg-soft:     #F4F6F8;
  --c-bg-dark:     #0F1729;
  --c-text:        #1A1A2E;
  --c-text-soft:   #4A5568;
  --c-text-muted:  #718096;
  --c-border:      #E2E8F0;

  /* Typo */
  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;

  /* Espacements (échelle harmonique) */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.5rem;
  --s-6:  2rem;
  --s-7:  3rem;
  --s-8:  4rem;
  --s-9:  6rem;
  --s-10: 8rem;

  /* Border radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(11, 61, 145, 0.06);
  --shadow-md: 0 4px 14px rgba(11, 61, 145, 0.1);
  --shadow-lg: 0 14px 40px rgba(11, 61, 145, 0.14);
  --shadow-xl: 0 24px 60px rgba(11, 61, 145, 0.18);
  --shadow-orange: 0 10px 30px rgba(255, 107, 53, 0.4);

  /* Layout */
  --container-max: 1200px;
  --header-h: 92px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* =================================================================
   2. RESET + BASE
   ================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
  /* Filet de sécurité contre les débordements horizontaux qui
     forçaient certains utilisateurs mobiles à "swiper à droite"
     pour atteindre le burger. */
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Même filet de sécurité côté body (certains navigateurs mobiles
     ignorent overflow-x sur html). */
  overflow-x: hidden;
  /* Empêche la largeur totale du body de dépasser le viewport, ce qui
     éliminait au passage tout scroll horizontal indésirable. */
  max-width: 100vw;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--c-blue);
  text-decoration: none;
  transition: color var(--t-base);
}
a:hover { color: var(--c-orange); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

ul, ol { list-style: none; }

::selection { background: var(--c-yellow); color: var(--c-text); }


/* =================================================================
   3. TYPOGRAPHIE
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.025em;
}
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: var(--s-4); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: var(--s-3);
}

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }


/* =================================================================
   4. LAYOUT
   ================================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.section {
  padding: var(--s-9) 0;
  position: relative;
}
.section--soft { background: var(--c-bg-soft); }
.section--dark { background: var(--c-bg-dark); color: var(--c-white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-white); }
.section--gradient {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-light) 100%);
  color: var(--c-white);
}
.section--gradient h1, .section--gradient h2, .section--gradient h3 { color: var(--c-white); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-8);
}
.section-header p {
  color: var(--c-text-soft);
  font-size: 1.1rem;
  margin-top: var(--s-3);
}

/* Grilles génériques */
.grid {
  display: grid;
  gap: var(--s-5);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }


/* =================================================================
   5. COMPOSANTS
   ================================================================= */

/* --- BOUTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--r-full);
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: var(--c-orange);
  color: var(--c-white);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  background: var(--c-orange-dark);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 107, 53, 0.55);
}

.btn--secondary {
  background: var(--c-blue);
  color: var(--c-white);
}
.btn--secondary:hover {
  background: var(--c-blue-dark);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--c-blue);
  border-color: var(--c-blue);
}
.btn--outline:hover {
  background: var(--c-blue);
  color: var(--c-white);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--c-white);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--c-white);
}

.btn--lg { padding: 1.15rem 2.25rem; font-size: 1.05rem; }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.9rem; }

.btn-arrow { transition: transform var(--t-base); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Groupe de boutons */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}


/* --- CARTES --- */
.card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--t-slow);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--c-bg-soft);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.card:hover .card__media img { transform: scale(1.05); }

.card__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: var(--s-2);
  color: var(--c-text);
}
.card__text {
  color: var(--c-text-soft);
  font-size: 0.97rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--s-4);
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--c-orange);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
}
.card__link:hover { color: var(--c-orange-dark); gap: 0.7rem; }

/* Carte alternative carrée (top activités) */
.card--square .card__media { aspect-ratio: 1/1; }


/* --- BADGES --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--c-yellow);
  color: var(--c-text);
}
.badge--blue  { background: var(--c-blue);   color: var(--c-white); }
.badge--orange{ background: var(--c-orange); color: var(--c-white); }


/* --- FORMULAIRES --- */
.form { display: grid; gap: var(--s-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }

.form-field { display: flex; flex-direction: column; gap: var(--s-2); }
.form-field label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--c-text);
}
.form-field label .required { color: var(--c-orange); }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  background: var(--c-white);
  color: var(--c-text);
  transition: all var(--t-base);
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(11, 61, 145, 0.12);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.9rem;
  color: var(--c-text-soft);
}
.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--c-blue);
}

/* Honeypot anti-spam : caché */
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* Bouton submit en cours d'envoi */
.btn.is-loading {
  opacity: 0.7;
  cursor: progress;
}
.btn.is-loading .btn-arrow { display: none; }

/* Messages de feedback (succès / erreur) du formulaire de devis */
.form-feedback {
  margin-top: var(--s-3);
  padding: 0.9rem 1rem;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  line-height: 1.5;
  border: 1px solid transparent;
}
.form-feedback--success {
  background: #e8f7ee;
  border-color: #2f9e54;
  color: #15532e;
}
.form-feedback--error {
  background: #fdecec;
  border-color: #d04a4a;
  color: #7a1f1f;
}


/* =================================================================
   6. HEADER + NAVIGATION
   ================================================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--t-base);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.site-header .container {
  height: 100%;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img { height: 72px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item { position: relative; list-style: none; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 1.1rem;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--c-text);
  border-radius: var(--r-md);
  white-space: nowrap;
  transition: all var(--t-base);
}
.nav__link:hover,
.nav__link.is-active {
  background: var(--c-bg-soft);
  color: var(--c-blue);
}

.nav__chevron {
  width: 18px; height: 18px;
  transition: transform var(--t-base);
}
.nav__item--has-submenu:hover .nav__chevron { transform: rotate(180deg); }

/* Sous-menu déroulant (desktop) — agrandi pour plus de confort de lecture */
.nav__submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 320px;
  max-width: calc(100vw - 32px);
  background: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-base);
  z-index: 10;
  border: 1px solid var(--c-border);
}
/* Empêche le sous-menu de déborder à droite de l'écran (utile pour le menu "Location matériel") */
.nav__item--has-submenu:last-of-type .nav__submenu,
.nav__item--has-submenu:nth-last-of-type(2) .nav__submenu {
  left: auto;
  right: 0;
}
.nav__item--has-submenu:hover .nav__submenu,
.nav__item--has-submenu:focus-within .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__submenu a {
  display: block;
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--c-text);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__submenu a:hover {
  background: var(--c-bg-soft);
  color: var(--c-blue);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--c-blue);
  white-space: nowrap;
}
.nav__phone:hover { color: var(--c-orange); }
/* Picto téléphone à l'échelle du texte */
.nav__phone svg { width: 22px; height: 22px; }
/* Bouton "Demander un devis" du header — bien visible mais compact */
.nav__cta .btn--sm { padding: 0.85rem 1.4rem; font-size: 1rem; font-weight: 700; white-space: nowrap; }

/* Burger mobile */
.nav__burger {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: var(--c-bg-soft);
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--c-text);
  border-radius: 2px;
  position: relative;
  transition: all var(--t-base);
}
.nav__burger span::before,
.nav__burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2.5px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--t-base);
}
.nav__burger span::before { top: -7px; }
.nav__burger span::after  { top: 7px; }

.nav__burger.is-active span { background: transparent; }
.nav__burger.is-active span::before { top: 0; transform: rotate(45deg); }
.nav__burger.is-active span::after  { top: 0; transform: rotate(-45deg); }


/* =================================================================
   7. HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-light) 50%, #2563EB 100%);
  color: var(--c-white);
  overflow: hidden;
  padding: var(--s-9) 0;
}

/* Confettis décoratifs en fond */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 201, 60, 0.4) 0%, transparent 25%),
    radial-gradient(circle at 85% 75%, rgba(255, 107, 53, 0.4) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  z-index: 1;
}

/* Pattern de points */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-7);
  align-items: center;
}

.hero__content { max-width: 640px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.45rem 0.95rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-5);
  backdrop-filter: blur(10px);
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--c-yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: var(--s-5);
  color: var(--c-white);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero__title .accent {
  background: linear-gradient(120deg, var(--c-yellow) 0%, #FFE082 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--s-6);
  max-width: 560px;
}

.hero__cta { margin-bottom: var(--s-6); }

.hero__stats {
  display: flex;
  gap: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--c-yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Visuel hero (à droite) */
.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 480px;
  min-height: 360px;
  justify-self: end;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

/* --- Slider du hero (page d'accueil) --- */
.hero-slider {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  pointer-events: none;
}
.hero-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0; /* le radius est porté par le conteneur .hero-slider */
  box-shadow: none;
}
/* Fallback no-JS : on affiche uniquement la 1re slide */
.no-js .hero-slider__slide:not(.is-active) { display: none; }

/* Dots de navigation */
.hero-slider__dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-base);
}
.hero-slider__dot:hover { transform: scale(1.15); }
.hero-slider__dot.is-active {
  background: var(--c-white);
  transform: scale(1.2);
}

/* Respect des préférences utilisateur : pas de transition si reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide { transition: none; }
}

/* Badge flottant sur visuel */
.hero__floating {
  position: absolute;
  background: var(--c-white);
  color: var(--c-text);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  animation: float 3s ease-in-out infinite;
}
.hero__floating--top { top: 8%; left: -8%; }
.hero__floating--bottom { bottom: 10%; right: -8%; animation-delay: 1.5s; }
.hero__floating .icon {
  font-size: 2rem;
  width: 48px;
  height: 48px;
  background: var(--c-bg-soft);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__floating strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.hero__floating span { font-size: 0.82rem; color: var(--c-text-muted); }


/* =================================================================
   8. SECTIONS SPÉCIFIQUES
   ================================================================= */

/* --- BANDEAU RÉASSURANCE --- */
.trust-bar {
  background: var(--c-white);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--c-border);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.trust-item__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-blue-light) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 2px;
}
.trust-item span {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}


/* --- PRESTATIONS (3 cartes principales) --- */
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.preset-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: flex-end;
  padding: var(--s-6);
  color: var(--c-white);
  transition: all var(--t-slow);
  box-shadow: var(--shadow-md);
}
.preset-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  color: var(--c-white);
}

.preset-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform var(--t-slow);
}
.preset-card__bg img { width: 100%; height: 100%; object-fit: cover; }
.preset-card:hover .preset-card__bg { transform: scale(1.06); }

.preset-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 61, 145, 0.95) 0%, rgba(11, 61, 145, 0.4) 50%, transparent 100%);
  z-index: 1;
}

.preset-card__content { position: relative; z-index: 2; }
.preset-card__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: var(--s-2);
  color: var(--c-white);
}
.preset-card__text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--s-3);
}
.preset-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--c-yellow);
  font-size: 0.95rem;
}
.preset-card:hover .preset-card__link { gap: 0.8rem; }


/* --- LOCATIONS (grille) --- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}

.loc-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--c-bg-soft);
  transition: all var(--t-slow);
  box-shadow: var(--shadow-sm);
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.loc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.loc-card:hover img { transform: scale(1.08); }

.loc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 61, 145, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--s-4);
}
.loc-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.02em;
}


/* --- CLIENTS (logos en bandeau) --- */
.clients-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-7);
  padding: var(--s-5) 0;
}
.clients-strip img {
  max-height: 80px;
  width: auto;
  filter: grayscale(0.3);
  opacity: 0.85;
  transition: all var(--t-base);
}
.clients-strip img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}


/* --- TÉMOIGNAGES --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.testimonial {
  background: var(--c-white);
  padding: var(--s-6);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  border-top: 4px solid var(--c-yellow);
}
.testimonial__quote {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-text);
  margin-bottom: var(--s-5);
  font-style: italic;
}
.testimonial__quote::before {
  content: '"';
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--c-orange);
  line-height: 0.6;
  margin-bottom: var(--s-3);
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-orange) 100%);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--c-text);
}
.testimonial__author span {
  font-size: 0.88rem;
  color: var(--c-text-muted);
}
.testimonial__stars {
  color: var(--c-yellow);
  margin-bottom: var(--s-3);
  letter-spacing: 2px;
}


/* --- ZONES D'INTERVENTION --- */
.zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-6);
}
.zone-card {
  background: var(--c-white);
  padding: var(--s-5);
  border-radius: var(--r-md);
  text-align: center;
  border: 2px solid var(--c-border);
  transition: all var(--t-base);
}
.zone-card:hover {
  border-color: var(--c-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.zone-card__icon {
  font-size: 1.8rem;
  margin-bottom: var(--s-2);
}
.zone-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-blue);
}
.zone-card span {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}


/* --- CTA FINAL --- */
.cta-block {
  background: linear-gradient(135deg, var(--c-orange) 0%, #FF8B5A 100%);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-6);
  text-align: center;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: var(--c-white); margin-bottom: var(--s-3); }
.cta-block p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: var(--s-6);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-block .btn--ghost { background: var(--c-white); color: var(--c-orange); border-color: var(--c-white); }
.cta-block .btn--ghost:hover { background: var(--c-text); color: var(--c-white); }


/* --- FOOTER --- */
.site-footer {
  background: var(--c-bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--s-8) 0 var(--s-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--c-white);
  margin-bottom: var(--s-4);
  font-weight: 700;
}
.footer-col ul li { margin-bottom: var(--s-2); }
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  transition: color var(--t-base);
}
.footer-col a:hover { color: var(--c-yellow); }

.footer-brand img {   height: 60px;   width: auto;   margin-bottom: var(--s-3); }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--s-4);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
  font-size: 0.92rem;
}
.footer-contact-item .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--c-yellow);
}

.footer-socials {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-3);
}
.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
}
.footer-socials a:hover {
  background: var(--c-orange);
  transform: translateY(-3px);
}
.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: var(--c-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}


/* =================================================================
   9. WHATSAPP FLOTTANT
   ================================================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: all var(--t-base);
  animation: pulseRing 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  background: #1FB755;
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: var(--c-white);
}
.wa-float__tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-text);
  color: var(--c-white);
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
  pointer-events: none;
}
.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  visibility: visible;
  right: 78px;
}


/* =================================================================
   10. ANIMATIONS
   ================================================================= */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.7; }
}
@keyframes pulseRing {
  0%   { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%  { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Apparition au scroll (classe ajoutée par JS) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =================================================================
   11. RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero__visual { max-width: 420px; margin: 0 auto; justify-self: center; }
  .hero__floating--top { left: 0; }
  .hero__floating--bottom { right: 0; }

  .grid--4, .locations-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}

/* Palier intermédiaire (≤ 1100px, > 768px) : on resserre la barre agrandie
   pour qu'elle tienne sans casser sur les petites tablettes / écrans 1024. */
@media (max-width: 1100px) and (min-width: 769px) {
  .nav { gap: var(--s-3); }
  .nav__menu { gap: 2px; }
  .nav__link { padding: 0.85rem 0.95rem; font-size: 1.02rem; }
  .nav__phone { font-size: 1rem; }
  .nav__phone svg { width: 18px; height: 18px; }
  .nav__cta { gap: var(--s-3); }
  .nav__cta .btn--sm { padding: 0.7rem 1.2rem; font-size: 0.95rem; }
  .nav__logo img { height: 60px; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .nav__menu { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: flex; }

  /* Sur mobile, on cache le bouton "Demander un devis" du header :
     il était trop large à côté du logo + burger sur les petits écrans
     (iPhone SE, etc.) et créait un débordement horizontal qui obligeait
     l'utilisateur à scroller à droite pour atteindre le burger.
     Le même CTA reste accessible dans le footer du drawer mobile. */
  .nav__cta .btn--sm { display: none; }

  /* Resserre la nav et son CTA pour gagner la place restante */
  .nav { gap: var(--s-2); }
  .nav__cta { gap: var(--s-2); }
  .nav__logo img { height: 50px; }

  /* Menu mobile : on garde le nav__menu caché en mobile, le drawer prendra le relais */
  .nav__menu.is-open {
    /* L'ancien comportement est désactivé, on utilise le drawer maintenant */
  }

  .hero { min-height: auto; padding: var(--s-7) 0; }
  .hero__title { font-size: 2.4rem; }
  .hero__subtitle { font-size: 1.05rem; }
  .hero__visual { max-width: 320px; }
  .hero__floating--top, .hero__floating--bottom { display: none; }
  .hero__stats { flex-direction: column; gap: var(--s-3); align-items: flex-start; }

  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .prestations-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .form-row { grid-template-columns: 1fr; }

  .section { padding: var(--s-7) 0; }
  .cta-block { padding: var(--s-6) var(--s-4); }

  .clients-strip { gap: var(--s-4); }
  .clients-strip img { max-height: 50px; }

  .wa-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-float__tooltip { display: none; }

  .footer-bottom { flex-direction: column; text-align: center; gap: var(--s-3); }
}

/* =================================================================
   MOBILE DRAWER — Menu off-canvas pro (slide depuis la droite)
   Indépendant du .nav__menu pour éviter les conflits de styles
   ================================================================= */

/* Overlay sombre derrière le drawer */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer principal */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: #ffffff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}

/* Header du drawer (titre + bouton fermer) */
.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
}
.mobile-drawer__title {
  font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-blue, #0B3D91);
}
.mobile-drawer__close {
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a;
  border-radius: 8px;
  padding: 0;
  transition: background 0.2s;
}
.mobile-drawer__close:hover {
  background: #f5f5f5;
}

/* Body du drawer (liens) */
.mobile-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}

/* Lien simple */
.mobile-drawer__link {
  display: block;
  padding: 1rem 1.5rem;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s, color 0.2s;
}
.mobile-drawer__link:hover {
  background: #f9f9f9;
  color: var(--c-blue, #0B3D91);
}

/* Groupe avec sous-menu */
.mobile-drawer__group {
  border-bottom: 1px solid #f0f0f0;
}
.mobile-drawer__trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1a1a1a;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}
.mobile-drawer__trigger:hover {
  background: #f9f9f9;
  color: var(--c-blue, #0B3D91);
}
.mobile-drawer__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.mobile-drawer__group.is-expanded .mobile-drawer__chevron {
  transform: rotate(180deg);
}

/* Sous-liens (cachés par défaut, visibles si parent .is-expanded) */
.mobile-drawer__sublist {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f7f7f7;
}
.mobile-drawer__group.is-expanded .mobile-drawer__sublist {
  max-height: 600px;
}
.mobile-drawer__sublink {
  display: block;
  padding: 0.75rem 1.5rem 0.75rem 2.5rem;
  color: #444;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.2s, color 0.2s;
}
.mobile-drawer__sublink:last-child {
  border-bottom: none;
}
.mobile-drawer__sublink:hover {
  background: #ffffff;
  color: var(--c-blue, #0B3D91);
}

/* Footer du drawer (CTAs) */
.mobile-drawer__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e5e5e5;
  background: #f9f9f9;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
}
.mobile-drawer__cta--phone {
  background: #ffffff;
  color: var(--c-blue, #0B3D91);
  border: 2px solid var(--c-blue, #0B3D91);
}
.mobile-drawer__cta--phone:hover {
  background: var(--c-blue, #0B3D91);
  color: #ffffff;
}
.mobile-drawer__cta--devis {
  background: var(--c-orange, #FF6B35);
  color: #ffffff;
  border: 2px solid var(--c-orange, #FF6B35);
}
.mobile-drawer__cta--devis:hover {
  background: var(--c-orange-dark, #E5562A);
  border-color: var(--c-orange-dark, #E5562A);
}

/* Sur desktop le drawer ne devrait jamais être visible */
@media (min-width: 769px) {
  .mobile-drawer, .mobile-overlay { display: none; }
}

/* Préférences utilisateur : reduce motion */
@media (prefers-reduced-motion: reduce) {
  .mobile-drawer, .mobile-overlay, .mobile-drawer__sublist, .mobile-drawer__chevron {
    transition: none;
  }
}

@media (max-width: 768px) {
  /* Lisibilité mobile : remonter les petites polices à 0.9rem (~14.4px) minimum
     pour respecter les guidelines Google de confort de lecture sur mobile */
  .eyebrow,
  .hero__floating span,
  .trust-item span,
  .zone-card span,
  .footer-bottom,
  .badge {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 var(--s-4); }
  .hero__title { font-size: 2rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; }
}

/* Préférences utilisateur : reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .wa-float { animation: none; }
}

/* =================================================================
   BANDEAU COOKIES RGPD (Google Analytics 4)
   ================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--c-white);
  color: var(--c-text);
  padding: var(--s-5);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid var(--c-border);
  z-index: 9999;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: var(--s-2);
  color: var(--c-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-banner__text {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: var(--s-4);
  color: var(--c-text);
}
.cookie-banner__text a {
  color: var(--c-orange);
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner__buttons {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.cookie-banner__btn {
  flex: 1;
  min-width: 120px;
  padding: 0.85rem 1.2rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  text-align: center;
}
.cookie-banner__btn--accept {
  background: var(--c-orange);
  color: var(--c-white);
}
.cookie-banner__btn--accept:hover {
  background: var(--c-orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}
.cookie-banner__btn--refuse {
  background: var(--c-bg-soft);
  color: var(--c-text);
  border-color: var(--c-border);
}
.cookie-banner__btn--refuse:hover {
  background: var(--c-border);
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: var(--s-4);
  }
  .cookie-banner__buttons {
    flex-direction: column;
  }
  .cookie-banner__btn {
    width: 100%;
  }
}

/* =================================================================
   ANIM-CARD — Grille de cartes avec vraies photos différentes
   ================================================================= */
.anim-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-5);
}

.anim-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-border);
}
.anim-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.anim-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-bg-soft);
}
.anim-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.anim-card:hover .anim-card__media img {
  transform: scale(1.05);
}

.anim-card__body {
  padding: var(--s-4) var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}

.anim-card__tag {
  display: inline-block;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  align-self: flex-start;
  margin-bottom: 4px;
}

.anim-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--c-blue);
  margin: 0;
  line-height: 1.3;
}

.anim-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--c-text-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .anim-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
}
@media (max-width: 600px) {
  .anim-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   SINGLE-OFFER — Layout pour pages à une seule prestation
   ================================================================= */
.single-offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
  margin-top: var(--s-5);
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.single-offer__media {
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  position: relative;
}
.single-offer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-offer__body {
  padding: var(--s-6);
}
.single-offer__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--c-blue);
  margin: 0 0 var(--s-3) 0;
  line-height: 1.2;
}
.single-offer__desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-text);
  margin: 0 0 var(--s-4) 0;
}
.single-offer__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.single-offer__features li {
  font-size: 0.98rem;
  line-height: 1.5;
  padding-left: 32px;
  position: relative;
  color: var(--c-text);
}
.single-offer__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--c-orange);
  color: var(--c-white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}
.single-offer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 1.6rem;
  background: var(--c-orange);
  color: var(--c-white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: all var(--t-base);
  border: 2px solid var(--c-orange);
}
.single-offer__cta:hover {
  background: var(--c-orange-dark);
  border-color: var(--c-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}

@media (max-width: 768px) {
  .single-offer { grid-template-columns: 1fr; }
  .single-offer__media { min-height: 260px; }
  .single-offer__body { padding: var(--s-4); }
  .single-offer__title { font-size: 1.4rem; }
}
