/* FAQ SECTION */
.faq-section {
  padding: 3rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-heading-yellow);
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.faq-description {
  font-size: var(--fs-md);
  color: var(--color-secondary);
  text-align: center;
  margin-bottom: 3rem;
  line-height: var(--line-height);
}

.faq-intro-card {
  margin-bottom: 3rem;
}

.faq-intro-card .info-card__content p {
  color: #eee;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-dark-card-bg);
  border: 1px solid rgba(46, 204, 113, 0.4);
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(46, 204, 113, 0.6);
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  color: var(--color-heading-yellow);
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.faq-question:hover {
  color: var(--color-yellow-hover);
  background: rgba(46, 204, 113, 0.05);
}

.faq-question::after {
  content: '\25BC'; /* Down arrow */
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: var(--color-heading-yellow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
  color: #eee;
  font-family: var(--font-base);
  font-size: var(--fs-base);
  line-height: var(--line-height);
  margin: 0;
  padding: 0 2rem;
}

/* Contact Link Styling */
.faq-contact-link {
  color: var(--color-heading-yellow) !important;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.2s ease;
}

.faq-contact-link:hover {
  color: var(--color-yellow-hover) !important;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Active state */
.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 2rem 0;
  }
  
  .faq-title {
    font-size: 2.5rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: var(--fs-base);
  }
  
  .faq-answer p {
    padding: 0 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1.25rem 0;
  }
}