/* ─── assets/css/faq.css ──────────────────────────────────────────────────────
   FAQ accordion section styles.
   ─────────────────────────────────────────────────────────────────────────── */

/* ═══ FAQ ═══════════════════════════════════════════════════════════════════════ */

.section-faq { padding: 88px 48px; background: var(--white); }
.faq-inner { max-width: 760px; margin: 0 auto; }

.faq-header { text-align: center; margin-bottom: 48px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--orange); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
  background: #fff;
  border: none;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s;
}
.faq-q:hover { background: #fafcff; }

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
  transition: all 0.2s;
}
.faq-item.open .faq-icon { background: var(--orange); border-color: var(--orange); color: #fff; }
.faq-icon svg { transition: transform 0.25s; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 500;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }


/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-faq { padding: 60px 24px; }
}

@media (max-width: 680px) {
  .section-faq { padding: 60px 16px; }
}
