.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-local .hero-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-local .hero-title {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-local .hero-subtitle {
  margin-top: 20px;
  font-size: 1.1rem;
}
.local-areas {
  padding: 80px 0;
  background: #f9fafb;
}

.local-areas h2 {
  margin-bottom: 20px;
}
.local-areas {
  padding: 80px 0 20px;
}


.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 30px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.cities-grid li {
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-weight: 500;
}
.process {
  padding: 40px 0 80px;
}


.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.process .step {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.process .step h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.urgency {
  padding: 80px 0;
  background: #111827;
  color: #fff;
  text-align: center;
}

.urgency h2 span {
  color: #ef4444;
}

.urgency p {
  max-width: 800px;
  margin: 20px auto 40px;
  font-size: 1.05rem;
}
@media (max-width: 768px) {
  .hero-local .hero-title {
    font-size: 2.2rem;
  }

  .process-steps {
    gap: 20px;
  }
}

.process {
  padding: 80px 0;
}

.process-steps-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px 30px;
  border: 1px solid rgba(0, 0, 0, 0.06); /* encadré léger */
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  border-color: rgba(239, 68, 68, 0.25); /* rouge subtil au hover */
}


.process-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(239, 68, 68, 0.15); /* rouge theme */
}

.process-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.process-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}
.faq {
  padding: 80px 0;
  background: #f9fafb;
}

.faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.5rem;
  color: #ef4444;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(0,0,0,0.06);
  border-top: none;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 18px 22px;
  margin: 0;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

.faq,
.faq * {
  font-family: 'Poppins', sans-serif;
}
.faq-question {
  background: #ffffff; /* fond visible */
  color: #111827;       /* texte sombre */
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 1.05rem;
}
.hero-local {
  padding-top: 60px;
}
/* === FIX DEFINITIF espace header -> H1 pages locales === */

/* 1. On supprime tout offset ajouté par WP / thème */
.page-template-page-deratisation-92-php main,
.page-template-page-deratisation-95-php main,
.page-template-page-deratisation-92-php #content,
.page-template-page-deratisation-95-php #content,
.page-template-page-deratisation-92-php #page,
.page-template-page-deratisation-95-php #page {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* 2. On force le hero à démarrer juste sous le header */
.page-template-page-deratisation-92-php .hero,
.page-template-page-deratisation-95-php .hero {
  padding-top: 90px !important;
  margin-top: 0 !important;
}

/* 3. Sécurité : aucun margin parasite avant le H1 */
.page-template-page-deratisation-92-php .hero-content,
.page-template-page-deratisation-95-php .hero-content,
.page-template-page-deratisation-92-php .hero-title,
.page-template-page-deratisation-95-php .hero-title {
  margin-top: 0 !important;
}
@media (max-width: 768px) {
  .cities-grid {
    justify-items: center;
  }

  .cities-grid li {
    width: 100%;
    max-width: 340px;
  }
}
