 /* ===== GLOW WRAP & FAQ CONTAINER STYLING (MERAH ELEGANT & NYAMAN DI MATA) ===== */
.glow-wrap {
  margin: 40px auto;
  position: relative;
  padding: 20px;
  border-radius: 28px;
}

.glow-wrap::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 36px;
  background: rgba(220, 53, 69, 0.12);
  filter: blur(20px);
  opacity: 0.7;
  z-index: 0;
}

.glow-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #160a0a, #0c0505);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 24px;
  padding: 30px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(220, 53, 69, 0.12);
  font-family: "Poppins", sans-serif;
  color: #e2e8f0;
}

/* ===== SECTION TITLE ===== */
.mw-title {
  text-align: center;
  margin: 0 0 25px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 60, 60, 0.4);
  letter-spacing: 0.5px;
  border-bottom: 2px dashed rgba(255, 170, 0, 0.4);
  padding-bottom: 12px;
}

/* ===== FAQ ITEM ===== */
.mw-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.mw-faq-item:hover {
  background: rgba(220, 53, 69, 0.08);
  border-color: rgba(220, 53, 69, 0.4);
  box-shadow: 0 0 12px rgba(220, 53, 69, 0.2);
}

.mw-faq-item strong {
  font-size: 15px;
  color: #ffffff;
}

.mw-faq-icon {
  font-weight: 900;
  font-size: 18px;
  color: #ffaa00;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* ===== FAQ ANSWER ===== */
.mw-faq-answer {
  display: none;
  padding: 5px 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
}

/* Catatan Kaki FAQ */
.mw-faq-note {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.6;
  color: #94a3b8;
  text-align: center;
  font-style: italic;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 520px) {
  .glow-wrap { padding: 10px; }
  .glow-inner { padding: 20px 15px; }
  .mw-title { font-size: 1.3rem; }
  .mw-faq-item strong { font-size: 14px; }
  .mw-faq-answer { font-size: 13.5px; }
}