/* ═══════════════════════════════════════════
   Thm-Samsung-v5 Luxe — FAQ V1 Accordion
   Dark Theme + Red Brand (#DC2626) + Gold Accent (#B8860B)
   ═══════════════════════════════════════════ */

.fl-luxe-faq-v1 {
  padding: 56px 48px;
  margin-bottom: 48px;
  background: #2D2D4E;
  border: 1px solid #3D3D5C;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.fl-luxe-faq-v1-header {
  margin-bottom: 40px;
}

.fl-luxe-faq-v1-title {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  color: #E8E8E8;
  font-family: 'Georgia', serif;
}

.fl-luxe-faq-v1-intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #9A9ABF;
  font-family: 'Georgia', serif;
}

.fl-luxe-faq-v1-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fl-luxe-faq-v1-item {
  border: 1px solid #3D3D5C;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fl-luxe-faq-v1-item:hover {
  border-color: #B8860B;
}

.fl-luxe-faq-v1-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: #1A1A2E;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #E8E8E8;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
}

.fl-luxe-faq-v1-question:hover {
  background: #24243E;
}

.fl-luxe-faq-v1-number {
  font-size: 24px;
  font-weight: 700;
  color: #B8860B;
  min-width: 32px;
  font-family: 'Georgia', serif;
}

.fl-luxe-faq-v1-icon {
  margin-left: auto;
  font-size: 20px;
  color: #B8860B;
  transition: transform 0.3s ease;
}

.fl-luxe-faq-v1-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 0 solid #3D3D5C;
}

.fl-luxe-faq-v1-item.is-open .fl-luxe-faq-v1-answer {
  max-height: 500px;
  border-top: 1px solid #3D3D5C;
}

.fl-luxe-faq-v1-answer p {
  margin: 0;
  padding: 24px 28px;
  font-size: 15px;
  line-height: 1.8;
  color: #9A9ABF;
  font-family: 'Georgia', serif;
}

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

@media (max-width: 768px) {
  .fl-luxe-faq-v1 {
    padding: 40px 24px;
  }

  .fl-luxe-faq-v1-title {
    font-size: 28px;
  }

  .fl-luxe-faq-v1-question {
    padding: 20px 24px;
    font-size: 15px;
  }

  .fl-luxe-faq-v1-answer p {
    padding: 20px 24px;
  }
}
