/* ============================================
   FAQ.CSS — GLAMOUR SUPPORT CENTER
   ============================================ */

.faq-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #000000 0%, #020807 100%);
  position: relative;
  overflow: hidden;
}

.faq-bg-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.faq-radial-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(254, 214, 91, 0.05) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 5;
}

/* --- HEAD --- */
.faq-head {
  text-align: center;
  margin-bottom: 80px;
}

.faq-title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.faq-subtext {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- LIST --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- ITEM --- */
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.faq-item:hover {
  border-color: rgba(254, 214, 91, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.faq-item.open {
  border-color: rgba(254, 214, 91, 0.3);
  box-shadow: 0 0 30px rgba(254, 214, 91, 0.06);
  background: rgba(254, 214, 91, 0.02);
}

/* --- QUESTION BUTTON --- */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px 35px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-num {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--teal);
  opacity: 0.5;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: opacity 0.3s ease;
}

.faq-item.open .faq-num {
  opacity: 1;
  color: var(--gold);
}

.faq-q-text {
  flex: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.faq-item.open .faq-q-text {
  color: #fff;
}

.faq-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-icon {
  background: rgba(254, 214, 91, 0.1);
  border-color: rgba(254, 214, 91, 0.3);
  color: var(--gold);
  transform: rotate(45deg);
}

/* --- ANSWER --- */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  padding: 0 35px 30px 88px;
}

/* --- BOTTOM CTA --- */
.faq-cta {
  margin-top: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.faq-cta p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.v {
  opacity: 1;
  transform: translateY(0);
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .faq-question { padding: 24px 22px; gap: 16px; }
  .faq-answer p { padding: 0 22px 24px 22px; }
  .faq-num { display: none; }
  .faq-q-text { font-size: 15px; }
}