/* FAQs Section Styles */
#faqs {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

#faqs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

#faqs .container {
  position: relative;
  z-index: 2;
}

.faqs-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  margin-top: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
}

.faqs-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  border-radius: 2px;
}

.faqs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border-radius: 8px;
  margin-bottom: 8px;
}

.faq-question:hover {
  background: rgba(99, 102, 241, 0.02);
}

.faq-number {
  font-weight: 700;
  font-size: 1.1rem;
  color: #6366f1;
  min-width: 40px;
  margin-right: 20px;
}

.faq-text {
  flex: 1;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a1a1a;
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #6366f1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 20px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 60px 0 60px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 60px 24px 60px;
}

.faq-answer p {
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.faq-item.active .faq-icon {
  color: #6366f1;
  transform: rotate(180deg);
}

.faq-item.active .faq-question {
  background: rgba(99, 102, 241, 0.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .faqs-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .faqs-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  #faqs {
    padding: 60px 0;
  }
  
  .faqs-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 24px 0;
  }

  .faq-text {
    font-size: 1rem;
  }

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

  .faq-item.active .faq-answer {
    padding: 0 40px 20px 60px;
  }
}

@media (max-width: 576px) {
  #faqs {
    padding: 40px 0;
  }

  .faqs-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-number {
    font-size: 1rem;
    min-width: 30px;
    margin-right: 15px;
  }

  .faq-text {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 30px 0 45px;
  }

  .faq-item.active .faq-answer {
    padding: 0 30px 16px 45px;
  }

  .faq-answer p {
    font-size: 1rem;
  }
} 