/* ===== VARIABLES ===== */
:root {
  --dark-1: #050912;
  --dark-2: #080e1c;
  --dark-3: #0c1424;
  --dark-4: #111b30;
  --dark-5: #1a2540;
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-glow: rgba(37,99,235,.4);
  --text-primary: #e8edf5;
  --text-secondary: #8892aa;
  --text-muted: #5a6478;
  --border: #1a2540;
  --white: #ffffff;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.6);
  --shadow: 0 4px 12px rgba(0,0,0,.5);
  --shadow-lg: 0 10px 24px rgba(0,0,0,.5);
  --shadow-xl: 0 20px 40px rgba(0,0,0,.6);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: .2s ease;
  --container: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--dark-1);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font); }

/* ===== SCROLL OFFSET (header sticky 72px + urgence bar ~40px) ===== */
[id] { scroll-margin-top: 120px; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== URGENCE BAR ===== */
.urgence-bar {
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: .55rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  text-align: center;
  flex-wrap: wrap;
}
.urgence-tel {
  background: rgba(255,255,255,.18);
  padding: .25rem .9rem;
  border-radius: 99px;
  transition: background var(--transition);
}
.urgence-tel:hover { background: rgba(255,255,255,.32); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.6); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .5rem; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-text {
  display: none;
  align-items: center;
  gap: .35rem;
}
.logo-as {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.amp { color: var(--blue-light); }
.logo-plomberie {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
/* Nav variante pages ville */
.nav.container {
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--blue-light); }
.nav-links {
  display: flex;
  list-style: none;
  gap: .25rem;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links a {
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition);
}
.nav-links a:hover { background: var(--dark-4); color: var(--white); }
.nav-cta { margin-left: .5rem; }
.nav-link {
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.nav-link:hover { background: var(--dark-4); color: var(--white); }
.nav-call {
  margin-left: .5rem;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s ease;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--blue-glow);
}
.btn-outline,
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover,
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-call {
  background: var(--blue);
  color: var(--white);
  padding: .5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-call:hover { background: var(--blue-hover); }
.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #020610 0%, #050d1e 45%, #091530 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37,99,235,.18) 0%, transparent 70%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(5,9,18,.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(59,130,246,.4);
  color: #93c5fd;
  padding: .4rem 1rem;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-accent { color: #60a5fa; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 1.25rem;
  max-width: 580px;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
}
.hero-rating span { font-weight: 500; }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.d-none-mobile { display: inline; }
.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  width: fit-content;
  max-width: 100%;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  background: rgba(37,99,235,.15);
  color: #60a5fa;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .35rem .9rem;
  border-radius: 99px;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.section-services { background: var(--dark-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-xl);
  border-color: var(--blue);
}
.service-card--featured {
  background: linear-gradient(135deg, #091a40 0%, #1d4ed8 100%);
  border-color: var(--blue);
  color: var(--white);
}
.service-card--featured h3,
.service-card--featured p { color: var(--white); }
.service-card--featured p { opacity: .85; }
.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--blue-light);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 99px;
  text-transform: uppercase;
}
.service-icon { font-size: 2.25rem; margin-bottom: 1rem; }
.service-card h3,
.service-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}
.service-card p,
.service-desc { font-size: .92rem; color: var(--text-secondary); margin-bottom: 1.25rem; }
.service-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue-light);
  transition: color var(--transition);
}
.service-card--featured .service-link { color: #93c5fd; }
.service-link:hover { color: var(--white); }

/* ===== GARANTIES ===== */
.section-garanties { background: var(--dark-3); padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.garanties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.garantie-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
}
.garantie-icon { font-size: 2rem; }
.garantie-item strong { font-size: .95rem; font-weight: 700; color: var(--white); }
.garantie-item span { font-size: .82rem; color: var(--text-secondary); line-height: 1.5; }

/* ===== POURQUOI ===== */
.section-why { background: var(--dark-1); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-image-box {
  background: linear-gradient(135deg, #060c1a 0%, #1a3a8f 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.why-image-box::before {
  content: '🔧';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 9rem;
  opacity: .15;
}
.why-image-badge {
  background: var(--dark-4);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  box-shadow: 0 0 24px rgba(37,99,235,.3);
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  text-align: center;
}
.why-image-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}
.why-image-badge span { font-size: .8rem; color: var(--text-secondary); }
.why-intro { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.05rem; }
.why-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.why-list strong { display: block; font-weight: 700; color: var(--white); margin-bottom: .2rem; }
.why-list p { font-size: .9rem; color: var(--text-secondary); margin: 0; }

/* ===== ZONES ===== */
.section-zones { background: var(--dark-3); }
.section-zones .section-tag { background: rgba(37,99,235,.15); color: #93c5fd; }
.section-zones .section-title { color: var(--white); }
.section-zones .section-subtitle { color: var(--text-secondary); }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.zone-item {
  background: var(--dark-4);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
  transition: all var(--transition);
}
.zone-item:hover { background: var(--dark-5); border-color: var(--blue); color: #93c5fd; }
.zone-item a { color: inherit; text-decoration: none; display: block; }
.zones-secteurs { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.zones-secteur {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.zones-secteur:hover { border-color: var(--blue); }
.zones-secteur[open] { border-color: var(--blue); }
.zones-secteur summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.zones-secteur summary::-webkit-details-marker { display: none; }
.zones-secteur summary::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: #60a5fa; transition: transform var(--transition); }
.zones-secteur[open] summary::after { transform: rotate(45deg); }
.zones-secteur .zones-grid { padding: 1rem 1.25rem 1.25rem; border-top: 1px solid var(--border); }
.zones-grid--sm .zone-item { font-size: .82rem; padding: .4rem .75rem; }
.zones-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: .95rem;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}
.zones-note a { color: #60a5fa; font-weight: 600; }

/* ===== TÉMOIGNAGES ===== */
.section-temoignages { background: var(--dark-2); }
.stars-global {
  margin-top: .5rem;
  font-size: .95rem;
  color: var(--text-secondary);
}
.stars-global span { font-weight: 500; }
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.temoignage-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.temoignage-card:hover { box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg); border-color: var(--blue); transform: translateY(-2px); }
.temo-stars { font-size: 1.1rem; margin-bottom: 1rem; }
.temoignage-card p {
  font-size: .95rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.temo-author { display: flex; align-items: center; gap: .75rem; }
.temo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.temo-author strong { display: block; font-weight: 700; color: var(--white); font-size: .95rem; }
.temo-author span { font-size: .82rem; color: var(--text-muted); }

/* ===== CONTACT ===== */
.section-contact { background: var(--dark-1); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-title { margin-top: .5rem; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 700; color: var(--white); font-size: .9rem; }
.contact-item a, .contact-item span { font-size: .95rem; color: #60a5fa; }
.contact-item a:hover { color: var(--white); }

/* Form */
.contact-form {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.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: .875rem; font-weight: 600; color: var(--text-primary); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--white);
  background: var(--dark-4);
  transition: border-color var(--transition);
  outline: none;
}
.form-group select option { background: var(--dark-4); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.4);
  color: #86efac;
  padding: .9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.4);
  color: #fca5a5;
  padding: .9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}
.form-error.show { display: block; }
.form-error a { color: #60a5fa; }
@keyframes spin { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
.btn svg[style*="animation"] { animation: spin 1s linear infinite; }

/* ===== FAQ ===== */
.section-faq { background: var(--dark-1); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--blue); }
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: #60a5fa;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: .95rem;
}
.faq-item p a { color: #60a5fa; font-weight: 600; }
.faq-item p strong { color: var(--text-primary); }
/* FAQ bouton (pages ville) */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--blue-light);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-question[aria-expanded="true"] { color: #60a5fa; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: .95rem;
  margin: 0;
}
.faq-item.open { border-color: var(--blue); }

/* ===== FOOTER ===== */
.footer { background: #020610; color: var(--text-secondary); padding: 4rem 0 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .9rem; margin-top: 1rem; line-height: 1.7; max-width: 260px; }
.footer-logo { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: .5rem !important; }
.footer-logo span { color: var(--blue-light); }
.footer-brand address { font-style: normal; display: flex; flex-direction: column; gap: .4rem; margin-top: .75rem; }
.footer-brand address p { margin: 0; font-size: .875rem; max-width: none; }
.footer-brand address a { color: var(--text-secondary); transition: color var(--transition); }
.footer-brand address a:hover { color: var(--white); }
/* footer-bottom utilisé avec double classe (.footer-bottom.container) sur pages ville */
.footer-bottom.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.footer-bottom.container a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-bottom.container a:hover { color: var(--white); }
.footer-links, .footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-links h4, .footer-col h4 { color: var(--white); font-weight: 700; font-size: .95rem; margin-bottom: .4rem; }
.footer-links a, .footer-col a { font-size: .875rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-links a:hover, .footer-col a:hover { color: var(--white); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-col li { font-size: .875rem; color: var(--text-secondary); }
/* Footer 3 colonnes pour pages ville */
.footer-inner:has(.footer-col) { grid-template-columns: 1.6fr 1fr 1fr; }
.footer-contact { display: flex; flex-direction: column; gap: .6rem; }
.footer-contact h4 { color: var(--white); font-weight: 700; font-size: .95rem; margin-bottom: .4rem; }
.footer-tel { font-size: 1.2rem; font-weight: 700; color: #60a5fa !important; }
.footer-contact p { font-size: .85rem; }
.footer-contact a { font-size: .875rem; color: var(--text-secondary); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
}
.footer-bottom .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ===== FAB URGENCE ===== */
.fab-urgence {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  background: var(--blue);
  color: var(--white);
  border-radius: 99px;
  padding: .85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 4px 20px var(--blue-glow);
  transition: all .3s ease;
  animation: pulse 2.5s infinite;
}
.fab-urgence:hover {
  background: var(--blue-hover);
  transform: scale(1.05);
  animation: none;
  box-shadow: 0 6px 28px rgba(37,99,235,.7);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,99,235,.4); }
  50% { box-shadow: 0 4px 32px rgba(37,99,235,.75); }
}

/* ===== PAGES VILLE RICHES ===== */
.ville-hero {
  background: linear-gradient(135deg, var(--dark-1) 0%, #0f1a2e 100%);
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.ville-hero .breadcrumb { font-size:.85rem; color:var(--text-secondary); margin-bottom:1.5rem; }
.ville-hero .breadcrumb a { color:#60a5fa; text-decoration:none; }
.ville-hero .breadcrumb a:hover { text-decoration:underline; }
.ville-hero__title { font-size: clamp(2rem,5vw,3rem); font-weight:900; margin-bottom:.75rem; }
.highlight { color: #60a5fa; }
.ville-hero__sub { font-size:1.1rem; color:var(--text-secondary); margin-bottom:2rem; }
.ville-hero__ctas { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:1.5rem; }
.ville-hero__badges { display:flex; gap:.75rem; flex-wrap:wrap; }
.badge {
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  color: #93c5fd;
  padding: .35rem .85rem;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
}

.section-intro-ville { background: var(--dark-2); }
.intro-ville__content { display:grid; grid-template-columns:1fr 340px; gap:3rem; align-items:start; }
.intro-ville__text h2 { font-size:1.6rem; font-weight:800; margin-bottom:1rem; }
.intro-ville__text p { color:var(--text-secondary); line-height:1.8; margin-bottom:1rem; }
.intro-ville__text .btn { margin-top:.5rem; }

.contact-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 90px;
}
.contact-card__title { font-size:1rem; font-weight:700; margin-bottom:.25rem; color:var(--white); }
.contact-card__phone { font-size:1.5rem; font-weight:900; margin-bottom:1rem; }
.contact-card__phone a { color:#60a5fa; text-decoration:none; }
.contact-card__info { font-size:.88rem; color:var(--text-secondary); margin-bottom:.4rem; }
.btn-block { display:block; width:100%; text-align:center; margin-top:1rem; }

.section-services--ville { background: var(--dark-1); }

.section-temoignage-ville { background: var(--dark-2); padding:3rem 0; }
.temoignage-ville__card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.temoignage-ville__stars { font-size:1.4rem; margin-bottom:1rem; }
.temoignage-ville__text { font-size:1.05rem; line-height:1.75; color:var(--text-secondary); font-style:italic; margin-bottom:1rem; }
.temoignage-ville__author { font-weight:700; color:#93c5fd; font-size:.9rem; }

.section-nearby { background: var(--dark-1); }
.section-title--sm { font-size:1.25rem; text-align:center; margin-bottom:1.5rem; }
.nearby-links { display:flex; flex-wrap:wrap; gap:.6rem; justify-content:center; }
.nearby-link {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: #93c5fd;
  text-decoration: none;
  padding: .45rem 1rem;
  font-size: .88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nearby-link:hover { border-color: var(--blue); background: var(--dark-5); color: #fff; }

.section-cta-ville { background: linear-gradient(135deg,#1e3a5f 0%,#0f1a2e 100%); }
.cta-ville { text-align:center; padding:1rem 0; }
.cta-ville h2 { font-size:clamp(1.4rem,3vw,2rem); font-weight:900; margin-bottom:.75rem; }
.cta-ville p { color:var(--text-secondary); font-size:1rem; }

@media (max-width:900px) {
  .intro-ville__content { grid-template-columns:1fr; }
  .contact-card { position:static; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-image { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .garanties-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-2);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: .25rem;
    box-shadow: var(--shadow-xl);
    transition: right .35s ease;
    z-index: 99;
  }
  .nav.open { right: 0; }
  /* Nav variante pages ville sur mobile : pas de sidebar, juste masquer les liens */
  .nav.container {
    position: relative;
    right: auto;
    width: 100%;
    max-width: 1200px;
    height: 72px;
    background: transparent;
    border-left: none;
    flex-direction: row;
    align-items: center;
    padding: 0 1.5rem;
    box-shadow: none;
    transition: none;
    z-index: auto;
  }
  .nav.container .nav-links { display: none; }
  .nav.container .nav-cta { margin-left: auto; display: inline-flex; }
  .nav-link { padding: .85rem 1rem; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav-call { margin: .5rem 0 0; text-align: center; }
  .burger { display: flex; z-index: 101; position: relative; }
  .d-none-mobile { display: none; }
  .hero-stats { flex-direction: column; gap: .75rem; padding: 1.25rem; width: 100%; }
  .stat-sep { width: 40px; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .garanties-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .fab-urgence span { display: none; }
  .fab-urgence { padding: 1rem; border-radius: 50%; }
  .ville-hero__ctas { flex-direction: column; }
  .ville-hero__ctas .btn { width: 100%; justify-content: center; }
  .ville-hero__badges { gap: .5rem; }
  .badge { font-size: .78rem; padding: .3rem .7rem; }
  .temoignage-ville__card { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .urgence-bar { font-size: .78rem; gap: .75rem; }
  .hero-content { padding: 4rem 1.5rem; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 1.5rem; }
  .garanties-grid { grid-template-columns: 1fr; gap: .75rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .why-list li { flex-direction: column; gap: .5rem; }
}

/* ===== ANIMATIONS SCROLL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 98;
}
.nav-overlay.show { display: block; }
