/* Start custom CSS for html, class: .elementor-element-190cbbc *//* ===== Section Blog / Prestations ===== */
#blog-debarras {
  padding: 60px 0;
  background: #fff; /* fond blanc comme sur la page prestations */
}

#blog-debarras .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Titres */
#blog-debarras h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
}

#blog-debarras h3.seo-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

/* Grille de cartes pour les prestations */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Carte prestation */
.blog-card {
  background: #f9f9f9; /* légèrement gris, neutre */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.blog-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card a {
  font-size: 15px;
  font-weight: 500;
  color: #ff8B00;
  text-decoration: none;
  align-self: start;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.blog-card a:hover {
  border-bottom-color: #0073e6;
}

/* Responsive */
@media (max-width: 768px) {
  #blog-debarras h2 {
    font-size: 28px;
  }
  #blog-debarras h3.seo-subtitle {
    font-size: 18px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cd860dd *//* ===== SECTION POURQUOI NOUS CHOISIR ===== */
#why-choose-us {
  padding: 70px 20px;
  background: #fafafa;
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Titre */
#why-choose-us h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

/* ===== GRID CENTRÉE ===== */
.narrow-why-grid {
  max-width: 800px;          /* largeur max */
  margin: 0 auto;            /* centrée */
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* 2 colonnes */
  gap: 25px;
}

/* Responsive 1 colonne */
@media (max-width: 700px) {
  .narrow-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CARTES ===== */
.why-item {
  background: #fff;
  border-left: 4px solid #ff8b00;
  padding: 25px;
  border-radius: 6px;
  text-align: center;
  transition: 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.why-item:hover {
  background: #fff5e6;
  transform: translateY(-4px);
}

/* Icônes */
.why-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* Titres */
.why-item h3 {
  margin-bottom: 10px;
  color: #ff8b00;
  font-size: 20px;
}

/* Texte */
.why-item p {
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c6bde3b *//* ===== CALL TO ACTION ===== */
.cta-contact {
  text-align: center;
  margin: 40px 0;
}

.cta-btn {
  display: inline-block;
  background: #ff8b00; /* couleur principale orange */
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.cta-btn:hover {
  background: #e07900; /* un peu plus foncé au hover */
  transform: translateY(-2px);
}

/* ===== FAQ ===== */
#faq-debarras {
  margin: 60px auto;
  max-width: 900px;
  padding: 0 20px;
  background: #fff; /* fond blanc */
}

#faq-debarras h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #222; /* texte principal */
}

/* FAQ items */
.faq-item {
  border-bottom: 1px solid #ddd; /* bordure neutre */
  padding: 15px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  padding: 10px 0;
  cursor: pointer;
  color: #ff8b00; /* orange principal */
  transition: 0.2s ease;
}

.faq-question:hover {
  color: #e07900; /* un peu plus foncé au hover */
}

.faq-answer {
  display: none;
  padding: 10px 0 5px;
  color: #555; /* texte secondaire */
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  #faq-debarras h2 {
    font-size: 24px;
  }
  .faq-question {
    font-size: 18px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0becd82 *//* ===== ZONES D'INTERVENTION ===== */
#zones-intervention {
  padding: 60px 20px;
  background: #fff;
}

.zones-container {
  max-width: 1100px;
  margin: 0 auto;
}

#zones-intervention h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.zones-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  line-height: 1.6;
}

/* ===== GRILLE ===== */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARTES CLIQUABLES */
.zone-item {
  display: block;
  text-decoration: none;
  background: #f8f8f8;
  border-left: 4px solid #ff8b00;
  padding: 20px;
  border-radius: 6px;
  color: #222;
  transition: 0.25s ease;
}

.zone-item:hover {
  background: #fff5e6;
  transform: translateY(-3px);
}

.zone-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #ff8b00;
}

.zone-item p {
  color: #555;
  line-height: 1.5;
}

/* ===== CARTE ===== */
.zone-map-container {
  margin-top: 50px;
  text-align: center;
}

.placeholder-map {
  width: 100%;
  height: 300px;
  background: #eee;
  border: 2px dashed #ccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 18px;
}
.zone-carte {
  background: #fff;
  color: #f8f8f8;
  padding: 60px 20px;
  border-radius: 12px;
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.zone-carte h2 {
  font-size: 1rem;
  color: #ffb347;
  margin-bottom: àpx;
  position: relative;
}

.zone-carte h2::after {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  background: #ffb347;
  margin: 10px auto 0;
  border-radius: 2px;
}

.zone-carte p {
  font-size: 1.1rem;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 10px;
  line-height: 1.6;
}

.carte-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 1px rgba(0, 0, 0, 0.3);
  background: #2c2c2c;
  padding: 1px;
}

#map {
  width: 100%;
  height: 50px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .zones-intervention h1 {
    font-size: 1.6rem;
  }
  .zones-intervention p, .zones-list ul li {
    font-size: 1rem;
  }
  .map-container {
    height: 300px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9b1b761 *//* ===== SECTION SEO ===== */
#seo-intro {
  padding: 60px 20px;
  background: #fff;
}

.seo-container {
  max-width: 900px;
  margin: 0 auto;
}

#seo-intro h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
  color: #222;
}

#seo-intro p {
  text-align: center;
  line-height: 1.7;
  color: #555;
  font-size: 18px;
}/* End custom CSS */