/* ==========================================================================
   FAQ Page
   ========================================================================== */

section, .arc-divider {
  margin-top: 0;
}
:where(.wp-site-blocks) > * {
  margin-block-start: 0;
}

/* --- Hero (blog hero style) --- */
.hero-faq {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-faq .hero-blog-content h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 64px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark-heading);
  margin-bottom: 20px;
  line-height: 1.05;
}
.hero-faq .hero-blog-content h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  animation: letterReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-faq .hero-blog-content h1 .copper-word .letter {
  background: var(--copper-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-faq .hero-blog-content h1 .copper-word {
  filter: drop-shadow(0 0 30px rgba(184,115,51,0.4)) drop-shadow(0 0 60px rgba(184,115,51,0.2));
}
.hero-faq .hero-blog-content p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-dark-body);
  max-width: 520px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.6s forwards;
}
.hero-faq .hero-copper-line {
  width: 60px;
  height: 3px;
  background: var(--copper-gradient);
  margin: 0 auto;
  border-radius: 2px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.8s forwards;
}

/* --- Accordion Section --- */
.faq-accordion-section {
  background: var(--light-bg);
  padding: 40px 0 80px;
}
.faq-accordion-section .faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- Card Style --- */
.faq-card {
  background: var(--dark-surface);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-card.active {
  border-left: 4px solid var(--copper);
}
.faq-card .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  transition: background 0.3s ease;
  gap: 16px;
}
.faq-card .faq-question:hover {
  background: rgba(255,255,255,0.03);
}
.faq-card .faq-question h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--text-dark-heading);
  flex: 1;
  margin: 0;
}
.faq-card .faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(184,115,51,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: transparent;
}
.faq-card.active .faq-toggle {
  background: rgba(184,115,51,0.1);
  border-color: var(--copper);
  transform: rotate(45deg);
}
.faq-card .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-card .faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-dark-body);
  line-height: 1.7;
}
.faq-card .faq-answer-inner p {
  margin: 0 0 12px;
}
.faq-card .faq-answer-inner p:last-child {
  margin-bottom: 0;
}
.faq-card .faq-answer-inner .btn-ghost {
  margin-top: 12px;
  font-size: 13px;
  padding: 12px 28px;
}

/* --- CTA Section --- */
.faq-cta {
  background: var(--dark-bg);
  padding: 80px 0;
  text-align: center;
}
.faq-cta h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 36px;
  color: var(--text-dark-heading);
  margin-bottom: 12px;
}
.faq-cta p {
  font-size: 16px;
  color: var(--text-dark-body);
  margin-bottom: 32px;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .hero-faq {
    min-height: 40vh;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .hero-faq .hero-blog-content h1 {
    font-size: 36px;
  }
  .faq-accordion-section {
    padding: 20px 0 60px;
  }
  .faq-card .faq-question {
    padding: 20px;
  }
  .faq-card .faq-question h3 {
    font-size: 16px;
  }
  .faq-card .faq-answer-inner {
    padding: 0 20px 20px;
  }
  .faq-cta {
    padding: 60px 0;
  }
  .faq-cta h2 {
    font-size: 28px;
  }
}
