/* ----- FAQ PAGE SPECIFIC STYLES ----- */
/* These styles are specific to the FAQ page and should not be reused elsewhere */

/* Title with icon */
.faq-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-title-icon {
  width: 1.75rem;
  height: 1.75rem;
  fill: var(--bs-primary);
  flex-shrink: 0;
}

/* Section Labels */
.faq-section-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: #e2e8f0;
  letter-spacing: 0.02em;
}

.faq-section-label i {
  font-size: 1.1rem;
  color: var(--bs-primary);
}

/* CTA Card */
.faq-cta-card {
  background-color: rgba(12, 18, 35, 0.85);
  border: 1px solid rgba(0, 175, 255, 0.15);
  border-radius: 1rem;
  padding: 2rem 2rem;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.45);
}

.faq-cta-card h3 {
  font-weight: 700;
  color: #f1f5f9;
}

/* Search highlight */
.faq-highlight {
  background-color: rgba(0, 175, 255, 0.15);
  color: #e2e8f0;
  border-radius: 0.15rem;
  padding: 0 0.1rem;
}

/* Section hide/show for category filter */
.faq-section.hidden {
  display: none;
}

/* Empty state */
.faq-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: #64748b;
  display: none;
}

.faq-no-results.visible {
  display: block;
}

.faq-no-results i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #475569;
}
