/* FAQ Page Styles */

/* Hero Section */
.faq-page .hero-section {
  padding: 120px 0 60px;
  background: #000000;
  text-align: center;
}

.faq-page .hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.faq-page .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0 80px;
  background: #000000;
}

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

.faq-section .faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
}

.faq-section .faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
  line-height: 1.4;
}

.faq-section .faq-answer {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 1rem;
}

/* CTA Section */
.faq-section .cta-section {
  max-width: 600px;
  margin: 60px auto 0;
  text-align: center;
  padding: 48px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.faq-section .cta-section h2 {
  font-size: 1.75rem;
  color: white;
  margin-bottom: 12px;
}

.faq-section .cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.faq-section .btn-large {
  font-size: 1rem;
  padding: 16px 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-page .hero-section {
    padding: 100px 0 40px;
  }

  .faq-page .hero-section h1 {
    font-size: 2rem;
  }

  .faq-page .hero-subtitle {
    font-size: 1rem;
  }

  .faq-section {
    padding: 40px 0 60px;
  }

  .faq-section .faq-item {
    padding: 24px;
  }

  .faq-section .faq-question {
    font-size: 1.1rem;
  }

  .faq-section .cta-section {
    padding: 32px 24px;
  }

  .faq-section .cta-section h2 {
    font-size: 1.5rem;
  }
}

/* RTL Support */
html[dir="rtl"] .faq-section .faq-item {
  text-align: right;
}

html[dir="rtl"] .faq-section .cta-section {
  text-align: right;
}
