/**
 * FAQ Module CSS
 * Styles for accordion-style FAQ section
 */

/* ============================================
   FAQ SECTION
   ============================================ */

.lp-content .lp-faq-section {
  background: var(--lp-bg-light);
  padding: var(--lp-spacing-2xl) 0;
}

/* ============================================
   FAQ LIST
   ============================================ */

.lp-content .faq-list {
  max-width: 800px;
  margin: var(--lp-spacing-xl) auto 0;
}

.lp-content .faq-item {
  background: var(--lp-card);
  margin-bottom: 1rem;
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  transition: all 0.3s ease;
}

.lp-content .faq-item:hover {
  box-shadow: var(--lp-shadow-md);
}

.lp-content .faq-item.active {
  border-color: var(--lp-brand);
}

/* ============================================
   FAQ QUESTION
   ============================================ */

.lp-content .faq-question {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--lp-text-dark);
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.lp-content .faq-question:hover {
  color: var(--lp-brand);
  background: var(--lp-bg-section);
}

.lp-content .faq-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--lp-radius-full);
  background: var(--lp-bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lp-text-muted);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.lp-content .faq-item.active .faq-icon {
  background: var(--lp-brand);
  color: var(--lp-text-light);
  transform: rotate(45deg);
}

/* ============================================
   FAQ ANSWER
   ============================================ */

.lp-content .faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--lp-text-muted);
  line-height: 1.75;
  display: none;
}

.lp-content .faq-item.active .faq-answer {
  display: block;
  animation: fadeInDown 0.3s ease;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .lp-content .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }
  
  .lp-content .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }
}