/* ================================================
   BAMPAA  -  FAQ Page
   assets/faq.css
   ================================================ */

.faq-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* ── Header ── */
.faq-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6AA59C;
  margin-bottom: 12px;
}

.faq-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #E8EAF0;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.faq-subtitle {
  font-size: 1rem;
  color: rgba(200,205,220,0.6);
  line-height: 1.6;
  margin: 0 0 48px;
}

/* ── Body ── */
.faq-body {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ── Section ── */
.faq-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6AA59C;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(106,165,156,0.2);
}

.faq-section-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── FAQ item (accordion) ── */
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(106,165,156,0.3);
}

.faq-q {
  list-style: none;
  padding: 16px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #E8EAF0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: color 0.15s;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 400;
  color: #6AA59C;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-q {
  color: #6AA59C;
}

.faq-a {
  padding: 0 20px 16px;
  font-size: 0.88rem;
  color: rgba(200,205,220,0.75);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 14px;
}

/* ── Footer ── */
.faq-footer {
  margin-top: 48px;
  padding: 18px 24px;
  background: rgba(106,165,156,0.05);
  border: 1px solid rgba(106,165,156,0.18);
  border-radius: 12px;
  font-size: 0.88rem;
  color: rgba(200,205,220,0.7);
  text-align: center;
}

.faq-contact-link {
  color: #6AA59C;
  font-weight: 600;
  text-decoration: none;
}

.faq-contact-link:hover {
  text-decoration: underline;
}
