/* FAQ Page Dark Theme - Complete Styles */

/* Base body override */
body {
  background-color: #151024 !important;
  color: #f2e8ff !important;
}

/* Hero Section */
.faq-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.15), rgba(52, 152, 219, 0.1));
  border-radius: 16px;
  margin-bottom: 40px;
}

.faq-hero h1 {
  font-size: 2.5rem;
  color: #ff4a90 !important;
  margin-bottom: 16px;
}

.faq-hero .tagline {
  font-size: 1.3rem;
  color: #f2e8ff !important;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Category Navigation */
.faq-nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.faq-nav-item {
  padding: 12px 24px;
  background: rgba(242, 232, 255, 0.08) !important;
  border: 2px solid rgba(232, 67, 147, 0.3) !important;
  border-radius: 30px;
  text-decoration: none;
  color: #f2e8ff !important;
  font-weight: 600;
  transition: all 0.2s;
}

.faq-nav-item:hover,
.faq-nav-item.active {
  background: linear-gradient(135deg, #ff4a90, #ebb2ff) !important;
  color: white !important;
  border-color: transparent !important;
}

/* Category Sections */
.faq-category {
  margin-bottom: 50px;
}

.faq-category h2 {
  color: #ff4a90 !important;
  font-size: 1.8rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(232, 67, 147, 0.3);
}

/* FAQ Items (Accordion) */
.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(232, 67, 147, 0.2);
  background: rgba(242, 232, 255, 0.05) !important;
}

/* Question Buttons (Accordion Headers) */
.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: rgba(242, 232, 255, 0.08) !important;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(242, 232, 255, 0.12) !important;
}

.question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f2e8ff !important;
}

.faq-icon {
  font-size: 1.5rem;
  color: #ff4a90 !important;
  transition: transform 0.3s;
}

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

/* Answer Content */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(21, 16, 36, 0.5) !important;
}

.faq-item.active .faq-answer {
  max-height: 2000px;
}

.faq-answer-inner {
  padding: 25px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: #f2e8ff !important;
  margin-bottom: 15px;
}

.faq-answer p strong {
  color: #ff4a90 !important;
}

.faq-answer ul,
.faq-answer ol {
  margin: 15px 0;
  padding-left: 25px;
}

.faq-answer li {
  font-size: 1rem;
  line-height: 1.7;
  color: #f2e8ff !important;
  margin-bottom: 8px;
}

.faq-answer li strong {
  color: #ff4a90 !important;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 50px 40px;
  background: linear-gradient(135deg, #ff4a90, #ebb2ff) !important;
  border-radius: 16px;
  color: white !important;
  margin-top: 50px;
}

.cta-section h2 {
  color: white !important;
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn-large {
  display: inline-block;
  padding: 14px 35px;
  background: #151024 !important;
  color: #ff4a90 !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  border: 2px solid #ff4a90 !important;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-large:hover {
  background: #ff4a90 !important;
  color: white !important;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 74, 144, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-hero h1 { 
    font-size: 2rem; 
  }
  .faq-hero .tagline { 
    font-size: 1.1rem; 
  }
  .faq-nav { 
    flex-direction: column; 
    align-items: center; 
  }
  .faq-nav-item { 
    width: 100%; 
    text-align: center; 
  }
  .faq-question { 
    padding: 15px 20px; 
  }
  .question-text { 
    font-size: 1rem; 
  }
  .cta-section { 
    padding: 30px 20px; 
  }
}

/* CSS Custom Properties for consistency */
:root {
  --wp--preset--color--background: #151024;
  --wp--preset--color--text: #f2e8ff;
  --wp--preset--color--primary: #ff4a90;
  --wp--preset--color--secondary: #ebb2ff;
}