/* ============================================================
   FAQ PAGE — Specific Styles
   ============================================================ */

/* ── Search Box ──────────────────────────────────────────────── */
.faq-search-wrap {
  max-width: 560px;
  margin: 0 auto var(--sp-12);
  position: relative;
  z-index: 1;
}

.faq-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 18px;
  pointer-events: none;
}

.faq-search {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 3rem;
  background: rgba(16,18,26,0.7);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--r-lg);
  color: var(--text-primary);
  font-size: var(--fs-base);
  font-family: var(--font-sans);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  backdrop-filter: blur(12px);
}

.faq-search::placeholder { color: var(--text-muted); }

.faq-search:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.14);
  outline: none;
}

/* ── Category Tabs ───────────────────────────────────────────── */
.faq-tabs {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--sp-10);
  position: relative;
  z-index: 1;
}

.faq-tab {
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-base);
}

.faq-tab:hover {
  color: var(--text-primary);
  border-color: var(--glass-border-strong);
  background: rgba(59,130,246,0.06);
}

.faq-tab.active {
  background: rgba(59,130,246,0.14);
  border-color: var(--glass-border-accent);
  color: var(--blue-bright);
}

/* ── FAQ Container ───────────────────────────────────────────── */
.faq-container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-category-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--sp-5);
  margin-top: var(--sp-12);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--glass-border);
}

.faq-category-title:first-child { margin-top: 0; }

/* No results */
.faq-no-results {
  text-align: center;
  padding: var(--sp-20) var(--sp-8);
  color: var(--text-muted);
  font-size: var(--fs-base);
  display: none;
}

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

/* ── Still Have Questions? ───────────────────────────────────── */
.faq-cta {
  text-align: center;
  padding: var(--sp-16) var(--sp-12);
  background: linear-gradient(145deg, rgba(30,50,90,0.3) 0%, rgba(23,26,34,0.85) 50%, rgba(20,38,70,0.3) 100%);
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: var(--r-2xl);
  margin-top: var(--sp-16);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(59,130,246,0.14), inset 0 1px 0 rgba(96,165,250,0.08), inset 0 -1px 0 rgba(0,0,0,0.3);
}

.faq-cta h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.faq-cta p {
  color: rgba(241, 245, 249, 0.85);
  font-size: var(--fs-lg);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
