/* ---------- FAQ Page Styles ---------- */
.faq-hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(2, 132, 199, 0.8)), url('../images/banner.jpg') center/cover no-repeat;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.faq-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.faq-search-container {
  max-width: 650px;
  margin: -8rem auto 3rem auto;
  position: relative;
  z-index: 10;
  background: var(--white);
  padding: 0.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
}

.faq-search-container i {
  color: var(--text-muted);
  font-size: 1.2rem;
  padding: 0 1.25rem;
}

.faq-search-container input {
  flex: 1;
  border: none;
  padding: 1rem 1rem 1rem 0;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
  outline: none;
  color: var(--text-dark);
}

.faq-category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.faq-cat-btn {
  padding: 0.6rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.faq-cat-btn:hover, .faq-cat-btn.active {
  background: var(--primary-bright);
  color: var(--white);
  border-color: var(--primary-bright);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.faq-item.hidden {
  display: none !important;
}

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

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

.faq-question i {
  color: var(--primary-bright);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--primary-bright);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background: #f8fafc;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem 1.5rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.support-cta-section {
  padding: 4rem 2rem;
  margin: 4rem auto 2rem auto;
  max-width: 800px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary-bright);
}

.support-cta-section h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.support-cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.support-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
