/* ─── PAGE HERO ────────────────────────────────────── */
.page-hero {
  position: relative;
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.78);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

/* ─── FAQ SECTION ──────────────────────────────────── */
.faq-section {
  background: var(--offwhite);
  min-height: 80vh;
  padding: 80px;
}

.faq-intro {
  margin-bottom: 50px;
}

.faq-main-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.faq-subtitle {
  font-size: 0.9rem;
  color: #666;
}

/* ─── CATEGORY LABEL ───────────────────────────────── */
.faq-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 30px 0 10px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 0;
}

/* ─── FAQ ITEM ─────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.faq-question span:first-child {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

/* ─── ANSWER (collapsed by default) ───────────────── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
  padding-bottom: 22px;
  max-width: 800px;
}

/* ─── OPEN STATE ───────────────────────────────────── */
.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-item.open .faq-question span:first-child {
  color: var(--gold);
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .faq-section { padding: 60px 40px; }
}

@media (max-width: 767px) {
  .page-hero { height: 260px; }
  .faq-section { padding: 40px 24px; }
  .faq-main-title { font-size: 1.6rem; }
}