/* ============================================================
   Happy Déco 06 — Glass Mirror UI — Version Blanche
   Direction : moderne, lumineux, glassmorphisme blanc
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --bg:       #eef2ff;
  --surface:  rgba(255, 255, 255, 0.70);

  --ink:      #111827;
  --muted:    #6b7280;
  --faint:    #9ca3af;

  --line:     rgba(31, 58, 138, 0.08);
  --line2:    rgba(31, 58, 138, 0.05);

  --primary:      #1f3a8a;
  --primary-dark: #172e72;
  --primary-rgb:  31, 58, 138;

  --accent:       #c6a15b;
  --accent-light: rgba(198, 161, 91, 0.12);
  --accent-border: rgba(198, 161, 91, 0.28);

  --green:    #16a34a;
  --wa:       #25d366;

  /* Glass tokens blanc */
  --glass-bg:     rgba(255, 255, 255, 0.65);
  --glass-hover:  rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.90);
  --glass-inset:  inset 0 1px 0 rgba(255, 255, 255, 0.95);

  --shadow-sm: 0 2px 12px rgba(31, 58, 138, 0.07);
  --shadow:    0 8px 32px rgba(31, 58, 138, 0.10);
  --shadow-lg: 0 20px 60px rgba(31, 58, 138, 0.14);

  --radius:   16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --max: 1140px;
  --section-pad: 96px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Fond blanc lumineux avec orbes de couleur douces */
  background-image:
    radial-gradient(ellipse 900px 600px at 5% -5%,  rgba(198, 161, 91, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 95% 10%, rgba(31, 58, 138, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 600px 400px at 50% 90%, rgba(59, 111, 248, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
blockquote { font-style: normal; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 242, 255, 0.60);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 0 rgba(31,58,138,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }

.logo-img {
  height: 58px;
  width: 58px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(31,58,138,0.18), var(--glass-inset);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.logo-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: var(--primary);
  line-height: 1.1;
}
.logo-accent { color: var(--accent); }
.logo-sub {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(17,24,39,0.70);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-link:hover { background: rgba(255,255,255,0.80); color: var(--primary); }
.nav-link:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.nav-link--active { color: var(--primary) !important; background: rgba(255,255,255,0.80); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.15s;
}
.nav-toggle:hover { background: rgba(31,58,138,0.06); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.btn:active { transform: scale(0.98); }

.btn-lg { padding: 13px 24px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #2b4fd8 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(var(--primary-rgb), 0.30), var(--glass-inset);
  border-color: rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.40), var(--glass-inset);
}

.btn-ghost {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-color: var(--glass-border);
  color: var(--ink);
  box-shadow: var(--shadow-sm), var(--glass-inset);
}
.btn-ghost:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.95);
  transform: translateY(-1px);
  box-shadow: var(--shadow), var(--glass-inset);
}

.btn-whatsapp {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,0.30), var(--glass-inset);
}
.btn-whatsapp:hover {
  background: #1fba58;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.40), var(--glass-inset);
}

/* ===== SECTION BASE ===== */
.section { padding: var(--section-pad) 0; }
.section--alt {
  background: rgba(255,255,255,0.40);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.section--cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 600px at 80% 50%, rgba(198,161,91,0.12), transparent 60%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label--light { color: rgba(198,161,91,0.85); }
.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: var(--ink);
}
.section-title--light { color: #fff; }
.section-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
  padding: 72px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 500px at 0% 0%, rgba(198,161,91,0.10), transparent 60%),
    radial-gradient(600px 400px at 100% -20%, rgba(31,58,138,0.08), transparent 55%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--accent-border);
  font-size: 12px;
  font-weight: 700;
  color: rgba(17,24,39,0.85);
  letter-spacing: 0.2px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm), var(--glass-inset);
}
.kicker-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(198,161,91,0.22);
  animation: pulse-gold 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 4px rgba(198,161,91,0.22); }
  50%       { box-shadow: 0 0 0 8px rgba(198,161,91,0.06); }
}

/* Heading */
.hero-content h1 {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.2px;
  color: var(--ink);
}
.hero-grad {
  background: linear-gradient(135deg, var(--primary) 20%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  margin-top: 20px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 52ch;
}
.hero-desc strong { color: var(--ink); font-weight: 700; }

/* Actions */
.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Trust badges */
.hero-trust {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm), var(--glass-inset);
}

/* Hero card — panneau glass miroir blanc */
.hero-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--glass-inset);
  overflow: hidden;
  position: relative;
}
/* Reflet miroir blanc en haut */
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  z-index: 1;
}
.hero-card-header {
  padding: 16px 18px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(31,58,138,0.06);
  position: relative;
  z-index: 2;
}
.hero-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }
  50%       { box-shadow: 0 0 0 7px rgba(22,163,74,0.06); }
}
.insta-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #e1306c;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(225,48,108,0.08);
  border: 1px solid rgba(225,48,108,0.16);
  transition: background 0.2s;
  position: relative;
  z-index: 2;
}
.insta-badge:hover { background: rgba(225,48,108,0.14); }

/* Grille miniatures hero */
.hero-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 16px;
  position: relative;
  z-index: 2;
}
.gallery-thumb {
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: rgba(31,58,138,0.04);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.25s ease;
  border: 1px solid var(--glass-border);
}
.gallery-thumb:hover { transform: scale(1.04); }

/* Galerie photos locale (Réalisations) */
.gallery-local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 0;
}
.gallery-local-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}
.gallery-local-item--wide {
  grid-column: span 2;
}
.gallery-local-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-local-item--wide img {
  height: 300px;
}
.gallery-local-item:hover img { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(10,15,40,0.70));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero-card-footer {
  padding: 12px 18px;
  border-top: 1px solid rgba(31,58,138,0.06);
  text-align: center;
  position: relative;
  z-index: 2;
}
.see-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.15s;
}
.see-more:hover { color: var(--accent); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 50% 120%, rgba(198,161,91,0.15), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-number {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.stat-star { color: var(--accent); font-size: clamp(24px, 3vw, 38px); }
.stat-text { color: var(--accent); }
.stat-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow), var(--glass-inset);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* Reflet miroir blanc */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--glass-inset);
  border-color: rgba(255,255,255,0.98);
  background: var(--glass-hover);
}

.service-card--featured {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: rgba(255,255,255,0.18);
  box-shadow: var(--shadow-lg), var(--glass-inset);
}
.service-card--featured:hover {
  border-color: rgba(255,255,255,0.30);
  box-shadow: 0 24px 56px rgba(var(--primary-rgb), 0.35), var(--glass-inset);
}
.service-card--featured h3,
.service-card--featured p { color: rgba(255,255,255,0.95); }
.service-card--featured .service-list li { color: rgba(255,255,255,0.75); }
.service-card--featured .service-list li::before { background: rgba(198,161,91,0.80); }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm), var(--glass-inset);
  position: relative;
  z-index: 1;
}
.service-icon--light {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}

.service-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  width: fit-content;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.service-tag--light {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
  color: rgba(198,161,91,0.90);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.service-list li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.15s, gap 0.2s;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.service-cta:hover { color: var(--accent); gap: 8px; }
.service-cta--light { color: rgba(198,161,91,0.90); }
.service-cta--light:hover { color: #fff; }

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  margin-top: 0;
}
.filter-btn {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--muted);
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm), var(--glass-inset);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn--active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.filter-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--glass-border);
}
.gallery-item:hover { transform: scale(1.01); box-shadow: var(--shadow); }

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--glass-bg);
  text-align: center;
  padding: 16px;
}
.gallery-item[style*="background-image"] .gallery-placeholder { display: none; }

.gallery-emoji { font-size: 32px; }
.gallery-placeholder > span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
}
.gallery-placeholder small { font-size: 10px; color: var(--faint); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item[style*="background-image"] .gallery-overlay { opacity: 0.85; }
.gallery-item[style*="background-image"]:hover .gallery-overlay { opacity: 1; }

.gallery-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(198,161,91,0.20);
  border: 1px solid rgba(198,161,91,0.35);
  padding: 4px 10px;
  border-radius: 999px;
}
.gallery-desc {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
}

.gallery-cta {
  margin-top: 36px;
  text-align: center;
}

/* ===== REELS ===== */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.reel-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.reel-item .instagram-media {
  border-radius: var(--radius-lg) !important;
  width: 100% !important;
  min-width: 0 !important;
}
.reel-placeholder {
  aspect-ratio: 9/16;
  min-height: 400px;
}
.reel-add {
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(31,58,138,0.12);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--faint);
  text-align: center;
  padding: 24px;
  transition: border-color 0.2s, background 0.2s;
  box-shadow: var(--shadow-sm), var(--glass-inset);
}
.reel-add:hover { border-color: var(--accent-border); background: var(--glass-hover); }
.reel-add svg { color: var(--faint); }
.reel-add p { font-size: 13px; font-weight: 600; color: var(--muted); line-height: 1.6; }
.reel-add small { font-size: 11px; color: var(--faint); }

.reels-grid--posts {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .reels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .reels-grid { grid-template-columns: 1fr; }
  .reels-grid--posts { grid-template-columns: 1fr; }
  .reel-placeholder { display: none; }
}

/* ===== TESTIMONIALS — INVITE AVIS ===== */
.review-invite-wrap {
  display: flex;
  justify-content: center;
}
.review-invite-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg), var(--glass-inset);
  text-align: center;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
/* Reflet miroir */
.review-invite-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.review-invite-stars {
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 4px;
}
.review-invite-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.review-invite-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
}
.review-invite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

/* ===== À PROPOS ===== */
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.apropos-content { display: flex; flex-direction: column; gap: 16px; }
.apropos-content .section-label { margin-bottom: 0; }
.apropos-content .section-title { text-align: left; margin: 0; }
.apropos-content > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm), var(--glass-inset);
}
.trust-badge svg { color: var(--green); flex-shrink: 0; }
.apropos-cta { margin-top: 8px; width: fit-content; }

.apropos-visual { display: flex; flex-direction: column; gap: 20px; }

/* Instagram card (À propos) */
.apropos-insta-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow), var(--glass-inset);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
/* Reflet miroir */
.apropos-insta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(255,255,255,0.50) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.apropos-insta-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--glass-inset);
}
.apropos-insta-top {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.apropos-insta-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
  overflow: hidden;
  flex-shrink: 0;
}
.apropos-insta-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.apropos-insta-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}
.apropos-insta-info strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}
.apropos-insta-info span {
  font-size: 12px;
  color: var(--muted);
}
.apropos-insta-arrow {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
  position: relative;
  z-index: 1;
}
.apropos-insta-card:hover .apropos-insta-arrow { transform: translateX(4px); }
.apropos-insta-cta {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.apropos-insta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #bc1888;
  background: rgba(188,24,136,0.07);
  border: 1px solid rgba(188,24,136,0.14);
  border-radius: 999px;
  padding: 7px 14px;
  width: fit-content;
  position: relative;
  z-index: 1;
}

/* photo de l'équipe quand disponible */
.apropos-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
}

.apropos-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zone-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--ink);
  box-shadow: var(--shadow-sm), var(--glass-inset);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(31,58,138,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(31,58,138,0.08); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  gap: 16px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--primary); }
.faq-question:focus-visible { outline: 2px solid var(--primary); border-radius: 4px; }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease, background 0.2s;
  color: var(--accent);
}
.faq-icon::before { content: '+'; font-weight: 800; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); border-color: var(--primary); color: #fff; }
.faq-item.open .faq-question { color: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 22px;
}
.faq-answer p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 4px;
}

/* ===== DEVIS / CONTACT ===== */
.devis-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.devis-info { display: flex; flex-direction: column; gap: 16px; }
.devis-info .section-title { text-align: left; }
.devis-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--glass-inset);
  transition: background 0.2s, transform 0.15s;
}
.contact-item:hover { background: rgba(255,255,255,0.18); transform: translateX(4px); }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
  box-shadow: var(--glass-inset);
}
.contact-icon--insta { background: rgba(225,48,108,0.20); color: #f06292; }
.contact-icon--tiktok { background: rgba(139,92,246,0.20); color: #a78bfa; }
.contact-item:has(.contact-icon--tiktok):hover .contact-icon--tiktok { background: rgba(139,92,246,0.35); color: #c4b5fd; }
.contact-item strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.contact-item span { font-size: 12px; color: rgba(255,255,255,0.50); }
.devis-wa { margin-top: 8px; }

/* Formulaire glass blanc */
.devis-form-wrap {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg), var(--glass-inset);
  position: relative;
  overflow: hidden;
}
/* Reflet miroir formulaire */
.devis-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.60) 0%, transparent 100%);
  pointer-events: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.form-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(31,58,138,0.12);
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--faint);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(var(--primary-rgb), 0.50);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.08);
  background: rgba(255,255,255,0.90);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--faint);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.form-success {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.25);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
footer {
  background: #0d1f52;
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand img { opacity: 0.9; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.50);
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.60);
  transition: background 0.2s, color 0.2s;
  box-shadow: var(--glass-inset);
}
.social-link:hover { background: rgba(225,48,108,0.25); color: #f06292; }
.social-link--tiktok:hover { background: rgba(139,92,246,0.25); color: #a78bfa; }

.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav h3, .footer-contact h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.footer-nav a, .footer-contact a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.60);
  transition: color 0.15s;
  width: fit-content;
}
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.40); margin-top: 4px; line-height: 1.7; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.30);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate="fade-up"] { transform: translateY(28px); }
[data-animate="fade-left"] { transform: translateX(28px); }
[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .hero-grid { grid-template-columns: 1fr 0.85fr; gap: 24px; }
  .apropos-grid { gap: 40px; }
  .devis-grid { grid-template-columns: 1fr 1.2fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 860px) {
  :root { --section-pad: 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .review-invite-card { padding: 32px 20px; }
  .review-invite-actions { flex-direction: column; align-items: stretch; }
  .apropos-grid { grid-template-columns: 1fr; }
  .devis-grid { grid-template-columns: 1fr; }
  .devis-form-wrap { order: -1; }
  .gallery-local-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-local-item--wide { grid-column: span 2; }
  .gallery-local-item img { height: 200px; }
  .gallery-local-item--wide img { height: 240px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item:nth-child(3)::before,
  .stat-item:nth-child(4)::before { display: none; }
  .stat-item { padding: 24px 16px; }
  .stats-bar { padding: 32px 0; }
  .trust-badges { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .devis-info .section-title { font-size: 28px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(238, 242, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    gap: 4px;
    display: none;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 15px;
  }
  .nav-cta { margin: 8px 0 0; border-radius: 12px; text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery-item--wide { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
  :root { --section-pad: 44px; }
  .container { padding: 0 16px; }
  .hero { padding: 48px 0 32px; }
  .hero-content h1 { font-size: 34px; }
  .section-title { font-size: 26px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .devis-form-wrap { padding: 24px 20px; }
  .gallery-local-grid { grid-template-columns: 1fr; }
  .gallery-local-item--wide { grid-column: span 1; }
  .gallery-local-item img,
  .gallery-local-item--wide img { height: 220px; }
}

/* ===== FOCUS STYLES (accessibilité) ===== */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   ANIMATIONS PREMIUM
   ============================================================ */

/* ── 1. GRADIENT HERO ANIMÉ ── */
@keyframes gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
.hero-grad {
  background: linear-gradient(135deg, var(--primary) 0%, #818cf8 30%, var(--accent) 60%, var(--primary) 100%);
  background-size: 300% 300%;
  animation: gradient-flow 5s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── 2. HERO CARD — FLOATING DOUX ── */
@keyframes float-card {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(0.4deg); }
  66%       { transform: translateY(-7px) rotate(-0.3deg); }
}
.hero-card { animation: float-card 7s ease-in-out infinite; }

/* ── 3. SHIMMER SWEEP AU HOVER ── */
.service-card::after,
.review-invite-card::after,
.apropos-insta-card::after,
.trust-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.40) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  pointer-events: none;
  z-index: 20;
  border-radius: inherit;
}
.service-card:hover::after,
.review-invite-card:hover::after,
.apropos-insta-card:hover::after,
.trust-badge:hover::after {
  animation: shimmer-sweep 0.75s ease forwards;
}
@keyframes shimmer-sweep {
  to { transform: translateX(220%); }
}

/* ── 4. SPARKLES DANS LE HERO ── */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 8%  20%, rgba(198,161,91,0.75) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 65%, rgba(198,161,91,0.55) 0%, transparent 100%),
    radial-gradient(2px 2px at 48% 12%, rgba(31,58,138,0.60)  0%, transparent 100%),
    radial-gradient(1px 1px at 63% 50%, rgba(198,161,91,0.65) 0%, transparent 100%),
    radial-gradient(2px 2px at 82% 30%, rgba(31,58,138,0.50)  0%, transparent 100%),
    radial-gradient(1px 1px at 15% 82%, rgba(198,161,91,0.50) 0%, transparent 100%),
    radial-gradient(1px 1px at 38% 40%, rgba(31,58,138,0.40)  0%, transparent 100%),
    radial-gradient(2px 2px at 90% 70%, rgba(198,161,91,0.60) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 85%, rgba(31,58,138,0.45)  0%, transparent 100%),
    radial-gradient(2px 2px at 72% 8%,  rgba(198,161,91,0.55) 0%, transparent 100%);
  animation: sparkle-twinkle 3.5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes sparkle-twinkle {
  0%   { opacity: 0.25; transform: scale(0.97); }
  50%  { opacity: 1;    transform: scale(1.03); }
  100% { opacity: 0.20; transform: scale(1); }
}

/* ── 5. BUTTON PRIMARY — GLOW PULSÉ ── */
@keyframes btn-glow {
  0%, 100% { box-shadow: 0 4px 18px rgba(var(--primary-rgb), 0.30), var(--glass-inset); }
  50%       { box-shadow: 0 4px 32px rgba(var(--primary-rgb), 0.58), 0 0 55px rgba(var(--primary-rgb), 0.18), var(--glass-inset); }
}
.btn-primary { animation: btn-glow 3.5s ease-in-out infinite; }
.btn-primary:hover { animation: none; }

/* ── 6. SECTION LABEL — LIGNE DORÉE ANIMÉE ── */
.section-label {
  position: relative;
}
.section-label::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 999px;
  margin: 8px auto 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.animated .section-label::after,
.section-header.animated .section-label::after {
  width: 44px;
}

/* ── 7. NAV LINK — UNDERLINE DORÉ ANIMÉ ── */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.28s ease;
}
.nav-link:hover::after  { width: 16px; }
.nav-link--active::after { width: 16px; }

/* ── 8. ÉTOILES — GLOW ANIMÉ ── */
@keyframes stars-glow {
  0%, 100% { text-shadow: 0 0 6px rgba(198,161,91,0.28); filter: brightness(1); }
  50%       { text-shadow: 0 0 24px rgba(198,161,91,0.75), 0 0 50px rgba(198,161,91,0.25); filter: brightness(1.18); }
}
.review-invite-stars { animation: stars-glow 2.5s ease-in-out infinite; }

/* ── 9. LOGO — SHINE SUBTIL ── */
@keyframes logo-shine {
  0%, 85%, 100% { filter: brightness(1) drop-shadow(0 0 0 transparent); }
  92%            { filter: brightness(1.15) drop-shadow(0 0 10px rgba(198,161,91,0.40)); }
}
.logo-img { animation: logo-shine 6s ease-in-out infinite; }

/* ── 10. KICKER — LÉVITATION DOUCE ── */
@keyframes kicker-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
.kicker { animation: kicker-float 4.5s ease-in-out infinite; }

/* ── 11. SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 50%, var(--accent) 100%);
  background-size: 200% 100%;
  animation: progress-shimmer 2s linear infinite;
  z-index: 9999;
  border-radius: 0 999px 999px 0;
  box-shadow: 0 0 12px rgba(198,161,91,0.65), 0 0 4px rgba(198,161,91,0.90);
  transition: width 0.1s linear;
}
@keyframes progress-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── 12. CURSOR GLOW ── */
#cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,161,91,0.07) 0%, rgba(31,58,138,0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  mix-blend-mode: multiply;
}

/* ── 13. RIPPLE SUR LES BOUTONS ── */
@keyframes ripple-expand {
  to { transform: scale(3); opacity: 0; }
}

/* ── 14. CONTACT ITEM — BARRE LATÉRALE ANIMÉE ── */
.contact-item {
  position: relative;
  overflow: hidden;
}
.contact-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  transform: scaleY(0);
  transform-origin: bottom;
  border-radius: 0 2px 2px 0;
  transition: transform 0.30s ease;
}
.contact-item:hover::before { transform: scaleY(1); }

/* ── 15. ZONE BADGES — POP AU HOVER ── */
@keyframes badge-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.12); }
  70%  { transform: scale(0.96); }
  100% { transform: scale(1); }
}
.zone-badge:hover { animation: badge-pop 0.45s ease; }

/* ── 16. GALLERY ITEMS — OVERLAY SHIMMER ── */
.gallery-local-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.18) 50%,
    transparent 70%
  );
  transform: translateX(-150%);
  pointer-events: none;
  z-index: 5;
  border-radius: 16px;
}
.gallery-local-item:hover::after {
  animation: shimmer-sweep 0.8s ease forwards;
}

/* ── 17. TILT 3D — transition smooth ── */
.service-card,
.hero-card,
.review-invite-card,
.apropos-insta-card {
  will-change: transform;
  transition: transform 0.08s linear, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.service-card.tilt-leave,
.hero-card.tilt-leave,
.review-invite-card.tilt-leave,
.apropos-insta-card.tilt-leave {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

/* ── 18. STAT NUMBERS — TEXT GLOW ── */
.stat-number { text-shadow: 0 0 30px rgba(255,255,255,0.20); }
.stat-star    { text-shadow: 0 0 20px rgba(198,161,91,0.55); }

/* ── 19. STAGGER POUR LES CARTES ── */
.services-grid .service-card:nth-child(1) { transition-delay: 0ms !important; }
.services-grid .service-card:nth-child(2) { transition-delay: 80ms !important; }
.services-grid .service-card:nth-child(3) { transition-delay: 160ms !important; }

/* ── 20. FAQ ITEM — SLIDE INDICATOR ── */
.faq-question::before {
  content: '';
  position: absolute;
  left: -4px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.3s ease, height 0.3s ease;
}
.faq-item.open .faq-question::before {
  width: 3px; height: 24px;
}
.faq-question { position: relative; }

/* ── 21. SERVICE ICON — SPIN AU HOVER ── */
@keyframes icon-spin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(8deg) scale(1.08); }
  100% { transform: rotate(0deg) scale(1); }
}
.service-card:hover .service-icon {
  animation: icon-spin 0.5s ease;
}

/* ── 22. HERO TRUST ITEMS — ENTRÉE STAGGER ── */
.hero-trust .trust-item {
  opacity: 0;
  transform: translateY(10px);
  animation: trust-in 0.5s ease forwards;
}
.hero-trust .trust-item:nth-child(1) { animation-delay: 0.5s; }
.hero-trust .trust-item:nth-child(2) { animation-delay: 0.65s; }
.hero-trust .trust-item:nth-child(3) { animation-delay: 0.80s; }
@keyframes trust-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ── 23. CHATBOT ASSISTANT ── */
.chatbot {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

/* Bouton flottant */
.chatbot-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.chatbot-toggle:hover {
  transform: scale(1.06);
  box-shadow: 0 24px 56px rgba(var(--primary-rgb), 0.35);
}
.chatbot-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.chatbot-toggle svg {
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.chatbot-toggle .icon-close {
  opacity: 0;
  transform: scale(0.4) rotate(-45deg);
}
.chatbot.open .chatbot-toggle .icon-chat {
  opacity: 0;
  transform: scale(0.4) rotate(45deg);
}
.chatbot.open .chatbot-toggle .icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.chatbot-toggle.attention {
  animation: chatbot-bounce 1.8s ease infinite;
}
@keyframes chatbot-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.chatbot-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px #fff;
}
.chatbot-badge[hidden] { display: none; }

/* Bulle d'invitation */
.chatbot-teaser {
  position: absolute;
  bottom: 74px;
  right: 0;
  max-width: 230px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 32px 12px 14px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink);
  cursor: pointer;
  animation: chatbot-teaser-in 0.35s ease;
}
.chatbot-teaser[hidden] { display: none; }
@keyframes chatbot-teaser-in {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to   { opacity: 1; transform: none; }
}
.chatbot-teaser-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  color: var(--faint);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.chatbot-teaser-close:hover { background: var(--line); color: var(--ink); }

/* Fenêtre de discussion */
.chatbot-window {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  animation: chatbot-pop 0.22s ease;
}
.chatbot-window[hidden] { display: none; }
@keyframes chatbot-pop {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  flex-shrink: 0;
}
.chatbot-avatar {
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  flex-shrink: 0;
}
.chatbot-header-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}
.chatbot-header-text strong { font-size: 14.5px; }
.chatbot-header-text span {
  font-size: 12px;
  opacity: 0.88;
  display: flex;
  align-items: center;
  gap: 5px;
}
.chatbot-header-text span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wa);
  display: inline-block;
}
.chatbot-close {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  flex-shrink: 0;
}
.chatbot-close:hover { background: rgba(255,255,255,0.15); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f6f7fb;
}

.chatbot-msg {
  max-width: 84%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  white-space: pre-line;
  animation: chatbot-msg-in 0.2s ease;
}
@keyframes chatbot-msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.chatbot-msg--bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.chatbot-msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chatbot-typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 13px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}
.chatbot-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--faint);
  animation: chatbot-typing-bounce 1.2s infinite ease-in-out;
}
.chatbot-typing span:nth-child(2) { animation-delay: 0.15s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatbot-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 12px;
  flex-shrink: 0;
}
.chatbot-quick-replies:empty { display: none; padding: 0; }
.chatbot-chip {
  border: 1px solid var(--accent-border);
  background: var(--accent-light);
  color: var(--primary-dark);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.chatbot-chip:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.chatbot-input-row {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #fff;
  flex-shrink: 0;
}
.chatbot-input-row input {
  flex: 1;
  min-width: 0;
  border: 1px solid #dfe3ea;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}
.chatbot-input-row input:focus { border-color: var(--primary); }
.chatbot-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.chatbot-send:hover { transform: scale(1.08); }
.chatbot-send:disabled { opacity: 0.5; cursor: default; transform: none; }

@media (max-width: 480px) {
  .chatbot { right: 12px; bottom: 12px; }
  .chatbot-window {
    width: calc(100vw - 24px);
    height: calc(100vh - 104px);
    bottom: 72px;
  }
  .chatbot-teaser { max-width: 200px; }
}
