/* ============================================================
   RESET, VARIABLES & BASES – NUISIBLES FRANCE
============================================================ */
/* Reset global */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables globales */
:root {
  /* Couleurs principales */
  --primary-color: #177342;            /* jaune – structure et titres */
  --secondary-color: #0D100D;          /* bleu sombre – boutons */
  --secondary-color-dark: #177342;     /* Hover jaune plus foncé */
  --accent-color: #177342;             /* Rouge vif – urgences, alertes */

  /* Couleurs neutres */
  --text-color: #333;
  --text-color-secondary: #555555;
  --background-color: #f9f9f9;
  --hover-background-color: #f7f7f7;
  --border-color: #dddddd;
  --border-color-light: #e5e5e5;

  /* Ombres */
  --box-shadow-color: rgba(0, 0, 0, 0.1);
  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  /* Tailles de police (1rem = 16px) */
  --font-size-base: 1rem;         /* 16px */
  --font-size-large: 1.5rem;      /* 24px */
  --font-size-medium: 1.125rem;   /* 18px */
  --font-size-small: 0.875rem;    /* 14px */
  --font-size-th: 0.9375rem;      /* 15px */
  --font-size-subheading: 2.8rem; /* h2 – 44.8px */
  --font-size-heading: 3.2rem;    /* h1 – 51.2px */

  /* Espacements & bordures */
  --spacing-unit: 1rem;
  --spacing-base: 1rem;
  --spacing-large: 2rem;
  --border-radius: 0.5rem;
}

/* Base du document */
html {
  scroll-behavior: smooth;
}

body {
  font-family: sans-serif, Arial, Helvetica, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-color);
  background-color: var(--background-color);
}

/* Container général */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

/* Titres */
h1 {
  font-size: clamp(2.2rem, 6vw, var(--font-size-heading));
}
section h1,
article h1,
aside h1,
nav h1 {
  font-size: clamp(2.2rem, 6vw, var(--font-size-heading));
  font-size: 3.2rem;
}
h2 {
  font-size: clamp(1.8rem, 5vw, var(--font-size-subheading));
}
h3, h4 {
  font-size: clamp(1.4rem, 4vw, var(--font-size-large));
}
h5, h6 {
  font-size: clamp(1.1rem, 3vw, var(--font-size-medium));
}
h1, h2, h3, h4, h5, h6 {
  font-family: sans-serif, Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: var(--spacing-unit);
}

/* Liens */
a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dividers */
.section-divider {
  line-height: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.divider-svg {
  display: block;
  width: 100%;
  height: 50px;
}

/* ============================================================
   HEADER & MENU – NUISIBLES FRANCE
============================================================ */
.skip-link {
  position: absolute;
  left: -9999px; /* complètement hors écran */
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
  width: auto;
  height: auto;
  overflow: visible;
  background: #14477F;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 4px;
}

header {
  width: 100%;
  background-color: var(--background-color);
  top: 0;
  padding: 0.75rem 2rem;
  position: sticky;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 999;
  transition: all 0.3s ease;
  padding: 1.2rem 2rem;
}

/* Effet sticky activé */
header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 2rem;
}

/* Logo effet réduit */
header .logo {
  max-height: 100px;
  transition: max-height 0.3s ease, transform 0.3s ease;
}

header.scrolled .logo {
  max-height: 56px;
  transform: scale(0.95);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 100%;
}

/* Conteneur du logo */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 220px;
  height: 76px;
  overflow: hidden;
}

/* Image par défaut */
.logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  flex-shrink: 0;
}

/* Menu icône mobile (non utilisé pour l'instant) */
.menu-icon {
  display: none;
  font-size: 3rem;
  cursor: pointer;
  color: var(--primary-color);
}

/* Navigation */
header nav {
  flex-grow: 1;
  max-width: 100%;
}

header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  white-space: normal;
}

header nav ul li {
  position: relative;
}

header nav ul li a,
header nav ul li button.dropbtn {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-color-secondary);
  font-weight: 600;
  font-size: var(--font-size-normal);
  border-radius: var(--border-radius);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

header nav ul li a:hover,
header nav ul li button.dropbtn:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-1px);
}

/* Menu déroulant */
header nav ul li .dropdown-content {
  display: none; /* ✅ Garder seulement celui-ci */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 440px; /* Pour deux colonnes */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius);
  z-index: 999;
  overflow: hidden;
  grid-template-columns: 1fr 1fr; /* ✅ on garde le layout ici */
}

header nav ul li .dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  font-size: var(--font-size-small);
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap; /* évite le retour à la ligne */
}

header nav ul li .dropdown-content a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Survol desktop */
header nav ul li:hover .dropdown-content {
  display: grid;
  animation: fadeIn 0.3s ease-in-out;
}

/* Affichage mobile (JS ajoute .show) */
.dropdown.show .dropdown-content {
  display: grid;
}

.dropbtn::after {
  content: "▾";
  font-size: 1em;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.dropbtn[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bouton téléphone */
header .btn-quote {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius:20px 20px 30px 30px;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: var(--box-shadow);
  text-align: center;
}

header .btn-quote:hover {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}

.btn-quote-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.btn-quote-phone {
  font-size: var(--font-size-medium);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.btn-quote-text {
  font-size: var(--font-size-small);
  opacity: 0.9;
  line-height: 1.1;
}

/* ============================================================
   SECTION #HOME – BANNIÈRE NUISIBLES FRANCE
============================================================ */
#home {
  position: relative;
  min-height: 100vh; /* mieux pour les petits écrans */
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  color: #fff;
  padding-top: 8rem;
  padding-bottom: 6rem;
  box-sizing: border-box;
}

#home .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
  contain: strict; /* Ajout pour aider le navigateur à mieux gérer le rendu */
}

#home .bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* superposition sombre */
#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Contenu principal visible immédiatement */
.top .container-full {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  opacity: 1; /* plus d’animation bloquante */
}

/* TITRE */
.top h1 {
  font-size: clamp(2.5rem, 4.2vw, 3.3rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
  margin: 0;
  contain: content;
}

/* PARAGRAPHE */
.top p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: 0;
  color: #f2f2f2;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.top p a{
  color: #fff;
}

.top p a:hover{
  color: #000;
}

/* BÉNÉFICES */
.key-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 600px;
  text-align: left;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.key-benefits li {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  display: flex;
  align-items: center;
}

.key-benefits i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.6rem;
}

/* BOUTON CTA */
.btn-main {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 1.2rem 2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, background-color 0.3s;
  margin-top: 1rem;
}

.btn-main:hover {
  transform: translateY(-3px);
  background-color: var(--primary-color);
  color: #fff;
}

/* ICÔNES DE CONFIANCE */
.trust-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.trust-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 300px;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.trust-icon img {
  width: 60px;
  height: auto;
}

.trust-icon p {
  font-size: .9rem!important;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* ============================================================
   SECTION Fils d'Ariane – NUISIBLES FRANCE
============================================================ */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 1rem;
    margin-bottom: 1rem;
    background-color: var(--background-color);
    border-radius: 0.25rem;
    font-size: 0.95rem;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item {
    margin-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    margin: 0 0.5rem;
    color: #ccc;
}

.breadcrumb-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover,
.breadcrumb-item a:focus {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #222;
    font-weight: 600;
    pointer-events: none;
    cursor: default;
}

/* ============================================================
   SECTION Services – NUISIBLES FRANCE
============================================================ */
.services {
  padding: calc(var(--spacing-unit) * 4) 0;
  background-color: var(--background-color);
  text-align: center;
  display: block;
  visibility: visible;
}

.services h2 {
  font-size: var(--font-size-subheading);
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-weight: 700;
}

.services > .container > p {
  margin-bottom: 3rem;
  font-size: var(--font-size-medium);
  color: var(--text-color-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grille des cartes */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  margin-bottom: 1.5rem;
  aspect-ratio: 1 / 1;
  display: block;
}

/* Titres de carte */
.service-card h3 {
  font-size: var(--font-size-large);
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Texte de carte */
.service-card p {
  font-size: var(--font-size-small);
  color: var(--text-color-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Liste d'avantages dans la carte */
.service-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.service-benefits li {
  display: flex;
  align-items: center;
  font-size: var(--font-size-small);
  color: var(--text-color-secondary);
  margin-bottom: 0.8rem;
}

.service-benefits li i {
  color: var(--primary-color);
  margin-right: 0.6rem;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Lien sous la carte */
.btn-service {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: var(--font-size-small);
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: var(--box-shadow);
}

.btn-service:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.btn-service:focus {
  outline: 3px solid var(--secondary-color);
  outline-offset: 4px;
}

.service-card:focus-within {
  box-shadow: 0 0 0 3px var(--secondary-color);
}

.note-cross {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--primary-color); /* rouge foncé discret */
  background: #fdf2f2;            /* fond très clair */
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  border-radius: 6px;
}

.note-cross a {
  color: var(--primary-color);                 /* même ton rouge que la bordure */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.note-cross a:hover,
.note-cross a:focus {
  color: var(--secondary-color);             /* plus foncé au hover */
  text-decoration: underline;
}

/* ============================================================
   SECTION Advantages – NUISIBLES FRANCE
============================================================ */
.advantages {
  padding: 4rem 0;
  background-color: var(--background-color);
  text-align: center;
}

.advantages h2 {
  font-size: var(--font-size-subheading);
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.advantages .container > p {
  font-size: var(--font-size-medium);
  color: var(--text-color-secondary);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.advantage-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.advantage-item {
  flex: 1 1 300px;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.advantage-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.advantage-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #000, var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.advantage-item i:hover {
  transform: scale(1.15);
  filter: brightness(1.3);
}

.advantage-item h3 {
  font-size: var(--font-size-large);
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.advantage-item p {
  font-size: var(--font-size-small);
  color: var(--text-color-secondary);
  line-height: 1.6;
}

.advantages .btn-adv {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.75rem 2rem;
  font-size: var(--font-size-medium);
  font-weight: 600;
  color: #fff;
  background-color: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.advantages .btn-adv:hover {
  background-color: #000;
  transform: translateY(-2px);
}

/* ============================================================
   SECTION Reviews – NUISIBLES FRANCE 
============================================================ */
.reviews-section {
  position: relative;
  background-color: var(--background-color);
  padding: 50px 20px;
  overflow-x: clip;
}

.reviews-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #222;
}

.reviews-section .reviews-intro {
  text-align: center;
  font-size: clamp(1.2rem, 1.8vw, var(--font-size-medium));
  color: var(--text-color-secondary);
  margin-bottom: 5rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Conteneur du carrousel */
.reviews-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.reviews-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 20px;
  position: relative;
  min-height: 300px;
  padding: 0 0 30px;
  transition: transform 0.5s ease-in-out;
  width: 100%; /* ✅ force largeur maximale */
}

/* Éléments des avis */
.review-item {
  flex: 0 0 auto;
  width: calc((100% - 40px) / 3); /* 3 avis avec 2 gaps */
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: all 0.5s ease;
  display: none;
}

.review-item.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* Carte avis */
.review-container {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 16px;
  border: 1px solid #ddd;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.review-content {
  font-size: 1rem;
  color: #555;
}

.review-content p {
  margin: 0;
  line-height: 1.5;
}

.review-author {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.review-author img {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-right: 12px;
  border: 2px solid #14477F;
}

.initials-avatar {
  background-color: #14477F;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  text-transform: uppercase;
}

.review-author p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  font-weight: 600;
}

.review-rating {
  margin-top: 15px;
}

.review-rating .star {
  font-size: 1.2em;
  color: #f4b400;
  margin-right: 2px;
}

/* Contrôles du carrousel */
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
  padding: 0 10px; /* un peu d’espace pour ne pas coller aux bords */
}

.carousel-controls button {
  background-color: rgba(255, 255, 255, 0.2); /* discret */
  color: #000;
  opacity: 0.4; /* encore plus discret */
  transition: background-color 0.3s, opacity 0.3s, transform 0.3s;
  border: none;
  font-size: 2rem;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  pointer-events: all;
}

.carousel-controls button:hover {
  background-color: rgba(255, 255, 255, 0.9); /* très lisible */
  opacity: 1;
  transform: scale(1.1);
}

/* ============================================================
   SECTION Maintenance – NUISIBLES FRANCE
============================================================ */
.maintenance-section {
  padding: 60px 20px;
  text-align: center;
}

.maintenance-section .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.maintenance-section .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.maintenance-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.maintenance-card {
  background: #fff;
  padding: 20px;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: left;
}

.maintenance-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.maintenance-card p {
  color: #555;
  font-size: 0.95rem;
}

.maintenance-cta .btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

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

/* ============================================================
   SECTION Steps – NUISIBLES FRANCE
============================================================ */
.steps {
  padding: 4rem 2rem;
  background-color: var(--background-color);
  text-align: center;
}

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

.steps > .container > p {
  font-size: var(--font-size-medium);
  color: var(--text-color-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* Grille des étapes */
.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Carte d'étape */
.step-item {
  flex: 1 1 300px;
  max-width: 360px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* Icône */
.step-item i {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.step-item i:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Titre d'étape */
.step-item h3 {
  font-size: var(--font-size-large);
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* ============================================================
   SECTION Symptômes – NUISIBLES FRANCE
============================================================ */
#symptomes {
  padding: 60px 20px;
  background: #f9f9f9;
}

#symptomes h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-color); /* bleu foncé branding */
}

.signs-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.signs-list li {
  display: flex;
  align-items: center;
  background: #fff;
  margin: 12px 0;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-size: 1.1rem;
  line-height: 1.5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.signs-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.signs-list i {
  font-size: 1.4rem;
  color: var(--primary-color); /* vert pour accent */
  margin-right: 15px;
  min-width: 24px;
  text-align: center;
}

/* ============================================================
   SECTION méthodes & produits – NUISIBLES FRANCE
============================================================ */
#produits {
  padding: 3rem 1rem;
  background: #ffffff;
}

#produits h2 {
  position: relative;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #177342; /* vert primaire */
  letter-spacing: 0.2px;
}

#produits h2::after {
  content: "";
  display: block;
  width: 88px;
  height: 3px;
  margin: 0.6rem auto 0;
  border-radius: 3px;
  background: #177342; /* soulignement vert */
}

#produits > .container > p {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem auto;
  font-size: 1rem;
  line-height: 1.65;
  color: #424242;
}

/* Grille responsive */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* Card méthode */
.method {
  position: relative;
  background: #f3faf6;                /* fond doux vert clair */
  border: 1px solid #cde6da;          /* contour léger */
  border-left: 6px solid #177342;     /* accent vert primaire */
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1.15rem;
  box-shadow: 0 6px 18px rgba(23, 115, 66, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.method:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(23, 115, 66, 0.15);
  border-color: #a9d3bb;
}

.method:focus-within {
  outline: none;
  box-shadow: 0 0 0 3px rgba(23, 115, 66, 0.25), 0 8px 22px rgba(23, 115, 66, 0.12);
}

/* Titre méthode avec puce d’accent */
.method h3 {
  position: relative;
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
  padding-left: 1.6rem;
  color: #212121;
}

.method h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: #177342;                 /* point vert primaire */
  box-shadow: 0 0 0 4px #e0f3e9;       /* halo doux */
}

/* Texte */
.method p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #2f2f2f;
}

/* Accessibilité */
.method a:focus-visible, 
.method button:focus-visible {
  box-shadow: 0 0 0 3px rgba(23, 115, 66, 0.3);
  border-radius: 8px;
}

/* Motion-safe */
@media (prefers-reduced-motion: reduce) {
  .method,
  .method:hover {
    transition: none;
    transform: none;
  }
}

/* ============================================================
   SECTION Tarifs & devis – NUISIBLES FRANCE
============================================================ */
#tarifs {
  padding: 60px 20px;
  background: #f9f9f9;
}

#tarifs h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary-color); /* bleu branding */
}

#tarifs > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px auto;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}

/* Grille des cartes prix */
.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1000px;
  margin: 0 auto 20px auto;
}

/* Carte prix */
.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.price-card h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.price-card p {
  margin: 0 0 10px 0;
  color: #555;
  line-height: 1.5;
}

/* Montant */
.price-card .price {
  font-size: 1.15rem;
  margin: 10px 0 16px 0;
  color: #111;
}

.price-card .price strong {
  font-size: 1.35rem;
  letter-spacing: 0.2px;
}

/* Boutons */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}

/* CTA central */
.cta-center {
  text-align: center;
  margin-top: 8px;
}

.btn-main {
  display: inline-block;
  background: var(--primary-color);        /* vert accent */
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-main:hover,
.btn-main:focus-visible {
  filter: brightness(0.95);
  transform: translateY(-2px);
  outline: none;
}

/* Responsive micro-ajustements */
@media (max-width: 480px) {
  #tarifs {
    padding: 48px 16px;
  }
  .price-card {
    padding: 20px 18px;
  }
  .btn, .btn-main {
    width: 100%;
  }
}

/* ============================================================
   SECTION Formulaire d'urgence – NUISIBLES FRANCE
============================================================ */
#audit-form {
  padding: 4rem 0;
  background-color: var(--background-color);
  text-align: center;
}

#audit-form h2 {
  font-size: var(--font-size-subheading);
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-weight: 700;
}

#audit-form p {
  font-size: var(--font-size-medium);
  color: var(--text-color-secondary);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Formulaire aligné horizontalement */
#audit-form .form-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Champs du formulaire */
#audit-form input[type="text"],
#audit-form input[type="tel"] {
  padding: 1rem;
  font-size: var(--font-size-base);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  min-width: 240px;
  max-width: 100%;
  background-color: #fff;
  color: var(--text-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#audit-form input:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.2);
}

/* Bouton du formulaire */
#audit-form .btn-main {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 1rem 2rem;
  font-size: var(--font-size-small);
  font-weight: bold;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
  box-shadow: var(--box-shadow);
}

#audit-form .btn-main:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

#audit-form .btn-main:focus {
  outline: 3px solid var(--primary-color);
  outline-offset: 4px;
}

#audit-form .visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#audit-form .form-rgpd {
  font-size: var(--font-size-xsmall);
  color: var(--text-color-secondary);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

#audit-form .form-rgpd a {
  color: var(--secondary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

#audit-form .form-rgpd a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

/* ============================================================
   SECTION Brands – NUISIBLES FRANCE
============================================================ */
.brands {
  padding: 4rem 0;
  background-color: var(--background-color);
}

.brands h2 {
  text-align: center;
  font-size: clamp(2.2rem, 2.5vw, var(--font-size-subheading));
  margin-bottom: 2rem;
  color: var(--text-color);
  font-weight: 700;
}

.brands > .container > p {
  text-align: center;
  font-size: clamp(1.2rem, 1.8vw, var(--font-size-medium));
  color: var(--text-color-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grille fluide des logos */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
}

/* Logos partenaires */
.brand-item img {
  max-width: 100%;
  max-height: 90px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.brand-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Légendes sous logos (facultatif) */
.brand-item p {
  margin-top: 0.5rem;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--text-color-secondary);
  text-align: center;
  max-width: 240px;
  line-height: 1.4;
}

/* ============================================================
   SECTION Statistics – NUISIBLES FRANCE
============================================================ */
.statistics {
  padding: 4rem 2rem;
  background-color: var(--background-color);
  text-align: center;
}

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

.statistics > .container > p {
  font-size: var(--font-size-medium);
  margin-bottom: 2.5rem;
  color: var(--text-color-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grille des statistiques */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Carte individuelle */
.stat-item {
  flex: 1 1 200px;
  max-width: 240px;
  background-color: #fff;
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--text-color);
  margin: 0.5rem 0;
}

.stat-item p {
  font-size: var(--font-size-small);
  color: var(--text-color-secondary);
  line-height: 1.4;
}

/* ============================================================
   SECTION Intervention – Zone d'intervention 
============================================================ */
.intervention {
  position: relative;
  padding: 4rem 2rem;
  color: var(--text-color);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 600px; /* optionnel, si tu veux forcer une hauteur */
}

/* Image de fond */
.bg-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* tout au fond */
  pointer-events: none;
}

/* Superposition blanche transparente */
.overlay-white {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 1; /* entre image et contenu */
}

/* Contenu texte */
.intervention .container {
  position: relative;
  z-index: 2; /* toujours devant */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.intervention .intervention-intro {
  font-size: var(--font-size-medium);
  color: var(--text-color-secondary);
  line-height: 1.6;
  margin: 0 auto 2.5rem auto;
  max-width: 900px;
}

.zones {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem; /* ✅ Marge ajoutée ici */
}

/* Liste des villes */
.zone-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  columns: 2;
  column-gap: 3rem;
  max-width: 900px;
  text-align: left;
  transition: max-height 0.6s ease-in-out;
}

.zone-list li {
  font-size: var(--font-size-small);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  line-height: 1.4;
  transition: transform 0.2s ease;
}

.zone-list li:hover {
  transform: translateX(6px);
}

.zone-list i {
  margin-right: 0.6rem;
  color: var(--primary-color);
  min-width: 18px;
}

.zone-list a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.zone-list a:hover {
  color: var(--accent-color);
}

/* États caché/visible des villes */
.hidden-ville {
  display: none !important;
}

.zone-list.expanded .hidden-ville {
  display: flex;
}

/* Phrase de fin */
.intervention .intervention-outro {
  font-weight: bold;
  margin-top: 2.5rem;
  color: var(--text-color);
  font-size: var(--font-size-medium);
}

/* Ville active */
.current-city {
  font-weight: bold;
  text-decoration: underline;
}

/* Bouton "voir plus" centré */
.show-more-wrapper {
  margin-top: 2rem;
  text-align: center;
}

.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.6rem 1.2rem;
  font-size: var(--font-size-small);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.show-more-btn:hover {
  background-color: var(--secondary-color);
}

.show-more-btn .chevron {
  display: inline-block;
  transition: transform 0.3s ease;
}

.show-more-btn[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

/* ============================================================
   SECTION About – NUISIBLES FRANCE 
============================================================ */
.about {
  position: relative;
  padding: 4rem 2rem;
  background-color: var(--background-color);
  overflow: hidden;
}

.about .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

/* CONTENU TEXTE */
.about .about-content {
  flex: 1 1 500px;
  z-index: 2;
}

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

.about .about-content p {
  font-size: var(--font-size-medium);
  line-height: 1.6;
  color: var(--text-color-secondary);
  margin-bottom: 2rem;
  max-width: 700px;
}

/* BOUTON */
.about .btn-about {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #000, var(--secondary-color));
  color: #fff;
  font-size: var(--font-size-small);
  font-weight: bold;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about .btn-about:hover {
  background: linear-gradient(135deg, #000, var(--primary-color));
  transform: translateY(-3px);
}

/* IMAGE */
.about .about-image {
  flex: 1 1 500px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about .about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  opacity: 0.95;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.about:hover .about-image img {
  transform: scale(1.03);
  opacity: 1;
}

.about .about-image figcaption {
  margin-top: 1rem;
  font-size: var(--font-size-small);
  color: var(--text-color-secondary);
  text-align: center;
}

/* ============================================================
   SECTION FAQ – NUISIBLES FRANCE
============================================================ */
.faq {
  padding: 4rem 2rem;
  background-color: var(--background-color);
  text-align: center;
}

.faq .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq .container h2 {
  font-size: var(--font-size-subheading);
  margin-bottom: 2rem;
  color: var(--text-color);
  font-weight: 700;
  text-align: center;
}

.faq .container p {
  margin-bottom: 2rem;
}

/* Chaque bloc de question */
.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

/* Question */
.faq-question {
  font-size: var(--font-size-medium);
  color: #fff;
  cursor: pointer;
  padding: 1rem 1.2rem;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  position: relative;
}

.faq-question:hover {
  background-color: var(--primary-color);
}

/* Réponse */
.faq-answer {
  font-size: var(--font-size-small);
  padding: 1rem 1.2rem;
  background-color: #f7f7f7;
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius);
  margin-top: 0.5rem;
  display: none;
  line-height: 1.6;
  color: var(--text-color);
  animation: fadeInFAQ 0.4s ease-in-out;
}

/* Animation ouverture */
@keyframes fadeInFAQ {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Toggle actif */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  background-color: var(--secondary-color);
  color: #fff;
}

/* Icône + / – à droite */
.faq-question::after {
  content: "\002B"; /* + */
  font-size: 2rem;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.faq-item.active .faq-question::after {
  content: "\2212"; /* – */
  transform: rotate(180deg);
}

/* ============================================================
   SECTION Partners – NUISIBLES FRANCE
============================================================ */
.partners {
  padding: 2rem;
  background-color: var(--background-color);
  text-align: center;
}

.partners .container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners h2 {
  font-size: var(--font-size-subheading);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 2.5rem;
}

.partners p {
  text-align: center;
  font-size: clamp(1.2rem, 1.8vw, var(--font-size-medium));
  color: var(--text-color-secondary);
  margin-bottom: 5rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.partners-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.partner-item {
  flex: 0 1 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item img {
  width: 100%;
  height: auto;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partner-item:hover img {
  filter: grayscale(0%);
}

/* ============================================================
   SECTION Contact – NUISIBLES FRANCE
============================================================ */
.contact {
  padding: 4rem 2rem;
  background-color: var(--background-color);
}

.contact h2 {
  text-align: center;
  font-size: var(--font-size-subheading);
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 700;
}

.contact > .container > p {
  text-align: center;
  font-size: var(--font-size-medium);
  color: var(--text-color-secondary);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grille contact-info + formulaire */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.contact-info,
.contact-form {
  flex: 1 1 500px;
}

/* Infos de contact */
.contact-info h3 {
  font-size: var(--font-size-large);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: var(--font-size-small);
  color: var(--text-color-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-info .phone-number a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary-color);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.contact-info .phone-number a:hover {
  color: var(--primary-color);
}

/* Carte Google Maps */
#map {
  margin-top: 2rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

#map iframe,
iframe[loading="lazy"] {
  width: 100%;
  height: 400px;
  min-height: 400px;
  display: block;
  border: 0;
}

/* FORMULAIRE */
.contact-form h3 {
  font-size: var(--font-size-large);
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.form-box {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Groupes de champs */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  background-color: #fff;
  color: var(--text-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.2);
}

/* liste deroulante */
.form-group select {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  background-color: #fff;
  color: var(--text-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.form-group select:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.2);
}

label span[aria-hidden="true"] {
  font-size: 1rem;
  margin-left: 0.3rem;
  cursor: help;
  color: var(--secondary-color);
}

/* BOUTON D'ENVOI */
.btn-submit {
  align-self: flex-start;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 1rem 2rem;
  font-size: var(--font-size-small);
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: var(--box-shadow);
}

.btn-submit:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-submit:focus {
  outline: 3px solid var(--secondary-color);
  outline-offset: 4px;
}

/* Accessibilité */
.visually-hidden {
  position: absolute;
  left: -9999px;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ============================================================
   SECTION Corpus – NUISIBLES FRANCE
============================================================ */
.corpus {
    padding: calc(var(--spacing-unit) * 3) 0;
    background-color: var(--background-color);
    color: var(--text-color);
    max-width: 1200px;
    margin: 0 auto;
}

.corpus h1 {
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.corpus h2,
.corpus h3 {
    font-size: 1.9rem;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    color: var(--text-color);
}

.corpus p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: calc(var(--spacing-unit) * 1.75);
    text-align: justify;
}

.corpus ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.corpus ul li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.corpus a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}

.corpus a:hover,
.corpus a:focus {
    color: var(--primary-color);
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.corpus a.btn-corpus {
    display: block;
    max-width: 35%;
    background-color: var(--primary-color);
    color: #fff;
    margin: 2% auto 3%;
    padding: var(--spacing-unit) calc(var(--spacing-unit) * 2);
    text-align: center;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.corpus .btn-corpus:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.corpus .seo-text h2 {
    margin-top: calc(var(--spacing-unit) * 2);
    font-size: 2.2rem;
    color: var(--primary-color);
}

.corpus .seo-text p {
    margin-bottom: calc(var(--spacing-unit) * 1.25);
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.corpus .seo-text ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.corpus .seo-text ul li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #666;
}

.corpus .seo-text ul li:hover {
    color: var(--primary-color);
    cursor: pointer;
}

.corpus a.btn-corpus {
    display: block;
    max-width: 280px;
    background-color: var(--primary-color);
    color: #fff;
    margin: 2rem auto 3rem;
    padding: 1rem 2rem;
    text-align: center;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.corpus a.btn-corpus:hover,
.corpus a.btn-corpus:focus {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    color: #fff;
}

/* ============================================================
   SECTION Certifications – NUISIBLES FRANCE
============================================================ */
.certification {
    padding: calc(var(--spacing-unit) * 4) 0;
    background-color: var(--background-color);
}

.certification h2 {
    text-align: center;
    font-size: 2rem;
	margin-top: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--text-color);
}

.certification p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto calc(var(--spacing-unit) * 3);
    color: var(--text-color-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 2);
}

.certification-item {
    background: #fff;
    padding: calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius);
    box-shadow: 0 6px 12px var(--box-shadow-color);
    flex: 1 1 calc(33.333% - calc(var(--spacing-unit) * 2));
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.certification-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.certification-item img {
    width: 100px;
    height: auto;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.certification-item h3 {
    font-size: 1.25rem;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    color: var(--text-color);
}

.certification-item p {
    font-size: 0.95rem;
    color: var(--text-color-secondary);
    line-height: 1.6;
}

/* ============================================================
   SECTION Team – NUISIBLES FRANCE
============================================================ */
.team {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.team h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.team p {
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
  font-size: 1.1rem;
}

.team-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center;
  align-items: start;
}

.team-member {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #F7D55F;
}

.team-member h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

/* ============================================================
   SECTION Éco – NUISIBLES FRANCE
============================================================ */
.eco-commitment {
  background-color: #f9f9f9;
  padding: 60px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.eco-commitment h2 {
  font-size: 2rem;
  color: #3d7200;
  margin-bottom: 20px;
}

.eco-commitment h2 i {
  margin-right: 10px;
  color: #8ab84d;
}

.eco-commitment p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

.intervention-flow {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #222;
}

/* ============================================================
   SECTION Intervention – NUISIBLES FRANCE
============================================================ */
.intervention-flow {
  padding: 60px 20px;
  background-color: var(--light-bg);
  color: var(--text-color);
  text-align: center;
}

.intervention-flow h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.intervention-flow i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.intervention-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.intervention-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  width: 260px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intervention-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.intervention-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.intervention-card h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.intervention-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   SECTION Tarif – NUISIBLES FRANCE
============================================================ */
.section-tarifs {
  padding: 4rem var(--spacing-base);
  background-color: var(--background-color);
}

.section-tarifs h2 {
  text-align: center;
  font-size: var(--font-size-subheading);
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-tarifs .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.4rem;
  color: var(--text-color-secondary);
}

.tarif-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.6rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.tab-btn:hover,
.tab-btn:focus {
  background-color: var(--secondary-color);
  outline: none;
}

.tab-btn.active {
  background-color: var(--secondary-color);
}

.tarif-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.tarif-content.active {
  display: block;
}

.tarif-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-large);
}

@media screen and (min-width: 1024px) {
  .tarif-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tarif-card {
  background-color: var(--background-color);
  border: 1px solid var(--border-color-light);
  border-radius: 20% 20% 0 0;
  padding: 1.2rem;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition: transform 0.3s ease;
  position: relative;
}

.tarif-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--box-shadow-color);
}

.card-icon {
  font-size: 2.4rem;
  color: var(--primary-color);
  text-align:center;
  margin-bottom: 0.8rem;
}

.tarif-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--secondary-color);
}

.tarif-card .desc {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-color-secondary);
  margin-bottom: 0.8rem;
}

.assurance-note {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-style: italic;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.tarif-card .prix {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background-color: #6d6d6d;
  padding: 0.6rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: auto;
}


.tarif-infos-globales {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.tarif-info-card {
  flex: 1 1 280px;
  background-color: var(--background-color);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius);
  padding: 1.2rem 1rem;
  box-shadow: var(--box-shadow);
}

.tarif-info-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.tarif-info-card p {
  font-size: 1rem;
  color: var(--text-color-secondary);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tarif-info-card i {
  color: var(--secondary-color);
  font-size: 1rem;
}

/* ============================================================
   SECTION Simulateur Tarif – NUISIBLES FRANCE
============================================================ */
.section-simulateur {
  padding: 4rem var(--spacing-base);
  background-color: var(--background-color);
}

.section-simulateur h2 {
  text-align: center;
  font-size: var(--font-size-subheading);
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-simulateur .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.4rem;
  color: var(--text-color-secondary);
}

.simulateur-box {
  margin: 0 auto;
  padding: 2rem;
  max-width: 600px;
  background-color: var(--background-color);
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.simulateur-form {
  width: 100%;
}

.simulateur-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.field-group {
  display: flex;
  flex-direction: column;
}

.field-group label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.field-group select {
  padding: 0.8rem;
  font-size: 1.1rem;
  border: 1px solid var(--border-color-light);
  border-radius: var(--border-radius);
  background-color: #fff;
  color: var(--text-color);
  transition: border-color 0.3s ease;
}

.field-group select:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.simulateur-result {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  background-color: #fff;
  padding: 1rem;
  border: 1px dashed var(--secondary-color);
  border-radius: var(--border-radius);
  max-width: 100%;
  text-align: center;
}

/* ============================================================
   SECTION Site-map – NUISIBLES FRANCE
============================================================ */
#site-map {
  padding: 60px 20px;
  color: var(--text-color);
}

#site-map h1 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.sitemap-category {
  margin-bottom: 50px;
  background: #fff;
  border: 2px solid var(--border-color-light);
  border-radius: var(--border-radius);
}

.sitemap-category h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  position: relative;
  padding: 1rem;
  color: var(--secondary-color);
  border-left: 4px solid var(--primary-color);
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 25px;
}

.sitemap-list li {
  line-height: 1.6;
}

.sitemap-list a {
  display: inline-block;
  padding: 6px 12px;
  color: var(--text-color);
  background: transparent;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: bold;
}

.sitemap-list a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.hidden-ville2 {
  display: none;
}

.visible-ville {
  display: list-item;
}

.sitemap-category {
  overflow-anchor: none;
}

.text-center {
  text-align: center;
  margin-top: 20px;
}

.btn-toggle-villes {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 0;
  transition: background-color 0.2s ease-in-out;
}

.btn-toggle-villes:hover {
  background-color: var(--secondary-color);
}

/* ============================================================
   SECTION Popular articles – NUISIBLES FRANCE
============================================================ */
/* Articles populaires */
.popular-articles {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.popular-articles h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #222;
}

.popular-articles p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
}

.popular-articles-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.popular-article {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.popular-article img {
  width: 100%;
  height: auto;
  display: block;
}

.popular-article h3 {
  font-size: 1.25rem;
  margin: 15px;
  color: var(--secondary-color);
}

.popular-article h3 a {
  color: inherit;
  text-decoration: none;
}

.popular-article h3 a:hover {
  text-decoration: underline;
}

/* ============================================================
   SECTION Devis confirmation – NUISIBLES FRANCE
============================================================ */
section.devis.confirmation {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

section.devis.confirmation h1 {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

section.devis.confirmation h1 i {
  font-size: 2.5rem;
}

section.devis.confirmation p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
}

section.devis.confirmation p strong {
  color: #222;
}

section.devis.confirmation .btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 12px 24px;
  margin: 10px 8px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

section.devis.confirmation .btn:hover {
  background-color: var(--primary-color);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.alert-success {
  background-color: #e6f5e0;
  color: #3c763d;
  padding: 15px 20px;
  margin: 0 auto 25px auto;
  border-left: 6px solid #8ab84d;
  border-radius: 6px;
  max-width: 700px;
  font-size: 16px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  animation: fadeIn 0.6s ease-out both;
}

.alert-success i {
  color: #8ab84d;
  font-size: 20px;
}

/* ============================================================
   SECTION Footer – NUISIBLES FRANCE
============================================================ */
footer {
  background: linear-gradient(180deg, #222, #111);
  color: #f1f1f1;
  padding: 4rem 0;
  font-size: var(--font-size-small);
  border-top: 5px solid var(--primary-color);
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

/* GRILLE DE COLONNES */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

/* TITRES DE COLONNES */
.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* LIENS, TEXTES */
.footer-column p,
.footer-column ul,
.footer-column a {
  color: #ccc;
  line-height: 1.8;
  text-decoration: none;
  margin: 0;
  text-align:left
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* AVIS GOOGLE */
.google-rating {
  margin-top: 1.5rem;
}

.google-rating .stars {
  color: #f4b400;
  font-size: 1.3rem;
}

.google-rating .rating-value {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 0.5rem;
  color: #fff;
}

.google-rating .rating-count {
  font-size: 0.9rem;
  color: #aaa;
}

/* RÉSEAUX SOCIAUX */
.social-media {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-media a {
  color: #ddd;
  font-size: 1.8rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
  color: var(--secondary-color);
  transform: scale(1.15);
}

/* COPYRIGHT */
footer p {
  font-size: 0.9rem;
  color: #bbb;
  margin-top: 2rem;
  text-align: center;
}

footer p a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer p a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.recaptcha-info {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5em;
  line-height: 1.4;
  text-align: center;
}
.recaptcha-info a {
  color: inherit;
  text-decoration: underline;
}

/* ============================
   SECTION Popup – NUISIBLES FRANCE
=============================== */
.scroll-popup {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 320px;
	max-width: calc(100vw - 40px); /* ✅ évite tout débordement */
	background-color: var(--background-color, #fff);
	box-shadow: 0 4px 8px var(--box-shadow-color, rgba(0, 0, 0, 0.1));
	border-radius: 15px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	z-index: 1000;
	transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
	overflow: hidden;
}

/* Animation d’entrée */
.scroll-popup.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	animation: fadeInPop 0.5s ease-out;
}

@keyframes fadeInPop {
	from {
		transform: translateY(20px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.scroll-popup .popup-content {
	padding: 20px;
	text-align: center;
	position: relative;
}

.scroll-popup img {
	display: block;
	margin: 0 auto 10px;
	border-radius: 50%;
}

/* Titre */
.scroll-popup h3 {
	margin: 0 0 10px;
	font-size: 1.5rem;
	color: var(--text-color, #222);
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Texte */
.scroll-popup p {
	font-size: 1rem;
	color: #555;
	margin-bottom: 15px;
	line-height: 1.4;
}

/* Formulaire express */
.scroll-popup .popup-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.scroll-popup .popup-form input[type="tel"] {
	width: 100%;
	padding: 10px;
	border-radius: 25px;
	border: 1px solid #ddd;
	font-size: 1rem;
	box-sizing: border-box;
}

.scroll-popup .popup-form button {
	background-color: var(--secondary-color-dark, #f4c74b);
	color: #fff;
	border: none;
	padding: 10px 25px;
	font-size: 1rem;
	border-radius: 25px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.scroll-popup .popup-form button:hover {
	background-color: var(--secondary-color, #3d7200);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Bouton de fermeture */
.scroll-popup .close-popup {
	background: none;
	border: none;
	color: #999;
	font-size: 1.5rem;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	transition: color 0.3s ease;
	display: block;
}

.scroll-popup .close-popup:hover {
	color: var(--text-color, #222);
}

/* Mode réduit */
.scroll-popup.minimized {
	width: 220px;
	height: 50px;
	margin-bottom:20px;
	background-color: var(--primary-color, #8ab84d);
	border-radius: 25px;
	display: flex;
	align-items: center; /* Centrage vertical */
	justify-content: center; /* Centrage horizontal */
	cursor: pointer;
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease;
	padding: 0 10px; /* Pour que le texte ne touche pas les bords */
	text-align: center;
}


.scroll-popup.minimized h3 {
	font-size: 1rem;
	color: #fff;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	text-align: center;
}

/* Cache tous les autres éléments sauf le titre en mode réduit */
.scroll-popup.minimized .popup-content p,
.scroll-popup.minimized .popup-form,
.scroll-popup.minimized img,
.scroll-popup.minimized .close-popup {
	display: none !important;
}

.scroll-popup.minimized:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Empêche le scroll horizontal */
body {
    overflow-x: hidden;
}

/* ============================================================
   SECTION RGPD – NUISIBLES FRANCE
============================================================ */
#cookieConsent {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: var(--spacing-unit);
    text-align: center;
    z-index: 9999;
    display: none;
}

#cookieConsent .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

#cookieConsent p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
}

#cookieConsent a {
    color: #fff;
    text-decoration: none;
}

#cookieConsent a:hover {
    text-decoration: underline;
}

#cookieConsent .btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: calc(var(--spacing-unit) * 0.5) var(--spacing-unit);
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#cookieConsent .btn:hover {
    background-color: var(--primary-color);
}

#cookieConsent .visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   RESPONSIVE NUISIBLES FRANCE
============================================================ */

@media (min-width: 768px) {
.mobile-call-only{display:none;}	
}	

/* === 1. Mobiles : max-width: 767px === */
@media (max-width: 767px) {
  header .logo {
    max-height: 65px !important;
    transform: none !important;
    transition: none !important;
  }
  .logo-scrolled { display: none !important; }
  .logo-default { display: inline-block !important; }

  .menu-icon {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    font-size: 22px;
    line-height: 20%;
    text-align: center;
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    z-index: 1001;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  }
  .menu-icon::before {
    content: '\2630';
    font-size: 22px;
  }
  .menu-icon.active::before {
    content: '\2715';
    color: var(--secondary-color);
  }
  header nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #ededed;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    z-index: 999;
  }
  header nav ul.show { display: flex; }
  header nav ul li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }
  header nav ul li a {
    display: block;
    width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
  }
  .dropdown-content {
    position: static;
    background-color: var(--background-color);
    width: 100%;
    border-top: 1px solid var(--border-color);
    display: none;
  }
  .dropdown.show .dropdown-content { display: block; }
  .dropdown-content a {
    font-size: 1rem;
    padding: 14px 25px;
  }
  header .btn-quote { display: none;}

  #home {
    position: relative;
    height: auto;
    min-height: 100vh;
    padding: 4rem 1rem 3rem 1rem; /* plus d’espace haut/bas */
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  #home .bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ✅ conserve l'absence de bande */
    object-position: center top; /* tu peux aussi tester center 20% */
    z-index: -1;
  }
  
  #home .bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ✅ conserve l'absence de bande */
    object-position: center top; /* tu peux aussi tester center 20% */
    z-index: -1;
  }

  #home .container-full {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  #home h1 {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
  }

  /* 👇 Masque uniquement le 1er paragraphe au-dessus des <li> */
  #home .container-full > p {
    display: none;
  }

  /* ✅ Liste alignée à gauche avec icônes bien positionnées */
  #home .key-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
  }

  #home .key-benefits li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
    color: #fff;
    text-align: left;
  }

  #home .key-benefits li i {
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: #00d084;
    font-size: 1.1rem;
  }

  #home .btn-main {
    width: 90% !important;
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
    margin: 1.5rem auto 0 auto;
    display: block;
    text-align: center;
  }

  #home .trust-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 0.5rem;
    flex-wrap: nowrap;
    background: none;
    box-shadow: none !important;
  }

  #home .trust-icon {
    flex: 1 1 auto;
    text-align: center;
  }

  #home .trust-icon img {
    width: 80px;
    height: auto;
	box-shadow: none !important;
  }

  #home .trust-icon p {
    display: none;
  }
  
  #home .container-full > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }

  #home .container-full.animated > * {
    opacity: 1;
    transform: translateY(0);
  }
  
  .contact-info,
  .contact-form {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .about .about-video {
    flex: 1 1 100%;
    margin: 40px 0 0;
    padding: 0;
  }

  .about .about-video video {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .about .about-video figcaption {
    font-size: 0.9rem;
  }
  
  #cookieConsent .container {flex-direction: column;align-items: center;text-align: center;}
  #cookieConsent p {margin-bottom: var(--spacing-unit);}
  #cookieConsent .btn {width: 100%;max-width: 200px;}
  
/* ===== Bouton d’appel mobile collé en bas ===== */
  #scrollPopup {display: none !important;}
.mobile-call-only {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  z-index: 9998;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.mobile-call-only.visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-call-only .btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #fff;
  padding: 1rem 1.2rem;
  text-decoration: none;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.text-container .label {
  font-size: 1.2rem;
  opacity: 0.95;
  font-weight: 700;
  margin-bottom: 1rem;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fff;
  color: var(--secondary-color);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.2);
}

.phone-badge .icon-phone {
  font-size: 1rem;
  color: var(--secondary-color);
}

.phone-badge .phone-number {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.4;
}

/* Onde clic */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
  z-index: 2;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Effet pulsation lent et subtil */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.7;
  }
}

.pulse {
  animation: pulse 3s infinite ease-in-out;
}
}  

@media (max-width: 1024px) {
  .review-item {
    width: calc((100% - 20px) / 2); /* 2 avis */
  }
}

@media (max-width: 560px) {
  .review-item {
    width: 100%; /* 1 avis */
    flex: 0 0 100%;
    max-width: 100%;
  }

  .reviews-carousel {
    gap: 0; /* évite le petit décalage */
  }

  .carousel-controls {
    display: none; /* ✅ cache les boutons uniquement à cette taille */
  }
}

/* === Tablettes et petits desktops : 768px à 1320px === */
@media (min-width: 768px) and (max-width: 1320px) {
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow-x: clip;
    gap: 1rem;
  }

  header .logo-container {
    flex: 0 0 auto;
  }

  nav {
    flex: 1 1 auto;
    overflow: hidden;
  }

  header nav ul {
	display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
    -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
  }
  
  header nav ul::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  header nav ul li {
    white-space: nowrap;
    flex-shrink: 1;
	flex: 0 0 auto;
  }

  header .btn-quote {
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo {
    max-width: 150px;
  }
}

/* === Desktop compact : à partir de 1321px === */
@media (min-width: 1321px) {
  header .container {
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.5rem;
  }

  header nav ul {
    flex-wrap: nowrap;
    gap: 1rem;
  }

  header .btn-quote {
    font-size: 1rem;
    padding: 0.6rem 1rem;
    max-width: none;
  }

  .btn-quote-text {
    display: inline;
  }

  .logo {
    max-width: 180px;
  }
}

/* === 2. Très petits écrans : max-width: 480px === */
@media (max-width: 480px) {
  .btn-main {
    width: 100%;
    text-align: center;
  }
}

/* === 3. Mobiles + Tablettes : max-width: 991px === */
@media (max-width: 991px) {
  .top h1 { font-size: clamp(2rem, 4.5vw, 2.7rem); }
  .top p {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.6;
  }
  .key-benefits {
    max-width: 500px;
  }
  .key-benefits li {
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
  }
  .key-benefits i {
    font-size: 1.4rem;
  }
  .btn-main {
    font-size: 1.1rem;
    padding: 1rem 1.8rem;
  }
  .trust-icons {
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .trust-icon {
    max-width: 280px;
    padding: 0.9rem;
  }
  .trust-icon img { width: 55px; }
  .trust-icon p { font-size: 0.95rem; }
  .faq .container h2 { font-size: 1.8rem; }
  .service-card h3 { font-size: 1.4rem; }
  .popup-rappel { font-size: 1rem; }
  .steps .step h3 { font-size: 1.4rem; }
  .about-content h2 { font-size: 1.6rem; text-align: center; }
  .statistiques .stat h3 { font-size: 1.6rem; }
  .carte iframe { height: 300px; }
  .cta-banner h2 { font-size: 1.7rem; }
}

/* === 5. Tablettes larges : 768px à 1024px === */
@media (min-width: 768px) and (max-width: 1024px) {
  .services {
    padding: 3rem 2rem;
  }
  .services h2 {
    font-size: 2rem;
  }
  .services .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .service-card {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
    padding: 1.5rem;
  }
  .service-card h3 {
    font-size: 1.25rem;
  }
  .service-card p {
    font-size: 1.05rem;
  }
}

/* === 6. Desktop : à partir de 1025px === */
@media (min-width: 1025px) {
  .services {
    padding: 4rem 2rem;
  }
  .services .services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .service-card {
    flex: 1 1 calc(33.33% - 40px);
    max-width: calc(33.33% - 40px);
    padding: 2rem;
  }
  .service-card h3 {
    font-size: 1.4rem;
  }
  .service-card p {
    font-size: 1.1rem;
  }
}

/* === 7. Desktop compact : 992px à 1320px === */
@media (min-width: 992px) and (max-width: 1320px) {
  .top h1 { font-size: 2.6rem; }
  .top p { font-size: 1.3rem; }
  .key-benefits { max-width: 550px; }
  .btn-main { font-size: 1.15rem; }
  .trust-icon img { width: 58px; }
}

/* === 8. Grand écran : plus de 1320px === */
@media (min-width: 1321px) {
  .top h1 { font-size: 3rem; }
  .top p { font-size: 1.4rem; }
  .services h2 { font-size: 2.4rem; }
  .service-card h3 { font-size: 1.6rem; }
  .service-card p { font-size: 1.2rem; }
  .cta-banner h2 { font-size: 2rem; }
  .faq .container h2 { font-size: 2rem; }
  .steps .step h3 { font-size: 1.6rem; }
  .statistiques .stat h3 { font-size: 1.8rem; }
}

/* === Accessibilité / Préférences utilisateur === */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* === Anti-CLS – NUISIBLES FRANCE === */
#home video,
#home .video-background {
  min-height: 100vh;
  width: 100%;
  object-fit: cover;
}

#reviews-carousel,
.review-item {
  min-height: 160px;
}

h1, h2, h3, h4 {
  min-height: 1em;
  line-height: 1.2;
}

footer .google-rating {
  display: flex;
  align-items: center;
  min-height: 24px;
}

footer .google-rating .stars {
  min-width: 100px;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('../css/webfonts/fa-solid-900.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'FontAwesome Brands';
  src: url('../css/webfonts/fa-brands-400.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  src: url('../css/webfonts/fa-brands-400.woff2') format('woff2');
  font-display: swap;
}
