/* =====================
   FAQ PREMIUM
===================== */
.faq-section {
  background: radial-gradient(circle at top, rgba(212, 175, 55, .12), transparent 35%), #050505;
  padding: 110px 25px;
}

.faq-container {
  max-width: 950px;
  margin: auto;
}

/* HEADING */
.faq-heading {
  text-align: center;
  margin-bottom: 65px;
}

.faq-heading h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 900;
  color: white;
  margin-bottom: 25px;
}

.faq-heading p {
  font-size: 17px;
  line-height: 1.8;
  color: #bdbdbd;
}

.faq-heading strong {
  color: white;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  border: 1px solid rgba(212, 175, 55, .20);
  transition: .35s;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, .55);
}

.faq-question {
  width: 100%;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 900;
  color: white;
}

.faq-question span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #fff1a8);
  color: #050505;
  font-weight: 900;
  transition: .3s;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: .4s ease;
}

.faq-answer p {
  padding: 0 32px 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #aaa;
}

/* ACTIVE */
.faq-item.active {
  background: linear-gradient(145deg, rgba(212, 175, 55, .16), rgba(255, 255, 255, .03));
  border-color: rgba(212, 175, 55, .55);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 520px) {
  .faq-section {
    padding: 80px 20px;
  }
  
  .faq-question {
    font-size: 16px;
    padding: 24px;
  }
  
  .faq-answer p {
    padding: 0 24px 26px;
  }
}