/* ===========================
   FAQ PAGE
   =========================== */

.faq-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url('../images/bg-vector.webp');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 90%;
}


.faq-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-hero-inner p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ List */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Section (category) */
.faq-section {
  border-bottom: 1px solid rgba(231, 50, 160, 0.2);
}

.faq-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  background: #ffe3ff;
  border-radius: 12px;
  margin-top: 0.75rem;
  position: relative;
}

.faq-section-header:hover {
  background: #f9c8f7;
}

.faq-section-header span:first-child {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-dark);
}

.faq-chevron {
  font-size: 0;
  color: transparent;
  transition: transform 0.3s ease;
  border: 2px solid var(--color-pink);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-chevron::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--color-pink);
  border-bottom: 2px solid var(--color-pink);
  transform: rotate(45deg);
  margin-top: -0.2rem;
}

.faq-section-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-section-body.hidden { display: none; }

/* Individual Q&A */
.faq-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.faq-item a {
  color: var(--color-pink);
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition);
}

.faq-item a:hover { color: #c4208a; }

@media (max-width: 768px) {
  .faq-hero { padding: 3rem 1.25rem 2rem; }
}

/* FAQ page CTA override */
.section-cta-yellow {
  background-color: #ffe3ff;
}
