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

:root {
  --navy: #0d0d0d;
  --navy2: #141414;
  --blue: #8B2BE2;
  --blue-light: #a855f7;
  --cyan: #bf7fff;
  --white: #f5f0ff;
  --grey: #9a8aaa;
  --card-bg: #1a1020;
  --border: rgba(139,43,226,0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .4;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.6rem;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: .5rem;
}
.logo span { color: var(--cyan); }
.logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); display: inline-block;
  animation: pulse 2s infinite;
}
.logo-text { letter-spacing: 0; }
.logo-text .info { color: var(--blue-light); }

@keyframes pulse {
  0%,100%{ box-shadow: 0 0 0 0 rgba(139,43,226,.6); }
  50%{ box-shadow: 0 0 0 8px rgba(139,43,226,0); }
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--grey); text-decoration: none; font-size: .95rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: .6rem 1.4rem;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: .45rem;
  letter-spacing: .03em;
  box-shadow: 0 0 18px rgba(139,43,226,.55), 0 4px 14px rgba(139,43,226,.3);
  transition: all .2s;
}
.nav-cta::before { content: '📅'; font-size: .82rem; }
.nav-cta:hover {
  background: var(--blue-light);
  box-shadow: 0 0 28px rgba(168,85,247,.75), 0 6px 20px rgba(168,85,247,.4);
  transform: translateY(-1px);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 5% 5rem;
  position: relative; overflow: hidden;
  background: var(--navy);
}

.hero-glow {
  position: absolute; top: -10%; right: -5%;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(139,43,226,.3) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite;
}
.hero-glow2 {
  position: absolute; bottom: 0; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

@keyframes floatGlow { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-30px); } }

.hero-content { max-width: 680px; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(139,43,226,.15); border: 1px solid rgba(139,43,226,.4);
  color: var(--blue-light); padding: .35rem 1rem;
  border-radius: 100px; font-size: .8rem; font-weight: 500; letter-spacing: .04em;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 800; line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  animation: fadeUp .7s .1s ease both;
}
h1 em { font-style: normal; color: var(--blue-light); }

.hero-sub {
  margin-top: 1.4rem; font-size: 1.1rem;
  color: var(--grey); max-width: 520px; font-weight: 300;
  font-family: 'Outfit', sans-serif;
  animation: fadeUp .7s .2s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}

.btn-primary {
  background: var(--blue); color: #fff;
  border: none; padding: .85rem 2rem;
  border-radius: 8px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block;
  box-shadow: 0 8px 30px rgba(139,43,226,.4);
  transition: all .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(139,43,226,.6); }

.btn-secondary {
  background: transparent; color: var(--white);
  border: 1px solid var(--border); padding: .85rem 2rem;
  border-radius: 8px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.05); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem; flex-wrap: wrap;
  animation: fadeUp .7s .45s ease both;
}
.stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 2rem; color: var(--white);
}
.stat-num span { color: var(--blue-light); }
.stat-label { color: var(--grey); font-size: .85rem; margin-top: .1rem; }

/* ── SECTION COMMONS ── */
section { padding: 6rem 5%; position: relative; z-index: 1; }

.section-tag {
  display: inline-block;
  color: var(--blue-light); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; letter-spacing: 0.02em; line-height: 1.1;
  text-transform: uppercase;
}

.section-desc { color: var(--grey); max-width: 520px; margin-top: .8rem; font-size: 1.05rem; }

/* ── SERVICES ── */
#services { background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-header { margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,43,226,.08) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(139,43,226,.45); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(139,43,226,.15); border: 1px solid rgba(139,43,226,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.25rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: .6rem;
}
.service-card p { color: var(--grey); font-size: .93rem; line-height: 1.6; }

/* ── À PROPOS ── */
#about { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-img-box {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.about-visual { position: relative; }
.about-badge-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--blue); color: #fff;
  border-radius: 12px; padding: 1rem 1.4rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  text-align: center; box-shadow: 0 10px 30px rgba(139,43,226,.5);
}
.about-badge-float .big { font-size: 1.8rem; display: block; }
.about-badge-float .small { font-size: .75rem; opacity: .85; }

.about-content h2 { margin-bottom: 1.2rem; }
.about-content p { color: var(--grey); margin-bottom: 1rem; font-size: 1rem; }

.about-values { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.5rem; }
.value-item { display: flex; align-items: center; gap: .8rem; color: var(--white); font-size: .95rem; }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-light); flex-shrink: 0; }

/* ── TARIFS ── */
#tarifs { background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tarifs-header { margin-bottom: 3.5rem; }
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; align-items: start;
}

.tarif-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem; transition: transform .25s;
}
.tarif-card.featured {
  border-color: var(--blue);
  background: linear-gradient(145deg, #1a1020, #110818);
  box-shadow: 0 0 0 1px rgba(139,43,226,.4), 0 20px 60px rgba(139,43,226,.2);
  position: relative;
}
.tarif-card:not(.featured):hover { transform: translateY(-4px); }

.featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: .75rem; font-weight: 600;
  padding: .3rem 1.2rem; border-radius: 100px; letter-spacing: .05em; white-space: nowrap;
}

.tarif-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.3rem; letter-spacing: .03em; text-transform: uppercase; margin-bottom: .5rem;
}
.tarif-card .price {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 2.6rem; color: var(--white); margin: 1rem 0;
}
.tarif-card .price span { font-size: 1rem; color: var(--grey); font-weight: 400; }
.tarif-card .price-from { font-size: .8rem; color: var(--grey); margin-bottom: .3rem; }

.tarif-list { list-style: none; margin: 1.2rem 0 1.8rem; display: flex; flex-direction: column; gap: .6rem; }
.tarif-list li { display: flex; align-items: flex-start; gap: .6rem; color: var(--grey); font-size: .92rem; }
.tarif-list li::before { content: '✓'; color: var(--blue-light); flex-shrink: 0; font-weight: 700; }

.btn-tarif {
  display: block; width: 100%; text-align: center;
  padding: .75rem; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  font-size: .95rem; cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-tarif.outline { border: 1px solid var(--border); color: var(--white); background: transparent; }
.btn-tarif.outline:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.05); }
.btn-tarif.solid { background: var(--blue); color: #fff; border: none; box-shadow: 0 6px 20px rgba(139,43,226,.4); }
.btn-tarif.solid:hover { background: var(--blue-light); transform: translateY(-1px); }

/* ── AVIS GOOGLE ── */
#avis { background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.avis-header { margin-bottom: 3.5rem; }

.avis-global {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem 1.5rem; margin-top: 1.5rem;
}
.avis-global-logo { font-size: 1.6rem; }
.avis-global-note { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.avis-global-stars { color: #FBB928; font-size: 1.1rem; letter-spacing: .05em; }
.avis-global-count { font-size: .8rem; color: var(--grey); margin-top: .1rem; }

.avis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }

.avis-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.avis-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(139,43,226,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.avis-card:hover { transform: translateY(-5px); border-color: rgba(139,43,226,.4); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.avis-card:hover::before { opacity: 1; }

.avis-top { display: flex; align-items: center; gap: .9rem; }
.avis-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.2rem; color: #fff; flex-shrink: 0;
}
.avis-name { font-weight: 600; font-size: .98rem; color: var(--white); }
.avis-date { font-size: .78rem; color: var(--grey); margin-top: .1rem; }
.avis-stars { color: #FBB928; font-size: 1rem; letter-spacing: .04em; }
.avis-text { color: var(--grey); font-size: .93rem; line-height: 1.65; flex: 1; }
.avis-google-badge { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: var(--grey); }
.avis-google-badge svg { width: 16px; height: 16px; flex-shrink: 0; }

.avis-cta-wrap { text-align: center; margin-top: 3rem; }
.btn-avis {
  display: inline-flex; align-items: center; gap: .6rem;
  background: transparent; color: var(--white);
  border: 1px solid var(--border); padding: .85rem 2rem;
  border-radius: 8px; font-family: 'Outfit', sans-serif;
  font-size: .95rem; font-weight: 500; cursor: pointer;
  text-decoration: none; transition: all .2s;
}
.btn-avis:hover { border-color: rgba(139,43,226,.6); background: rgba(139,43,226,.08); transform: translateY(-2px); }

#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 860px;
  background: rgba(20, 10, 32, 0.96);
  border: 1px solid rgba(139, 43, 226, 0.45);
  backdrop-filter: blur(18px);
  color: #fff;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.6;
  z-index: 9000;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(139,43,226,0.15);
  transition: transform 0.45s cubic-bezier(.4,0,.2,1), opacity 0.45s ease;
  opacity: 1;
}
#cookie-banner.hidden {
  transform: translateX(-50%) translateY(calc(100% + 2.5rem));
  opacity: 0;
  pointer-events: none;
}
.cookie-text { flex: 1; min-width: 220px; color: #c4b5d4; }
.cookie-text strong { color: #fff; font-weight: 600; }
.cookie-text a { color: var(--blue-light); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.cookie-text a:hover { color: var(--cyan); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-refuse {
  background: transparent;
  border: 1px solid rgba(139,43,226,0.35);
  color: #9a8aaa;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all .2s;
  white-space: nowrap;
}
.btn-refuse:hover { border-color: rgba(139,43,226,0.7); color: #fff; background: rgba(139,43,226,0.08); }
.btn-accept {
  background: var(--blue);
  border: none;
  color: #fff;
  padding: 0.5rem 1.3rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(139,43,226,0.45);
  transition: all .2s;
  white-space: nowrap;
}
.btn-accept:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,43,226,0.6); }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--grey); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; color: var(--white); font-size: .95rem; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(139,43,226,.15); border: 1px solid rgba(139,43,226,.3);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-label { font-size: .75rem; color: var(--grey); margin-bottom: .1rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; color: var(--grey); font-weight: 500; letter-spacing: .03em; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--card-bg); border: 1px solid var(--border);
  color: var(--white); padding: .8rem 1rem;
  border-radius: 8px; font-family: 'DM Sans', sans-serif;
  font-size: .95rem; outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(139,43,226,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  background: var(--blue); color: #fff;
  border: none; padding: .9rem 2rem;
  border-radius: 8px; font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 500; cursor: pointer;
  box-shadow: 0 8px 30px rgba(139,43,226,.4);
  transition: all .2s; align-self: flex-start;
}
.btn-submit:hover { background: var(--blue-light); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border); padding: 2.5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; color: var(--grey); font-size: .85rem;
}
footer .logo { font-size: 1.1rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #about { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}

/* ══════════════════════════════════════
   ZONE D'INTERVENTION
══════════════════════════════════════ */

#zone {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.zone-header { margin-bottom: 2.5rem; }

.zone-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.zone-map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

#map {
  width: 100%;
  height: 100%;
}

/* Override leaflet popup */
.leaflet-popup-content-wrapper {
  background: #1a1020 !important;
  color: #f5f0ff !important;
  border: 1px solid rgba(139,43,226,.4) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.5) !important;
}
.leaflet-popup-tip { background: #1a1020 !important; }
.leaflet-popup-content { font-family: 'Outfit', sans-serif; font-size: .9rem; }

.zone-info { display: flex; flex-direction: column; gap: 1.5rem; }

.zone-legend { display: flex; flex-direction: column; gap: 1rem; }

.zone-legend-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .9rem 1.1rem;
}

.zone-dot {
  width: 14px; height: 14px;
  border-radius: 50%; flex-shrink: 0;
}
.zone-dot-5  { background: #a855f7; box-shadow: 0 0 8px rgba(168,85,247,.6); }
.zone-dot-20 { background: #8B2BE2; box-shadow: 0 0 8px rgba(139,43,226,.5); }
.zone-dot-30 { background: #6a1ab0; box-shadow: 0 0 8px rgba(106,26,176,.4); }

.zone-legend-item strong { display: block; font-size: .92rem; color: var(--white); }
.zone-legend-item span   { font-size: .8rem; color: var(--grey); }

.zone-villes {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
}

.zone-ville-title {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--purple-light, #a855f7); margin-bottom: .9rem;
}

.zone-tags {
  display: flex; flex-wrap: wrap; gap: .5rem;
}

.zone-tag-city {
  background: rgba(139,43,226,.12);
  border: 1px solid var(--border);
  color: var(--grey);
  padding: .3rem .75rem;
  border-radius: 100px;
  font-size: .82rem;
}
.zone-tag-city:first-child {
  color: var(--white);
  border-color: rgba(139,43,226,.4);
  background: rgba(139,43,226,.2);
}

@media (max-width: 900px) {
  .zone-wrap { grid-template-columns: 1fr; }
  .zone-map-container { height: 300px; }
}

/* ══════════════════════════════════════
   FOOTER REFONDU
══════════════════════════════════════ */

footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 5%;
}

.footer-brand .logo { margin-bottom: .8rem; }

.footer-desc {
  color: var(--grey);
  font-size: .88rem;
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: .7rem;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(139,43,226,.12);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  text-decoration: none;
  transition: all .2s;
}
.social-link:hover {
  background: rgba(139,43,226,.3);
  border-color: rgba(139,43,226,.5);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .85rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); margin-bottom: .4rem;
}

.footer-links-col a,
.footer-links-col span {
  color: var(--grey);
  text-decoration: none;
  font-size: .88rem;
  transition: color .2s;
}
.footer-links-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem;
  font-size: .8rem;
  color: var(--grey);
}

.footer-bottom a {
  color: var(--grey);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── TÉLÉPHONE STYLÉ ── */
.tel-link {
  color: var(--white);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem; font-weight: 400;
  transition: color .2s;
}
.tel-link:hover { color: var(--blue-light); }

.tel-link-footer {
  color: var(--blue-light);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: .04em;
  transition: color .2s;
}
.tel-link-footer:hover { color: var(--cyan); }

/* ── FORMULAIRE : FEEDBACK & CONFIRMATION ── */
.form-feedback {
  display: flex; align-items: flex-start; gap: 1rem;
  border-radius: 12px; padding: 1.1rem 1.3rem;
  font-size: .92rem; line-height: 1.6; margin-bottom: .5rem;
}
.form-feedback--error {
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.3);
  color: #fca5a5;
}
.form-feedback--error a.tel-link { font-size: 1rem; padding: .2rem .6rem; }
.form-feedback--success { display: block !important; padding: 0; background: none; border: none; }

.form-feedback__icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }

.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(168,85,247,.15); border: 2px solid rgba(168,85,247,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--blue-light);
  margin: 0 auto 1.5rem;
  animation: popIn .45s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.form-success-body { text-align: center; }
.form-success-body strong { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; letter-spacing: .02em; text-transform: uppercase; color: var(--white); display: block; margin-bottom: .8rem; }
.form-success-body p { color: var(--grey); font-size: .95rem; margin-bottom: .5rem; }
.form-success-body p strong { font-family: 'Outfit', sans-serif; font-size: inherit; text-transform: none; letter-spacing: 0; color: var(--blue-light); display: inline; }
.form-success-body em { font-style: normal; color: var(--cyan); }

.form-success-actions {
  display: flex; flex-wrap: wrap; gap: .8rem;
  justify-content: center; margin-top: 1.8rem;
}

@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff; border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle;
}
