/* FAQ Page Styles */
:root {
  --faq-bg: #0a1628;
  --faq-card: rgba(255, 255, 255, 0.03);
  --faq-border: rgba(255, 255, 255, 0.06);
}

.faq-page {
  background-color: var(--faq-bg);
  color: var(--white);
  min-height: 100vh;
}

/* FAQ Hero */
.faq-header-section {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, rgba(5, 13, 26, 1) 0%, var(--faq-bg) 100%);
  position: relative;
  overflow: hidden;
}

.faq-header-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 164, 94, 0.05) 0%, transparent 70%);
  filter: blur(50px);
}

.faq-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.faq-subtitle {
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

/* FAQ Search */
.faq-search-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.faq-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-search-input {
  width: 100%;
  padding: 18px 60px 18px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--faq-border);
  border-radius: 50px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-search-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(200, 164, 94, 0.15);
}

.faq-search-icon {
  position: absolute;
  right: 25px;
  color: var(--gold);
  font-size: 1.2rem;
}

/* FAQ Categories */
.faq-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.faq-cat-btn {
  padding: 12px 25px;
  background: var(--faq-card);
  border: 1px solid var(--faq-border);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-cat-btn:hover, .faq-cat-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* FAQ Content */
.faq-content-section {
  padding: 60px 0 120px;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category-group {
  margin-bottom: 60px;
}

.faq-category-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.faq-category-title i {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Accordion */
.faq-item {
  background: var(--faq-card);
  border: 1px solid var(--faq-border);
  border-radius: 16px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(200, 164, 94, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 164, 94, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  padding-left: 20px;
  line-height: 1.5;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.1);
}

.faq-answer-inner {
  padding: 0 30px 30px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-size: 1rem;
}

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

/* Contact CTA */
.faq-contact-cta {
  text-align: center;
  margin-top: 80px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(200, 164, 94, 0.05) 0%, transparent 100%);
  border: 1px solid var(--faq-border);
  border-radius: 24px;
}

.faq-contact-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.faq-contact-cta p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-header-section { padding: 120px 0 60px; }
  .faq-cat-btn { padding: 10px 18px; font-size: 0.9rem; }
  .faq-question h3 { font-size: 1rem; }
  .faq-answer-inner { font-size: 0.95rem; }
  .faq-contact-cta { padding: 40px 20px; }
}
