/* ============================================================
   faq.css
   ============================================================ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(192,101,74,0.18);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: var(--terracotta);
  box-shadow: 0 4px 18px rgba(192,101,74,0.12);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 22px;
  background: var(--terracotta);
  border: none;
  cursor: pointer;
  font-family: 'Ubuntu', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  gap: 14px;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--terracotta-dark); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer-inner { padding: 16px 22px; }
.faq-answer-inner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-cta {
  max-width: 500px;
  margin: 52px auto 0;
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.faq-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--heading-accent);
}
.faq-cta p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}
.faq-cta-btns {
  display: flex; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
