/* ============================================================
   ESA SERRAMATIC — Design System
   Colors: Navy #142D47, Orange #C27D0E, White #fff, Gray #E5E7EB
   Fonts: Montserrat (titres/boutons) + Open Sans (corps)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #142D47;
  --navy-light: #1e3d60;
  --orange: #C27D0E;
  --orange-dark: #a06608;
  --orange-glow: rgba(194,125,14,0.3);
  --white: #ffffff;
  --gray-light: #E5E7EB;
  --gray-mid: #d1d5db;
  --gray: #9aa0ac;
  --text: #1a202c;
  --text-mid: #4a5568;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius-btn: 12px;
  --radius-card: 20px;
  --radius-lg: 28px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

/* ---- Containers ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 100px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,130,30,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,130,30,0.45);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 14px; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

.btn-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---- Header ---- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.header-bar {
  background: rgba(26, 39, 68, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 24px;
}

#site-header.scrolled .header-bar {
  background: rgba(26, 39, 68, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  padding: 0 24px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 116px;
  transition: height var(--transition);
}

#site-header.scrolled .header-inner { height: 116px; }

.logo { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo img { height: 106px; width: auto; object-fit: contain; display: block; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ---- Navigation ---- */
.main-nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Underline animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  border: 1px solid var(--gray-mid);
  z-index: 200;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
}
.dropdown a:hover { background: var(--gray-light); color: var(--navy); padding-left: 18px; }
.dropdown a .icon { font-size: 1rem; width: 20px; text-align: center; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.header-phone:hover { background: rgba(255,255,255,0.18); }
.header-phone .phone-icon { color: var(--orange); font-size: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
  background: none;
  border: none;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  overflow-y: auto;
  padding: 80px 24px 120px;
}
.mobile-menu.open { display: flex; }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 12px;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.mobile-nav .sub-link {
  font-size: 0.9rem;
  font-weight: 400;
  padding-left: 32px;
  color: rgba(255,255,255,0.65);
}
.mobile-nav .mobile-home-link {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 12px;
}
.mobile-nav .group-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  padding: 16px 16px 4px;
  font-weight: 600;
}
.mobile-menu-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-bg.webp');
  background-image: image-set(url('../assets/hero-bg.webp') type('image/webp'), url('../assets/hero-bg.png') type('image/png'));
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 45, 71, 0.90) 0%,
    rgba(20, 45, 71, 0.76) 30%,
    rgba(20, 45, 71, 0.28) 55%,
    rgba(20, 45, 71, 0.00) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,130,30,0.15);
  border: 1px solid rgba(232,130,30,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.hero-note {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: 36px;
  font-style: italic;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}
.hero-badge-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(232,130,30,0.4);
  color: var(--white);
}
.hero-badge-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p { color: var(--text-mid); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(194,125,14,0.1);
  color: var(--orange);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.services-grid-4 {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,39,68,0.12);
  border-color: rgba(232,130,30,0.3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(232,130,30,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
  transform: scale(1.1);
}

.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 700;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* Service card dark */
.service-card.dark {
  background: var(--navy);
  border-color: rgba(255,255,255,0.08);
}
.service-card.dark h3 { color: var(--white); }
.service-card.dark p { color: rgba(255,255,255,0.65); }
.service-card.dark .service-icon { background: rgba(232,130,30,0.2); }
.service-card.dark:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3); border-color: rgba(232,130,30,0.3); }

/* ---- Urgence Block ---- */
.urgence-section {
  background:
    linear-gradient(to right, #142D47 40%, rgba(20, 45, 71, 0.45) 100%),
    url('../assets/urgence-bg.webp') right center / cover no-repeat,
    #142D47;
  border-radius: 28px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.urgence-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(232,130,30,0.08);
}
.urgence-section::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

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

.urgence-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); font-weight: 700; margin-bottom: 16px; }
.urgence-section h2 { color: var(--white); margin-bottom: 20px; }
.urgence-section p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 32px; }

.urgence-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.urgence-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.urgence-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(232,130,30,0.2);
  border: 1px solid rgba(232,130,30,0.4);
  color: var(--orange);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.urgence-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-call {
  background: var(--orange);
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 0 0 var(--orange-glow);
}
.btn-call:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,130,30,0.5), 0 0 0 6px var(--orange-glow);
}

/* ---- Steps/Process ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: steps;
}
.step-item { text-align: center; padding: 32px 20px; position: relative; }
.step-item:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(232,130,30,0.3);
}
.step-item h4 { color: var(--navy); margin-bottom: 8px; }
.step-item p { color: var(--text-mid); font-size: 0.875rem; margin: 0; }
.step-card { text-align: center; padding: 32px 20px; background: var(--white); border-radius: 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.step-card h4 { color: var(--navy); margin-bottom: 8px; }
.step-card p { color: var(--text-mid); font-size: 0.875rem; margin: 0; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: var(--white); font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--gray-mid);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(232,130,30,0.3); }
.faq-item.open { border-color: var(--orange); box-shadow: 0 4px 16px rgba(232,130,30,0.1); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  background: var(--white);
  transition: background var(--transition);
}
.faq-item.open .faq-question { background: rgba(232,130,30,0.04); }
.faq-item:not(.open):hover .faq-question { background: var(--gray-light); }

.faq-question h4 { color: var(--navy); font-size: 0.95rem; font-weight: 600; }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: all var(--transition);
  color: var(--text-mid);
}
.faq-item.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---- Zones ---- */
.zones-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.zone-block {
  background: var(--gray-light);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: 1px solid rgba(20, 45, 71, 0.07);
}
.zone-block-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.zone-block-title {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.zone-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zone-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--white);
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 1px solid rgba(20, 45, 71, 0.1);
}
a.zone-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.zone-tag::before {
  content: '📍';
  font-size: 0.8rem;
}

/* ---- Trust Badges ---- */
.trust-section { background: var(--navy); padding: 48px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.trust-item {
  text-align: center;
  color: var(--white);
}
.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.trust-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.trust-item p { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ---- For Who Section ---- */
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.for-who-card {
  padding: 28px 24px;
  border-radius: var(--radius-card);
  text-align: center;
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.for-who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,130,30,0.3);
}
.for-who-icon { font-size: 2.5rem; margin-bottom: 16px; }
.for-who-card h4 { color: var(--navy); margin-bottom: 8px; }
.for-who-card p { color: var(--text-mid); font-size: 0.85rem; margin: 0; }

/* ---- Why Choose ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--gray-light);
  border-radius: 16px;
  transition: all var(--transition);
}
.why-item:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.why-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.95rem; }
.why-item p { color: var(--text-mid); font-size: 0.85rem; margin: 0; }

/* ---- Intervention Cards (Urgences sub-pages) ---- */
.intervention-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.intervention-card {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 20px 16px;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.intervention-card:hover {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.intervention-card h4 { color: var(--navy); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 0.9rem; }
.intervention-card h4 .tag {
  font-size: 0.7rem;
  background: rgba(232,130,30,0.1);
  color: var(--orange);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
}
.intervention-card ul { display: flex; flex-direction: column; gap: 6px; }
.intervention-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-mid);
  font-size: 0.875rem;
}
.intervention-card li::before {
  content: '•';
  color: var(--orange);
  font-weight: 700;
  font-size: 1rem;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 156px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(232,130,30,0.06);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 12px; }
.page-hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 32px;
}
.page-hero-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--orange); }

/* ---- Highlight Box ---- */
.highlight-box {
  background: rgba(232,130,30,0.08);
  border: 1px solid rgba(232,130,30,0.2);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 20px 24px;
}
.highlight-box p { color: var(--text-mid); margin: 0; font-size: 0.9rem; }

/* ---- Contact Form ---- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,130,30,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group .form-note { font-size: 0.75rem; color: var(--gray); }
.form-group input.field-error,
.form-group textarea.field-error { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.1); }
.form-group input.field-ok,
.form-group textarea.field-ok { border-color: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,0.08); }
.field-error-msg { font-size: 0.78rem; color: #dc2626; font-weight: 500; display: none; }
.field-error-msg.show { display: block; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.checkbox-group label { font-size: 0.85rem; color: var(--text-mid); cursor: pointer; }
.checkbox-group a { color: var(--orange); text-decoration: underline; }

/* ---- Contact Info ---- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.contact-card {
  padding: 28px 24px;
  background: var(--gray-light);
  border-radius: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}
.contact-card:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232,130,30,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-card h4 { color: var(--navy); font-size: 0.875rem; margin-bottom: 6px; }
.contact-card a { color: var(--orange); font-weight: 700; font-size: 0.95rem; }
.contact-card p { color: var(--text-mid); font-size: 0.875rem; margin: 0; }

/* ---- Map placeholder ---- */
.map-placeholder {
  height: 300px;
  background: var(--gray-mid);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.875rem;
  gap: 8px;
}

/* ---- Footer ---- */
#site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}
.footer-logo { display: flex; align-items: center; margin-bottom: 20px; }
.footer-logo img { height: 106px; width: auto; object-fit: contain; display: block; }
.footer-logo .logo-name { font-size: 1rem; color: var(--white); font-weight: 800; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-contact-item .icon { color: var(--orange); font-size: 1rem; width: 16px; }

.footer-col h5 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--orange); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.8rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--orange); }

/* ---- Mobile CTA Bar ---- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
}
.mobile-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all var(--transition);
}
.mobile-cta-call { background: var(--orange); color: var(--white); }
.mobile-cta-devis { background: var(--navy); color: var(--white); }

/* ---- Floating Phone Button ---- */
.float-phone {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(232,130,30,0.4);
  transition: all var(--transition);
  text-decoration: none;
  animation: pulse 2s infinite;
}
.float-phone:hover { transform: scale(1.1); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(232,130,30,0.4); }
  50% { box-shadow: 0 8px 40px rgba(232,130,30,0.6), 0 0 0 8px rgba(232,130,30,0.15); }
}

/* ---- Scroll Animations ---- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ---- Legal Pages ---- */
.legal-content h2 { color: var(--navy); margin: 40px 0 16px; font-size: 1.4rem; }
.legal-content h3 { color: var(--navy); margin: 24px 0 12px; font-size: 1.1rem; }
.legal-content p, .legal-content li { color: var(--text-mid); font-size: 0.9rem; line-height: 1.8; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { list-style: disc; }
.legal-content a { color: var(--orange); }

/* ---- Divider ---- */
.divider { height: 1px; background: var(--gray-mid); margin: 40px 0; }
.divider-lg { height: 1px; background: var(--gray-mid); margin: 60px 0; }

/* ---- Inline CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .btn-cta-group { justify-content: center; }

/* ---- Stats Bar ---- */
.stats-bar { background: var(--gray-light); padding: 48px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-number span { color: var(--orange); }
.stat-label { color: var(--text-mid); font-size: 0.875rem; margin-top: 8px; }

/* ---- Mini Map / Zone Map ---- */
.zone-map {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.zone-list { display: flex; flex-direction: column; gap: 8px; }
.zone-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--text);
  transition: all var(--transition);
}
.zone-list-item:hover { background: var(--navy); color: var(--white); }
.zone-list-item .zone-badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
}
.zone-badge.primary { background: rgba(232,130,30,0.1); color: var(--orange); }
.zone-badge.secondary { background: var(--gray-light); color: var(--gray); }

/* ---- Utility ---- */
.bg-gray { background: var(--gray-light); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.list-check { display: flex; flex-direction: column; gap: 8px; }
.list-check li {
  position: relative;
  padding: 12px 14px 12px 42px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(20, 45, 71, 0.07);
  color: var(--text-mid);
  font-size: 0.875rem;
  line-height: 1.5;
  list-style: none;
}
.list-check li strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 2px;
}
.list-check li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  top: 13px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(232, 130, 30, 0.1);
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .urgence-inner { grid-template-columns: 1fr; gap: 40px; }
  .urgence-section { padding: 48px 40px; }
  .zones-blocks { grid-template-columns: 1fr 1fr; }
  .intervention-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-actions .btn { display: none; }
  .header-phone { display: none; }
  .hamburger { display: flex; }

  .section { padding: 60px 0; }
  .section-lg { padding: 70px 0; }

  .hero { min-height: 100dvh; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }

  .urgence-section { padding: 40px 24px; border-radius: 20px; }
  .cta-banner { padding: 40px 24px; border-radius: 20px; }
  .contact-form { padding: 32px 24px; }

  .mobile-cta-bar { display: block; }
  .float-phone { display: flex; }

  body { padding-bottom: 80px; }

  .steps-grid { gap: 24px; }
  .step-item:not(:last-child)::after { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .zones-blocks { grid-template-columns: 1fr; }
  .intervention-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .container { padding: 0 16px; }
  .btn-cta-group { flex-direction: column; }
  .btn-cta-group .btn { width: 100%; justify-content: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 8px; }
  .urgence-cta { flex-direction: column; }
  .urgence-cta .btn { width: 100%; justify-content: center; }
}

/* ---- Print ---- */
@media print {
  #site-header, .mobile-cta-bar, .float-phone { display: none !important; }
  body { padding: 0; }
}

/* ---- Zone Dept Cards (zone sub-pages) ---- */
.zone-dept-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.zone-dept-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,130,30,0.3);
}
.zone-dept-icon { font-size: 2rem; margin-bottom: 12px; }
.zone-dept-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.zone-dept-card p { color: var(--text-mid); font-size: 0.875rem; margin: 0; }

/* ---- Autres Villes Card ---- */
.autres-villes-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px 40px;
  margin-top: 28px;
}
.autres-villes-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.autres-villes-pin {
  width: 52px;
  height: 52px;
  background: rgba(194,125,14,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.autres-villes-card h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  font-family: var(--font-heading);
}
.autres-villes-card .av-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}
.autres-villes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.av-tag {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
  cursor: default;
  transition: background 0.18s;
}
.av-tag .av-chevron {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.autres-villes-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.av-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  line-height: 1.35;
}
.av-stat-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .autres-villes-grid { grid-template-columns: repeat(3, 1fr); }
  .autres-villes-footer { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .autres-villes-card { padding: 24px 20px; }
  .autres-villes-grid { grid-template-columns: repeat(2, 1fr); }
  .autres-villes-footer { grid-template-columns: 1fr; }
}

/* ---- Urgence Info Block ---- */
.urgence-info-block {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}
.urgence-info-block h3 { color: var(--white); font-size: 1rem; margin-bottom: 12px; }
.urgence-info-block p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ---- Check List ---- */
.check-list { display: flex; flex-direction: column; gap: 8px; padding: 0; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  list-style: none;
}
.check-list li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(232,130,30,0.25);
  border: 1px solid rgba(232,130,30,0.5);
  color: var(--orange);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

/* ---- Stats Mini ---- */
.stats-mini { display: flex; flex-direction: column; gap: 16px; }
.stat-mini-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--gray-light);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.stat-mini-num { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-mini-label { font-size: 0.8rem; color: var(--text-mid); margin-top: 4px; }

/* ---- Info Card ---- */
.info-card {
  background: var(--gray-light);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  border: 1px solid var(--gray-mid);
}

/* ---- SEO Text Block ---- */
.seo-text { background: var(--gray-light); }
.seo-text h2 { color: var(--navy); margin-bottom: 16px; font-size: 1.2rem; }
.seo-text p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.8; }

/* ---- Background orange light ---- */
.bg-orange-light { background: rgba(232,130,30,0.06); }

/* ---- Address Autocomplete Dropdown ---- */
.addr-field-wrapper { position: relative; }
.addr-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  z-index: 200;
  max-height: 220px;
  overflow-y: auto;
  padding: 4px 0;
  list-style: none;
  margin: 0;
}
.addr-dropdown li {
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--navy);
  cursor: pointer;
  line-height: 1.4;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.addr-dropdown li:last-child { border-bottom: none; }
.addr-dropdown li:hover { background: rgba(20,45,71,0.06); }
.addr-ok-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #16a34a;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
}
.msg-counter {
  float: right;
  font-size: 0.78rem;
  font-weight: 400;
  color: #9ca3af;
  transition: color 0.2s;
}
.msg-counter.ok { color: #16a34a; }

/* ============================================================
   CORRECTIONS MOBILE / TABLETTE
   Toutes ces règles s'appliquent uniquement en dessous de 768px
   et ne touchent PAS à l'affichage desktop.
   ============================================================ */

@media (max-width: 768px) {

  /* 1 — Cartes services : centrer icône, titre, lien */
  .service-card { text-align: center; }
  .service-icon { margin-left: auto; margin-right: auto; }
  .service-link { justify-content: center; }

  /* 2 — Footer : centrer l'ensemble du contenu */
  .footer-brand { text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-contact-info { align-items: center; }
  .footer-col { text-align: center; }
  .footer-links { align-items: center; }
  .footer-links a { justify-content: center; }

  /* 3 — Header : logo réduit de 20 %, hauteur de barre ajustée */
  .logo img { height: 85px; }
  .header-inner { height: 90px; }
  #site-header.scrolled .header-inner { height: 90px; }

  /* 4 — Menu mobile ouvert : centrer tous les liens */
  .mobile-nav a { text-align: center; justify-content: center; }
  .mobile-nav .sub-link { padding-left: 16px; text-align: center; }
  .mobile-nav .group-title { text-align: center; }
  .mobile-home-link { justify-content: center; }
  .mobile-menu-cta a { justify-content: center; }

  /* 5 — Zones d'intervention : centrer les cartes et noms de villes */
  .zone-dept-card { text-align: center; }
  .zone-dept-icon { margin: 0 auto 12px; }
  .autres-villes-header { flex-direction: column; align-items: center; text-align: center; }

  /* 6 — Formulaire devis : corriger le débordement horizontal */
  .contact-form { max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
  .form-grid { max-width: 100%; }
  .addr-field-wrapper, .addr-dropdown { max-width: 100%; }
}
