/* =========================
   FAQ SECTION
========================= */

.faq-section {
  padding: 110px 0;
  background: #f7fbf8;
}

.faq-container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;

  margin-bottom: 15px;
}

.faq-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* =========================
   GRID
========================= */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

/* =========================
   ACCORDÉON
========================= */

.faq-accordion {
  width: 100%;
}

.faq-item {
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(0,95,46,0.12);
  margin-bottom: 12px;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-item.active {
  border-color: rgba(0,95,46,0.3);
  box-shadow: 0 15px 40px rgba(0,95,46,0.08);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  outline: none;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}



/* =========================
   ANSWER
========================= */

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  padding: 0 20px 16px 20px;
}


/* =========================
   SUPPORT IMAGE
========================= */

.faq-support {
  text-align: center;
}

.faq-image {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  margin-bottom: 20px;
}

/* =========================
   SUPPORT TEXT
========================= */

.faq-support-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.faq-support-text p {
  font-size: 0.9rem;
  color: #3f5248;
}

/* =========================
   SUPPORT LINKS
========================= */

.faq-support-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 12px;

  background: white;
  border: 1px solid rgba(0,95,46,0.12);

  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-dark);

  transition: 0.3s ease;
}

.support-link i {
  font-size: 15px;
  color: var(--green-dark);
}

.support-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,95,46,0.08);
  border-color: rgba(0,95,46,0.35);
}

/* WhatsApp special */

.support-link.whatsapp i {
  color: #25D366;
}

.support-link.whatsapp:hover {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.support-link.whatsapp:hover i {
  color: white;
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 992px) {

  .faq-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .faq-support {
    text-align: left;
  }

}
