/* =====================================================
   FAQ PAGE – faqs.css
   Order matches faqs.html top → bottom
===================================================== */

/* =====================================================
   PAGE HEADING (Hero)
===================================================== */
.page-heading.faqs-hero {
  position: relative;
  min-height: 50vh;
  padding: 5.5rem 1.5rem 4.5rem;
  text-align: center;
  overflow: hidden;
  background: #000; /* fallback while image loads */
}
.faqs-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Keep same dark overlay look */
.page-heading.faqs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Keep text above image + overlay */
.page-heading.faqs-hero .page-heading-inner {
  position: relative;
  z-index: 2;
}

.page-heading.faqs-hero .hero-transition {
  position: relative;
  z-index: 3;
}


.page-heading-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-heading h1 {
  margin-bottom: 14px;
}

.page-heading p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* =====================================================
   FAQ SECTION + ACCORDION
===================================================== */
.faq-section {
  padding: 100px 30px;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-intro {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
}



/* Content text */
.faq-accordion .accordion-content p,
.faq-accordion .accordion-content li {
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-accordion ul {
  padding-left: 18px;
}

/* =====================================================
   FAQ CTA
===================================================== */
.faq-cta {
  margin-top: 80px;
  border-radius: 14px;
  background:
    linear-gradient(var(--overlay-cta), var(--overlay-cta)),
    url("../images/cta-bg.png") center / cover no-repeat;
  padding: 120px 30px;
  text-align: center;
}

.faq-cta h2 {
  margin-bottom: 12px;
}

.faq-cta p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}

.faq-cta .cta {
  margin: 10px auto;
}

/* =====================================================
   FAQ RELATED LINKS
===================================================== */
.faq-related {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-related a {
  color: var(--brand-primary);
  font-weight: 500;
}

.faq-related a:hover {
  text-decoration: underline;
}
