/* =========================================================
   FAE CVC - Style global
   Couleurs : bleu fonce / rouge / blanc
   ========================================================= */

:root {
  --bleu: #0a1f44;
  --bleu-2: #0f2c5f;
  --bleu-clair: #e8eef7;
  --rouge: #d62828;
  --rouge-fonce: #b51d1d;
  --blanc: #ffffff;
  --gris-bg: #f5f7fa;
  --gris-bord: #e3e8ef;
  --gris-text: #5a6273;
  --noir: #0c1322;
  --ombre: 0 10px 30px rgba(10, 31, 68, 0.08);
  --ombre-hover: 0 18px 40px rgba(10, 31, 68, 0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--noir);
  background: var(--blanc);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--bleu);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }

p { color: var(--gris-text); }

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

section { padding: 90px 0; }

/* ===================== BOUTONS ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--rouge); color: var(--blanc); border-color: var(--rouge); }
.btn-primary:hover { background: var(--rouge-fonce); border-color: var(--rouge-fonce); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(214, 40, 40, 0.35); }
.btn-secondary { background: var(--bleu); color: var(--blanc); border-color: var(--bleu); }
.btn-secondary:hover { background: var(--bleu-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--bleu); border-color: var(--bleu); }
.btn-outline:hover { background: var(--bleu); color: var(--blanc); }
.btn-outline-white { background: transparent; color: var(--blanc); border-color: var(--blanc); }
.btn-outline-white:hover { background: var(--blanc); color: var(--bleu); }

/* ===================== HEADER ===================== */

.topbar {
  background: var(--bleu);
  color: var(--blanc);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a { color: var(--blanc); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--rouge); }
.topbar-info { display: flex; gap: 20px; flex-wrap: wrap; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blanc);
  box-shadow: 0 2px 12px rgba(10, 31, 68, 0.06);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(10, 31, 68, 0.12); }
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--bleu);
  letter-spacing: 0.5px;
}
.logo-text { color: var(--bleu); }
.logo-text span { color: var(--rouge); }
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.logo-icon svg { width: 100%; height: 100%; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav-list { display: flex; gap: 4px; }
.nav-list a {
  display: block;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--noir);
  border-radius: 8px;
  position: relative;
}
.nav-list a:hover, .nav-list a.active { color: var(--rouge); background: var(--bleu-clair); }
.nav-cta { margin-left: 16px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--bleu);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================== HERO ===================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(10,31,68,0.88) 0%, rgba(10,31,68,0.65) 100%),
    url('assets/images/hero-hotte.jpg') center/cover;
  color: var(--blanc);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(214,40,40,0.2), transparent 50%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 720px; }
.hero-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(214,40,40,0.15);
  border: 1px solid rgba(214,40,40,0.4);
  color: var(--blanc);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 { color: var(--blanc); margin-bottom: 24px; }
.hero h1 span { color: var(--rouge); }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===================== PAGE HEADER (autres pages) ===================== */

.page-header {
  background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-2) 100%);
  color: var(--blanc);
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1631545806609-fc1c0a4d9bf3?w=1920&q=80') center/cover;
  opacity: 0.15;
}
.page-header .container { position: relative; }
.page-header h1 { color: var(--blanc); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; margin-top: 20px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--rouge); }

/* ===================== SECTIONS GENERIQUES ===================== */

.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-eyebrow {
  display: inline-block;
  color: var(--rouge);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-head p { font-size: 1.05rem; }

.bg-light { background: var(--gris-bg); }
.bg-dark { background: var(--bleu); color: var(--blanc); }
.bg-dark h2, .bg-dark h3 { color: var(--blanc); }
.bg-dark p { color: rgba(255,255,255,0.8); }

/* ===================== SERVICES (cartes) ===================== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}

.service-card {
  background: var(--blanc);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gris-bord);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--rouge);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--ombre-hover); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: var(--bleu-clair);
  color: var(--bleu);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--rouge); color: var(--blanc); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.2rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 16px; }
.service-card a { color: var(--rouge); font-weight: 600; font-size: 0.9rem; }

/* ===================== STATS ===================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat { padding: 30px 20px; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--rouge);
  line-height: 1;
}
.stat-lbl { color: rgba(255,255,255,0.85); margin-top: 8px; font-weight: 500; }

/* ===================== POURQUOI NOUS ===================== */

.feature-list { display: grid; gap: 22px; }
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--rouge);
  color: var(--blanc);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h4 { font-size: 1.1rem; color: var(--bleu); margin-bottom: 4px; font-weight: 700; }
.feature p { font-size: 0.95rem; }

.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--ombre); }
.about-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ===================== TEMOIGNAGES ===================== */

.testimonial {
  background: var(--blanc);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gris-bord);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 24px;
  font-size: 5rem;
  color: var(--rouge);
  font-family: Georgia;
  line-height: 1;
}
.testimonial p { font-style: italic; margin-bottom: 20px; color: var(--noir); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bleu-clair);
  color: var(--bleu);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testi-author h5 { color: var(--bleu); font-size: 0.95rem; margin: 0; }
.testi-author span { font-size: 0.85rem; color: var(--gris-text); }

/* ===================== CTA BANDEAU ===================== */

.cta-banner {
  background: linear-gradient(135deg, var(--rouge) 0%, var(--rouge-fonce) 100%);
  padding: 70px 0;
  color: var(--blanc);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1), transparent 50%);
}
.cta-banner h2 { color: var(--blanc); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { background: var(--blanc); color: var(--rouge); border-color: var(--blanc); }
.cta-banner .btn:hover { background: var(--bleu); color: var(--blanc); border-color: var(--bleu); }

/* ===================== PROJETS - MASONRY ===================== */

.masonry {
  column-count: 3;
  column-gap: 24px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--ombre);
  background: var(--blanc);
  transition: all var(--transition);
  position: relative;
}
.masonry-item:hover { transform: translateY(-4px); box-shadow: var(--ombre-hover); }
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-content { padding: 20px 22px; }
.masonry-tag {
  display: inline-block;
  background: var(--rouge);
  color: var(--blanc);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.masonry-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.masonry-content p { font-size: 0.9rem; }

@media (max-width: 992px) { .masonry { column-count: 2; } }
@media (max-width: 600px) { .masonry { column-count: 1; } }

/* ===================== ARTICLES / BLOG ===================== */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.article-card {
  background: var(--blanc);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gris-bord);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--ombre-hover); border-color: transparent; }
.article-img {
  height: 200px;
  overflow: hidden;
  background: var(--bleu-clair);
}
.article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.article-card:hover .article-img img { transform: scale(1.08); }
.article-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-meta {
  font-size: 0.8rem;
  color: var(--gris-text);
  margin-bottom: 10px;
  display: flex; gap: 12px;
}
.article-meta span { display: inline-flex; align-items: center; gap: 4px; }
.article-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.article-card p { font-size: 0.92rem; flex: 1; margin-bottom: 16px; }
.article-card .read-more { color: var(--rouge); font-weight: 600; font-size: 0.9rem; }

/* Article single */
.article-single { padding: 60px 0; }
.article-single .container { max-width: 820px; }
.article-hero { margin-bottom: 36px; }
.article-hero img { width: 100%; border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; }
.article-content h2 { margin: 36px 0 14px; font-size: 1.7rem; }
.article-content h3 { margin: 28px 0 10px; }
.article-content p { margin-bottom: 16px; color: var(--noir); }
.article-content ul { margin: 16px 0 16px 22px; }
.article-content ul li { list-style: disc; margin-bottom: 8px; color: var(--noir); }
.article-content blockquote {
  border-left: 4px solid var(--rouge);
  padding: 16px 22px;
  background: var(--gris-bg);
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

/* ===================== CONTACT / FORMULAIRE ===================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info-box {
  background: var(--bleu);
  color: var(--blanc);
  padding: 40px;
  border-radius: var(--radius);
}
.contact-info-box h2 { color: var(--blanc); }
.contact-info-box p { color: rgba(255,255,255,0.8); }
.contact-info-list { margin-top: 30px; display: grid; gap: 22px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--rouge);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item h5 { color: var(--blanc); font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.contact-info-item a:hover { color: var(--rouge); }

.form-card {
  background: var(--blanc);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--ombre);
  border: 1px solid var(--gris-bord);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bleu);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gris-bord);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--noir);
  background: var(--blanc);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rouge);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 18px; font-size: 0.88rem; color: var(--gris-text); }
.form-check input { margin-top: 4px; flex-shrink: 0; }
.form-success {
  background: #dcfce7;
  color: #15803d;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  display: none;
  font-weight: 500;
}
.form-success.show { display: block; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--ombre); margin-top: 20px; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ===================== FAQ ===================== */

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--blanc);
  border: 1px solid var(--gris-bord);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.active { border-color: var(--rouge); box-shadow: var(--ombre); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bleu);
}
.faq-q::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--rouge);
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item.active .faq-q::after { content: '\2013'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-a-inner { padding: 0 24px 22px; color: var(--gris-text); font-size: 0.95rem; }
.faq-item.active .faq-a { max-height: 400px; }

/* ===================== FOOTER ===================== */

.footer {
  background: var(--noir);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h4 { color: var(--blanc); font-size: 1.05rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 3px; background: var(--rouge);
}
.footer .logo { color: var(--blanc); margin-bottom: 16px; }
.footer .logo-text { color: var(--blanc); }
.footer-col p { color: rgba(255,255,255,0.7); margin-bottom: 16px; line-height: 1.7; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--rouge); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item svg { flex-shrink: 0; color: var(--rouge); margin-top: 3px; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-row a:hover { background: var(--rouge); transform: translateY(-2px); }
.social-row svg { width: 16px; height: 16px; color: var(--blanc); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ===================== WHATSAPP / FLOTANT ===================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: all var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--blanc); }
.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ===================== COOKIES ===================== */

.cookies {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 110px;
  max-width: 480px;
  background: var(--blanc);
  border: 1px solid var(--gris-bord);
  box-shadow: 0 20px 50px rgba(10, 31, 68, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  z-index: 95;
  transform: translateY(150%);
  transition: transform 0.5s ease;
}
.cookies.show { transform: translateY(0); }
.cookies h4 { color: var(--bleu); font-size: 1.05rem; margin-bottom: 8px; }
.cookies p { font-size: 0.88rem; margin-bottom: 14px; }
.cookies-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookies .btn { padding: 10px 20px; font-size: 0.85rem; }

/* ===================== CARTE FRANCE ===================== */

.france-section { background: linear-gradient(180deg, #fff 0%, var(--gris-bg) 100%); }
.france-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.france-map {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.france-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(10, 31, 68, 0.12));
  opacity: 0.85;
}

.city-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}
.city-dot::before,
.city-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--rouge);
}
.city-dot::before {
  animation: city-pulse 2s ease-out infinite;
}
.city-dot::after {
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.city-dot:nth-of-type(2)::before { animation-delay: 0.2s; }
.city-dot:nth-of-type(3)::before { animation-delay: 0.4s; }
.city-dot:nth-of-type(4)::before { animation-delay: 0.6s; }
.city-dot:nth-of-type(5)::before { animation-delay: 0.8s; }
.city-dot:nth-of-type(6)::before { animation-delay: 1s; }
.city-dot:nth-of-type(7)::before { animation-delay: 1.2s; }
.city-dot:nth-of-type(8)::before { animation-delay: 1.4s; }
.city-dot:nth-of-type(9)::before { animation-delay: 1.6s; }
.city-dot:nth-of-type(10)::before { animation-delay: 1.8s; }

.city-dot .city-label {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--bleu);
  background: rgba(255,255,255,0.95);
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(10,31,68,0.15);
}
.city-dot .city-label.below { top: auto; bottom: -22px; }
.city-dot .city-label.left { left: auto; right: 18px; transform: none; }
.city-dot .city-label.right { left: 18px; transform: none; }

@keyframes city-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3.5); opacity: 0; }
}

.france-content h2 { margin-bottom: 14px; }
.france-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.france-stat {
  background: var(--blanc);
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gris-bord);
  text-align: center;
}
.france-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--rouge);
  line-height: 1;
}
.france-stat-lbl {
  font-size: 0.85rem;
  color: var(--gris-text);
  margin-top: 6px;
}

@media (max-width: 968px) {
  .france-wrap { grid-template-columns: 1fr; gap: 30px; }
  .france-content { text-align: center; }
}

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

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */

@media (max-width: 968px) {
  section { padding: 70px 0; }
  .nav-list, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav.open .nav-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--blanc);
    padding: 20px 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    gap: 4px;
  }
  .nav.open .nav-cta { display: inline-flex; margin: 12px 24px 20px; }
  .nav.open { position: static; }
  .header { position: relative; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { min-height: 80vh; padding: 60px 0; }
  .topbar-info { font-size: 0.78rem; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookies { left: 12px; right: 12px; bottom: 100px; padding: 18px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .contact-info-box, .form-card { padding: 28px 22px; }
}
