/* ============================================================
   StopNuisibles53 — Styles pages internes
   Complément de styles.min.css pour pest pages, contact, about
   ============================================================ */

:root {
  --primary: #c48f59;
  --primary-light: #d6a978;
  --primary-dark: #a67642;
  --bg: #fef9ef;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --border: #e8d9c0;
  --radius: 0.375rem;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
}

/* ============================================================
   LOGO TEXT (header)
   ============================================================ */
.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* ============================================================
   FOOTER COLONNES (footer-services, footer-zones)
   ============================================================ */
.footer-services h3,
.footer-zones h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-services ul,
.footer-zones ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-services ul a,
.footer-zones ul a {
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-services ul a:hover,
.footer-zones ul a:hover {
  opacity: 1;
}

/* ============================================================
   BOUTONS MANQUANTS
   ============================================================ */
.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

/* ============================================================
   HERO PAGES NUISIBLES (pest-hero)
   ============================================================ */
.pest-hero {
  position: relative;
  background-color: var(--primary-dark);
  background-size: cover;
  background-position: center;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.pest-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
}

.pest-hero .container {
  position: relative;
  z-index: 1;
}

.pest-hero-content {
  max-width: 720px;
}

.pest-hero-text h1,
.pest-hero-content h1,
.pest-hero .hero-content h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.pest-hero-text p,
.pest-hero-content > p,
.pest-hero .hero-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.pest-hero-buttons,
.pest-hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pest-hero-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================================
   SECTION COMMUNE
   ============================================================ */
.pest-info,
.treatment-process,
.prevention-tips,
.pest-signs,
.pest-approach,
.pest-prevention,
.pest-faq,
.pest-cta {
  padding: 4rem 0;
}

.pest-info:nth-child(even),
.treatment-process:nth-child(even) {
  background: var(--bg);
}

/* ============================================================
   PEST INFO (texte + image côte à côte)
   ============================================================ */
.pest-info-content,
.pest-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.pest-info-text h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 1.5rem 0 0.5rem;
}

.pest-info-text h3:first-child {
  margin-top: 0;
}

.pest-info-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.pest-info-text ul {
  padding-left: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
}

.pest-info-text li {
  margin-bottom: 0.25rem;
}

.pest-info-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================================
   SIGNS GRID (grille de signes d'infestation)
   ============================================================ */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.sign-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.sign-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.sign-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   APPROACH STEPS (étapes numérotées)
   ============================================================ */
.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.approach-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   PROCESS STEPS (3 étapes avec icône image)
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.process-step {
  text-align: center;
}

.step-icon {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   PREVENTION GRID
   ============================================================ */
.prevention-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.prevention-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border-left: 3px solid var(--primary);
  box-shadow: var(--shadow);
}

.prevention-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.prevention-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   TIPS LIST
   ============================================================ */
.tips-content {
  margin-top: 2rem;
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.tip h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.tip p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */
.pest-faq .container > h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  position: relative;
  padding-right: 3rem;
  border-left: 3px solid var(--primary);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 300;
  line-height: 1;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

/* ============================================================
   CTA SECTION (pages internes)
   ============================================================ */
.cta-section {
  background: var(--primary-dark);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   PAGE CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--white);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.contact-icon .icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--primary);
}

.contact-text h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.contact-text p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-text a {
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-text a:hover {
  text-decoration: underline;
}

.emergency-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}

.emergency-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.emergency-box p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* ============================================================
   FORMULAIRE
   ============================================================ */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.6rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1rem 0;
}

.form-group.checkbox input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--primary);
}

.form-group.checkbox label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.5;
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  text-align: center;
}

/* ============================================================
   PAGE À PROPOS
   ============================================================ */
.about-hero {
  background: var(--primary-dark);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.about-hero .subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
}

.about-section {
  padding: 4rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.about-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.about-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.about-values,
.about-team,
.about-certifications,
.about-commitment {
  margin-bottom: 3rem;
}

.about-values h2,
.about-team h2,
.about-certifications h2,
.about-commitment h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.about-team p,
.about-certifications p,
.about-commitment p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.about-certifications ul,
.about-commitment ul {
  padding-left: 1.25rem;
  color: var(--text-light);
  line-height: 2;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.cta-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.cta-box h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

/* ============================================================
   HERO CONTACT
   ============================================================ */
.hero.contact-hero {
  min-height: 250px;
  padding: 3rem 0;
}

/* ============================================================
   HERO SMALL (services.html)
   ============================================================ */
.hero-small {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 4rem 0;
  overflow: hidden;
}

.hero-small .overlay {
  position: absolute;
  inset: 0;
  display: none;
}

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

.hero-small h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.hero-small p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}

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

.hero-small.text-center .hero-content {
  margin: 0 auto;
}

/* ============================================================
   SERVICES DÉTAILLÉS (services.html)
   ============================================================ */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-detailed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  background: var(--white);
}

.service-detailed .service-image {
  height: 260px;
  overflow: hidden;
}

.service-detailed .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-detailed:hover .service-image img {
  transform: scale(1.03);
}

.service-text {
  padding: 1.75rem 2rem;
}

.service-text h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  border-left: 4px solid var(--primary);
  padding-left: 0.75rem;
}

.service-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.service-text .btn {
  margin-top: 0.5rem;
}

/* ============================================================
   ZONES INTERVENTION (zones-intervention.html)
   ============================================================ */
.zones-content .lead {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 0.375rem 0.375rem 0;
}

.zones-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}

.zones-content > p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.zones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.zone-card-large {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.zone-card-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.zone-header {
  background: var(--primary-dark);
  padding: 0.85rem 1.25rem;
}

.zone-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.zone-header .icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--primary-light);
  flex-shrink: 0;
}

.zone-card-full .zone-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.zone-card-full .zone-header h3 {
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.zone-card-full .zone-header .icon {
  color: var(--primary-dark);
}

.zone-body {
  padding: 1.25rem;
}

.zone-body > p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.zone-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.zone-body li {
  font-size: 0.875rem;
  color: var(--text);
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.zone-body li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.zone-grid-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 1rem !important;
}

.zone-note {
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-style: italic;
  margin-top: 0.75rem !important;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border);
}

.intervention-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}

.intervention-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow);
}

.intervention-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.intervention-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.advantages-local {
  margin-bottom: 2rem;
}

.advantages-local > p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.advantages-local ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.advantages-local li {
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 0.375rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  box-shadow: var(--shadow);
}

.advantages-local li strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.15rem;
}

/* ============================================================
   PAGES LÉGALES (mentions-legales, politique, CGU)
   ============================================================ */
.legal-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-dark) 100%);
  padding: 3rem 0;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.legal-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 0;
}

.legal-toc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 3rem;
}

.legal-toc h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.legal-toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.legal-toc li a {
  font-size: 0.875rem;
  color: var(--primary-dark);
  text-decoration: none;
}

.legal-toc li a:hover {
  text-decoration: underline;
}

.legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-block h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.legal-block h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 0.5rem;
}

.legal-block p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.legal-block ul,
.legal-block ol {
  padding-left: 1.25rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.legal-block ul {
  list-style: disc;
}

.legal-block ol {
  list-style: decimal;
}

.legal-block li {
  margin-bottom: 0.25rem;
}

.legal-block a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.legal-block a:hover {
  color: var(--primary);
}

.legal-block .legal-identity {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  padding: 1rem 1.25rem;
  margin: 0.75rem 0;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text);
}

.legal-block .legal-identity strong {
  color: var(--primary-dark);
}

.legal-update {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  text-align: right;
}

/* ============================================================
   ZONES HERO (pest-hero avec map iframe)
   ============================================================ */
.pest-hero .pest-hero-image iframe {
  border: 0;
  border-radius: 0.5rem;
  width: 100%;
  height: 250px;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

@media (min-width: 900px) {
  .pest-hero .pest-hero-content:has(.pest-hero-image) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: none;
  }

  .pest-hero .pest-hero-image iframe {
    height: 320px;
  }
}

/* ============================================================
   BACK LINK
   ============================================================ */
.back-link {
  margin-bottom: 2rem;
}

.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.back-link a:hover {
  color: var(--primary);
}

.back-link .icon {
  width: 1rem;
  height: 1rem;
}

/* ============================================================
   CONTENT SECTION (wrapper de section — pages nuisibles réécrits)
   ============================================================ */
.content-section {
  padding: 4rem 0;
}

.content-section.bg-light {
  background: var(--bg);
}

/* SECTION HEADER (h2 + intro centré) */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2rem;
}

.section-header h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* SIGN ITEM (même style que .sign-card) */
.sign-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.sign-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.sign-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA BOX BUTTONS */
.cta-box-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
}

/* INFO BOX H3 */
.info-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.75rem !important;
}

/* ============================================================
   PEST CONTENT (pages nuisibles — rats, cafards, etc.)
   ============================================================ */
.pest-content {
  max-width: 860px;
  margin: 0 auto;
}

.pest-content .lead {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 0.375rem 0.375rem 0;
}

.pest-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 0.75rem;
}

.pest-content h2:first-child {
  margin-top: 0;
}

.pest-content > p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* RISK CARDS */
.risk-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

.risk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow);
}

.risk-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.risk-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

/* SOLUTION STEPS */
.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 1.5rem 0;
}

.solution-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.solution-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.solution-text {
  padding: 1.25rem 1.5rem;
}

.solution-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.solution-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0;
}

/* PEST LIST */
.pest-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pest-list li {
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  border-left: 3px solid var(--primary);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  box-shadow: var(--shadow);
}

.pest-list li strong {
  color: var(--text);
}

/* IMAGE DANS LE CONTENU (pest pages) */
.content-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  margin: 1.75rem 0 0.5rem;
}

.content-img-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  font-style: italic;
  line-height: 1.5;
}

/* RISK CARDS — 2 colonnes fixes (espèces, dangers sans image) */
.risk-cards--2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

@media (min-width: 640px) {
  .risk-cards--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SOLUTION STEP sans image (full-width) */
.solution-step--full {
  display: block;
}

.solution-step--full .solution-text {
  padding: 1.5rem;
}

.solution-step--full .solution-text h3 {
  margin-bottom: 0.75rem;
}

/* INFO BOX */
.info-box {
  background: var(--amber-50, #fffbeb);
  border: 1px solid #f0d080;
  border-radius: 0.5rem;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.info-box h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.75rem !important;
}

.info-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.info-box .highlight {
  font-weight: 600;
  color: var(--primary-dark);
}

/* CTA BOX (inside pest-content) */
.cta-box .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* ============================================================
   RESPONSIVE — TABLET (min 640px)
   ============================================================ */
@media (min-width: 640px) {
  .zones-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zone-grid-list {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .intervention-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .service-detailed {
    grid-template-columns: 1fr 1fr;
  }

  .service-detailed .service-image {
    height: auto;
    min-height: 280px;
  }

  .service-detailed.reverse .service-image {
    order: 2;
  }

  .service-detailed.reverse .service-text {
    order: 1;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (min 640px) — risk cards 2 col
   ============================================================ */
@media (min-width: 640px) {
  .risk-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-step {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .solution-step.reverse .solution-image {
    order: 2;
  }

  .solution-step.reverse .solution-text {
    order: 1;
  }

  .solution-image img {
    height: 100%;
    min-height: 200px;
  }

  .cta-box .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .risk-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .content-section {
    padding: 2.5rem 0;
  }

  .pest-hero {
    min-height: auto;
    padding: 2.5rem 0;
  }

  .pest-hero-text h1,
  .pest-hero .hero-content h1 {
    font-size: 1.4rem;
  }

  .pest-info-content,
  .pest-info-grid {
    grid-template-columns: 1fr;
  }

  .pest-info-image {
    order: -1;
  }

  .signs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tips-list {
    grid-template-columns: 1fr 1fr;
  }

  .prevention-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    display: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .logo-tagline {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE — PETIT MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .signs-grid {
    grid-template-columns: 1fr;
  }

  .tips-list {
    grid-template-columns: 1fr;
  }

  .pest-hero-buttons,
  .pest-hero .hero-buttons {
    flex-direction: column;
  }

  .pest-hero-buttons .btn,
  .pest-hero .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
