/* ============================================
   local-seo.css — Styles spécifiques aux pages SEO locales
   BE WEB | be-web.be
   ============================================ */

/* Grille localités */
.localites-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.localite-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #dce8f8;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #0b2444;
  cursor: default;
}

.localite-tag:hover {
  background: #edf6ff;
  border-color: #0f7bdc;
  color: #0f7bdc;
}

/* Renforcement hero sur pages locales */
.hero-page .hero-page-inner .hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

/* Stats band local */
.local-stats-band {
  background: #0b4f9c;
  color: #fff;
  padding: 32px 20px;
}

.local-stats-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.local-stat {
  text-align: center;
}

.local-stat-num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
}

.local-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* Lien d'autres villes en bas de page */
.autres-villes-section {
  padding: 48px 20px;
  background: #f8fbff;
}

.autres-villes-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.autres-villes-inner h3 {
  font-size: 20px;
  font-weight: 900;
  color: #0b2444;
  margin-bottom: 20px;
}

.autres-villes-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.autres-villes-links a {
  display: inline-block;
  padding: 7px 16px;
  background: #fff;
  border: 1px solid #dce8f8;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #0f7bdc;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}

.autres-villes-links a:hover {
  background: #edf6ff;
  border-color: #0f7bdc;
}
