/* FAQ Page Styles */

/* FAQ Hero Section */
.faq-hero {
  margin-top: 80px;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  text-align: center;
  color: white;
}

.faq-hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  animation: slideInLeft 1s ease-out;
}

.faq-hero-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  animation: slideInLeft 1s ease-out 0.2s;
  animation-fill-mode: both;
}

/* FAQ Container */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* FAQ Categories */
.faq-categories {
  margin-bottom: 4rem;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light);
}

/* FAQ Items */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
  color: var(--dark);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.faq-item p {
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}

.faq-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.faq-item a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Pricing Table Styles */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pricing-option {
  background: var(--light);
  border: 2px solid var(--gray-lighter);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-light);
}

.pricing-option.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-option.best-value {
  border-color: var(--success);
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
}

.best-value-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--success);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-option h4 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.price-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.total-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
}

.per-month {
  font-size: 0.9rem;
  color: var(--gray);
}

.discount {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

.discount.save {
  color: var(--success);
  font-weight: 600;
}

/* Contact CTA Section */
.faq-contact {
  background: var(--light);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-contact h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.faq-contact p {
  color: var(--gray);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

