/* ============================================================
   LUMINA ENERGY — FAQ Section
   ============================================================ */

/* Section wrapper */
.section-faq {
  padding: 100px 0;
  background: #111111;
}

/* Two-column layout */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

/* ── Left column ─────────────────────────────────────────── */
.faq-intro .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.faq-intro .section-title {
  margin-bottom: 24px;
}

.faq-intro p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq-badge {
  display: inline-block;
  background: rgba(139, 197, 63, 0.1);
  border: 1px solid rgba(139, 197, 63, 0.2);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* ── Right column: accordion ─────────────────────────────── */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* FAQ item container */
.faq-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: rgba(139, 197, 63, 0.2);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #1A1A1A;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-question:hover,
.faq-item.open .faq-question {
  background: rgba(139, 197, 63, 0.05);
  color: #8BC53F;
}

/* +/- icon */
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #8BC53F;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
  user-select: none;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Collapsible answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #151515;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 20px 24px 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-faq {
    padding: 70px 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 18px 20px;
  }

  .faq-answer p {
    padding: 16px 20px 20px;
  }
}
