/* ============================
   Hero FAQ
============================ */
.hero-faq {
  background: linear-gradient(135deg, #ffd9c2 0%, #fcf5eb 60%, #ffecd8 100%);
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='2' fill='%23ba4b2f' opacity='0.08'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-faq__content {
  position: relative;
}

.hero-faq h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #ba4b2f;
  margin: 0 0 0.75rem;
}

.hero-faq p {
  font-size: 1.15rem;
  color: #9a3a22;
  margin: 0;
  opacity: 0.85;
}

/* ============================
   FAQ Page Section
============================ */
.faq-page-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ============================
   FAQ Category
============================ */
.faq-category h2 {
  font-size: 1.3rem;
  color: #ba4b2f;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid #ffd9c2;
}

.faq-category h2 i {
  font-size: 1.1rem;
  color: #ba4b2f;
}

/* ============================
   FAQ Accordéon (réutilise style.css + surcharges)
============================ */
.faq-page-section .faq-list {
  max-width: 100%;
  margin: 0;
}

.faq-page-section .faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(186, 75, 47, 0.07);
  overflow: hidden;
  margin-bottom: 0.6rem;
  transition: box-shadow 0.3s ease;
}

.faq-page-section .faq-item:hover {
  box-shadow: 0 4px 18px rgba(186, 75, 47, 0.14);
}

.faq-page-section .faq-answer a {
  color: #ba4b2f;
  font-weight: 700;
  text-decoration: underline;
}

/* ============================
   CTA Section
============================ */
section.faq-cta {
  background: #ba4b2f !important;
  color: #fff !important;
  text-align: center !important;
  padding: 4rem 1.5rem !important;
}

section.faq-cta h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #fff !important;
  margin: 0 0 0.75rem;
  text-align: center;
}

section.faq-cta p {
  color: #fff;
  margin: 0 0 2rem;
  font-size: 1.05rem;
  opacity: 0.9;
  text-align: center;
}

.faq-cta__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-cta-faq {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-cta-faq:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.btn-cta-faq--whatsapp {
  background: #25d366;
  color: #fff !important;
}

.btn-cta-faq--email {
  background: #fff;
  color: #ba4b2f !important;
}

.btn-cta-faq--reserve {
  background: #ffd9c2;
  color: #ba4b2f !important;
}

/* ============================
   Responsive
============================ */
@media (max-width: 600px) {
  .faq-cta__btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-faq {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
