/* =============================================
   ACP - Cabinet Autisme & Vie
   Palette : Bleu #1A3A6B, Blanc #FFFFFF, Vert #2E8B57, Doré #C9A84C
   Style : Professionnel, Chaleureux, Créatif
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- VARIABLES ---- */
:root {
  --bleu:       #1A3A6B;
  --bleu-clair: #2756A0;
  --bleu-pale:  #EBF0F9;
  --vert:       #2E8B57;
  --vert-clair: #3DA86C;
  --dore:       #C9A84C;
  --dore-clair: #E2C06C;
  --blanc:      #FFFFFF;
  --gris-clair: #F7F9FC;
  --gris:       #6B7280;
  --texte:      #1F2937;
  --radius:     12px;
  --ombre:      0 4px 24px rgba(26,58,107,0.10);
  --ombre-forte:0 8px 40px rgba(26,58,107,0.18);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--bleu);
}

/* ---- UTILITAIRES ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 90px 0; }
.text-center { text-align: center; }

.badge {
  display: inline-block;
  background: var(--bleu-pale);
  color: var(--bleu);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.badge.vert { background: #E6F4ED; color: var(--vert); }
.badge.dore { background: #FBF5E6; color: #9A7428; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--gris);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 48px;
}

/* ---- BOUTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--bleu);
  color: var(--blanc);
}
.btn-primary:hover { background: var(--bleu-clair); transform: translateY(-2px); box-shadow: var(--ombre-forte); }

.btn-secondary {
  background: var(--blanc);
  color: var(--bleu);
  border: 2px solid var(--bleu);
}
.btn-secondary:hover { background: var(--bleu); color: var(--blanc); transform: translateY(-2px); }

.btn-dore {
  background: var(--dore);
  color: var(--blanc);
}
.btn-dore:hover { background: var(--dore-clair); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

.btn-whatsapp {
  background: #25D366;
  color: var(--blanc);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ---- NAVIGATION ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,58,107,0.08);
  transition: var(--transition);
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(26,58,107,0.12); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 46px;
  height: 46px;
  background: var(--bleu);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* REMPLACER PAR LOGO CLIENT */
}
.nav-logo-icon svg { width: 26px; height: 26px; fill: var(--blanc); }
.nav-logo-text { line-height: 1.2; }
.nav-logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--bleu); font-weight: 700; }
.nav-logo-text .sub { font-size: 0.72rem; color: var(--gris); letter-spacing: 0.05em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texte);
}
.nav-links a:hover, .nav-links a.active { color: var(--bleu); background: var(--bleu-pale); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.85rem; }

#burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
#burger span { display: block; width: 24px; height: 2px; background: var(--bleu); border-radius: 2px; transition: var(--transition); }

/* ---- HERO ---- */
#hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #EBF0F9 0%, #F0F7F3 60%, #FBF8EE 100%);
}
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}
.hero-bg-shape.s1 { width: 600px; height: 600px; background: var(--bleu); top: -200px; right: -150px; }
.hero-bg-shape.s2 { width: 400px; height: 400px; background: var(--vert); bottom: -100px; left: -100px; }
.hero-bg-shape.s3 { width: 200px; height: 200px; background: var(--dore); top: 40%; right: 30%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--vert);
}
.hero-content .hero-desc {
  font-size: 1.1rem;
  color: var(--gris);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; gap: 32px; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--bleu); display: block; }
.stat-label { font-size: 0.78rem; color: var(--gris); text-transform: uppercase; letter-spacing: 0.05em; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-wrap {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--ombre-forte);
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  /* REMPLACER PAR PHOTO CLIENT */
}
.hero-badge-float {
  position: absolute;
  background: var(--blanc);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--ombre-forte);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-float.f1 { bottom: -20px; left: -20px; }
.hero-badge-float.f2 { top: -20px; right: -20px; }
.hero-badge-float .icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.hero-badge-float .icon.bleu { background: var(--bleu-pale); }
.hero-badge-float .icon.vert { background: #E6F4ED; }
.hero-badge-float .icon svg { width: 20px; height: 20px; }
.hero-badge-float .txt strong { display: block; font-size: 1rem; color: var(--bleu); }
.hero-badge-float .txt span { font-size: 0.75rem; color: var(--gris); }

/* ---- SECTION MISSION ---- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.mission-card {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--ombre);
  border-top: 4px solid transparent;
  transition: var(--transition);
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--ombre-forte); }
.mission-card.bleu { border-top-color: var(--bleu); }
.mission-card.vert { border-top-color: var(--vert); }
.mission-card.dore { border-top-color: var(--dore); }
.mission-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mission-icon.bleu { background: var(--bleu-pale); }
.mission-icon.vert { background: #E6F4ED; }
.mission-icon.dore { background: #FBF5E6; }
.mission-icon svg { width: 28px; height: 28px; }
.mission-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.mission-card p { color: var(--gris); font-size: 0.92rem; }

/* ---- SECTION SERVICES ---- */
#services { background: var(--gris-clair); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--ombre);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bleu), var(--vert));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--ombre-forte); }
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--bleu-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card-icon svg { width: 26px; height: 26px; fill: var(--bleu); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { color: var(--gris); font-size: 0.88rem; line-height: 1.6; }

/* ---- SECTION A PROPOS ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ombre-forte);
  position: relative;
}
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; /* REMPLACER PAR PHOTO CLIENT */ }
.about-img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--blanc);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--ombre);
  text-align: center;
}
.about-img-badge .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--bleu); }
.about-img-badge .lbl { font-size: 0.75rem; color: var(--gris); }

.about-content .section-title { text-align: left; }
.about-content .section-subtitle { text-align: left; margin: 0 0 28px; }
.about-content p { color: var(--gris); margin-bottom: 16px; }
.about-list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
}
.about-list li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--vert); margin-top: 2px; }

.equipe-mini { margin-top: 40px; }
.equipe-mini h4 { font-size: 1.1rem; margin-bottom: 16px; }
.equipe-mini .experts { display: flex; flex-wrap: wrap; gap: 10px; }
.expert-tag {
  background: var(--bleu-pale);
  color: var(--bleu);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ---- SECTION TEMOIGNAGES ---- */
#temoignages { background: linear-gradient(135deg, var(--bleu) 0%, #0F2550 100%); }
#temoignages .badge { background: rgba(255,255,255,0.15); color: var(--blanc); }
#temoignages .section-title { color: var(--blanc); }
#temoignages .section-subtitle { color: rgba(255,255,255,0.7); }

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.temoignage-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px 26px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.temoignage-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.temoignage-stars { color: var(--dore); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.temoignage-card p { color: rgba(255,255,255,0.85); font-size: 0.93rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.temoignage-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--dore);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--blanc);
  font-weight: 700;
  flex-shrink: 0;
}
.author-info strong { display: block; color: var(--blanc); font-size: 0.9rem; }
.author-info span { color: rgba(255,255,255,0.55); font-size: 0.78rem; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--vert) 0%, #1A6B40 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--blanc); font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- SECTION GALERIE ---- */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.galerie-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bleu-pale);
}
.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  /* REMPLACER PAR PHOTO CLIENT */
}
.galerie-item:hover img { transform: scale(1.05); }
.galerie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,107,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-overlay svg { width: 36px; height: 36px; fill: var(--blanc); }

/* ---- SECTION CONTACT ---- */
#contact { background: var(--gris-clair); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-info > p { color: var(--gris); margin-bottom: 30px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  width: 46px; height: 46px;
  background: var(--bleu-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; fill: var(--bleu); }
.contact-item-text strong { display: block; font-size: 0.85rem; color: var(--gris); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.contact-item-text a, .contact-item-text p { font-size: 0.95rem; }

.horaires-box {
  background: var(--blanc);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--ombre);
  margin-bottom: 24px;
}
.horaires-box h4 { font-size: 1rem; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.horaires-box h4 svg { width: 18px; height: 18px; fill: var(--bleu); }
.horaires-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 5px 0; border-bottom: 1px solid var(--gris-clair); }
.horaires-row:last-child { border: none; }

.contact-form-wrap {
  background: var(--blanc);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--ombre-forte);
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--texte); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E5E9F0;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  background: var(--gris-clair);
  transition: var(--transition);
  color: var(--texte);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bleu);
  background: var(--blanc);
  box-shadow: 0 0 0 4px rgba(26,58,107,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.form-note { font-size: 0.78rem; color: var(--gris); text-align: center; margin-top: 12px; }

/* ---- MAPS ---- */
.map-section { height: 380px; background: var(--gris-clair); overflow: hidden; }
.map-section iframe { width: 100%; height: 100%; border: none; }
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gris);
  background: var(--bleu-pale);
}
.map-placeholder svg { width: 48px; height: 48px; fill: var(--bleu-clair); opacity: 0.5; }

/* ---- FOOTER ---- */
#footer {
  background: #0D2045;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .logo-box {
  width: 44px; height: 44px;
  background: var(--bleu-clair);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.footer-brand .logo-box svg { width: 24px; height: 24px; fill: var(--blanc); }
.footer-brand .brand-txt { line-height: 1.2; }
.footer-brand .brand-txt strong { display: block; color: var(--blanc); font-size: 1rem; font-family: 'Playfair Display', serif; }
.footer-brand .brand-txt small { font-size: 0.7rem; color: rgba(255,255,255,0.45); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-btn:hover { background: var(--bleu-clair); }
.social-btn svg { width: 18px; height: 18px; fill: var(--blanc); }

.footer-col h4 { color: var(--blanc); font-size: 0.95rem; margin-bottom: 18px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--blanc); padding-left: 4px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; fill: var(--dore); margin-top: 3px; }
.footer-contact-item span { font-size: 0.83rem; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--blanc); }
.kinerty-credit { color: var(--dore); font-size: 0.75rem; }
.kinerty-credit a { color: var(--dore-clair); }

/* ---- WHATSAPP FLOTTANT ---- */
#whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
#whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
#whatsapp-float svg { width: 30px; height: 30px; fill: var(--blanc); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ---- RETOUR EN HAUT ---- */
#back-top {
  position: fixed;
  bottom: 100px; right: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--bleu);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--ombre);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  border: none;
  cursor: pointer;
}
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover { background: var(--bleu-clair); transform: translateY(-3px); }
#back-top svg { width: 20px; height: 20px; fill: var(--blanc); }

/* ---- ANIMATIONS ---- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ---- PAGE HERO (pages internes) ---- */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--blanc);
  min-height: 440px;
  display: flex;
  align-items: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1.0); }
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,107,0.88) 0%, rgba(15,37,80,0.82) 100%);
}
.page-hero > .container { position: relative; z-index: 1; width: 100%; }
.page-hero h1 { color: var(--blanc); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--blanc); }
.breadcrumb span { color: var(--dore); }

/* ---- IMAGE UTILITIES ---- */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-rounded { border-radius: var(--radius); overflow: hidden; }
.img-zoom { overflow: hidden; border-radius: var(--radius); }
.img-zoom img { transition: transform 0.5s ease; width: 100%; display: block; object-fit: cover; }
.img-zoom:hover img { transform: scale(1.05); }

/* ---- GALLERY STRIP ---- */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.gallery-strip-item { border-radius: 10px; overflow: hidden; aspect-ratio: 3/2; }
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-strip-item:hover img { transform: scale(1.06); }

/* ---- SVG ILLUSTRATIONS ---- */
.svg-illustration { display: flex; justify-content: center; }
.svg-illustration svg { max-width: 100%; height: auto; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  #burger { display: flex; }

  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--blanc);
    padding: 20px;
    gap: 4px;
    box-shadow: var(--ombre-forte);
    border-top: 1px solid var(--bleu-pale);
  }
  .nav-mobile-open .nav-links a { display: block; padding: 12px 16px; }
  .nav-mobile-open .nav-cta {
    display: flex;
    position: absolute;
    top: 340px; left: 0; right: 0;
    justify-content: center;
    background: var(--blanc);
    padding: 16px;
    box-shadow: var(--ombre-forte);
  }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .mission-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-content .section-title, .about-content .section-subtitle { text-align: center; }
  .about-list li { font-size: 0.88rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-padding { padding: 60px 0; }
}

@media (max-width: 480px) {
  .galerie-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.6rem; }
}
