/* ── FAQ Section ─────────────────────────────────────────── */
.faq-section {
  padding: 5rem 0;
  direction: rtl;
}

.faq-section .section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #C9AA71;
  margin-bottom: .75rem;
  opacity: .7;
}

.faq-section .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  color: #f0ebe3;
  margin-bottom: 3rem;
  line-height: 1.25;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.faq-item {
  border: 1px solid rgba(201, 170, 113, .15);
  border-radius: 10px;
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
  transition: border-color .25s;
}

.faq-item:hover {
  border-color: rgba(201, 170, 113, .3);
}

.faq-item.open {
  border-color: rgba(201, 170, 113, .35);
  background: rgba(201, 170, 113, .03);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  cursor: pointer;
  user-select: none;
  font-size: 1rem;
  font-weight: 400;
  color: #e8e2d9;
  line-height: 1.5;
  list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(201, 170, 113, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9AA71;
  transition: transform .3s, background .25s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(201, 170, 113, .12);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4, 0, .2, 1), padding .3s;
  padding: 0 1.375rem;
  font-size: .9375rem;
  color: rgba(240, 235, 227, .65);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 1.375rem 1.25rem;
}

.faq-answer p { margin: 0 0 .75rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: #C9AA71; text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

.faq-empty {
  text-align: center;
  padding: 3rem;
  color: rgba(240, 235, 227, .3);
  font-size: .875rem;
}

@media (max-width: 640px) {
  .faq-section { padding: 3.5rem 0; }
  .faq-question { padding: 1rem 1.125rem; font-size: .9375rem; }
  .faq-item.open .faq-answer { padding: 0 1.125rem 1rem; }
}
