/* =========================================
   FAQ PAGE STYLES
   ========================================= */

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 800px;
  margin: 0 auto;
}

/* Category */
.faq-category-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--teal);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-light);
}

/* Individual FAQ item */
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--teal);
}

.faq-question[aria-expanded="true"] {
  color: var(--teal);
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer.open {
  max-height: 1000px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
}

.faq-answer a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.faq-answer a:hover {
  color: var(--teal-dark);
}

/* CTA block at bottom */
.faq-cta {
  text-align: center;
  margin-top: 72px;
  padding: 56px 32px;
  background: var(--charcoal);
  border-radius: var(--radius);
  color: var(--white);
}

.faq-cta h2 {
  color: var(--white);
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 12px;
}

.faq-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section { padding: 56px 0; }
  .faq-question { font-size: 15px; }
}
