/* ─────────────────────────────────────────
   ELYSIAN TRAVEL GROUP — faq.css
   FAQ page.
   Requires: base.css
───────────────────────────────────────── */

/* ── INTRO ────────────────────────────── */
.faq-intro {
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 64px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
  border-bottom: 1px solid var(--border);
}
.faq-headline {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 300;
  line-height: 1.22;
  color: var(--ink);
  margin-top: 20px;
}
.faq-headline em { font-style: italic; }
.faq-intro-text {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--muted);
}

/* ── FAQ BODY ─────────────────────────── */
.faq-body {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px 130px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

/* Sticky category nav */
.faq-nav {
  padding-top: 72px;
  position: sticky;
  top: 100px;
}
.faq-nav-title {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.faq-nav-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
.faq-nav-link {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
.faq-nav-link:last-child { border-bottom: none; }
.faq-nav-link:hover { color: var(--ink); }
.faq-nav-link.active { color: var(--ink); }

/* FAQ sections & items */
.faq-sections { padding-top: 72px; }
.faq-section {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}
.faq-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-section-title {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq-section-title::before { content: ''; width: 24px; height: 1px; background: var(--gold); display: block; flex-shrink: 0; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-question.open { color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.4s;
  font-size: 14px;
  color: var(--gold);
  font-style: normal;
  font-family: var(--sans);
  line-height: 1;
}
.faq-question.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer-inner { padding: 0 0 32px; }
.faq-answer p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.88;
  color: var(--muted);
  margin-bottom: 16px;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer p strong { color: var(--ink); font-weight: 400; }
.faq-answer a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,157,114,0.35);
  padding-bottom: 1px;
  transition: border-color 0.3s;
}
.faq-answer a:hover { border-color: var(--gold); }

/* Still have a question */
.faq-still {
  background: var(--stone);
  padding: 90px 64px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.faq-still-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.22;
  margin-top: 18px;
}
.faq-still-title em { font-style: italic; }
.faq-still-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 36px;
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  .faq-intro { padding: 80px 40px; gap: 60px; }
  .faq-body { padding: 0 40px 100px; gap: 60px; }
  .faq-still { padding: 72px 40px; }
}

@media (max-width: 768px) {
  .faq-intro { padding: 56px 24px; gap: 32px; grid-template-columns: 1fr; }
  .faq-body { padding: 0 24px 64px; grid-template-columns: 1fr; gap: 0; }
  .faq-nav { display: none; }
  .faq-still { padding: 52px 24px; grid-template-columns: 1fr; gap: 36px; }
}