/* ============================================
   FAQ PAGE  — Travel All Season
============================================= */
:root {
  --forest: #1A3C34;
  --amber:  #D4883A;
  --teal:   #2A7D6F;
  --cream:  #FAF7F2;
  --white:  #FFFFFF;
}

.faq-section {
  padding: 6rem 8%;
  background: var(--cream);
}
.faq-intro {
  text-align: center;
  margin-bottom: 4rem;
}
.faq-intro .section-subtitle { margin: 0 auto; }

.faq-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-category-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(42,125,111,0.2);
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--forest);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal); }
.faq-question[aria-expanded="true"] { color: var(--amber); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-question[aria-expanded="true"] .faq-icon { color: var(--amber); }

.faq-answer {
  padding: 0 0 1.1rem;
}
.faq-answer p {
  font-size: 0.9rem;
  color: #6b635c;
  line-height: 1.78;
}

/* CTA strip */
.faq-cta {
  background: var(--forest);
  padding: 5.5rem 8%;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.faq-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,136,58,0.1) 0%, transparent 70%);
}
.faq-cta-inner {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}
.faq-cta h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.faq-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.faq-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-ghost-dark {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-dark:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

@media (max-width: 900px) {
  .faq-body { grid-template-columns: 1fr; gap: 1.5rem; }
  .faq-section { padding: 4rem 5%; }
}
