@charset "UTF-8";

/* ========================================
   GREEN GARDEN - FAQ Page Styles
   ======================================== */

/* FAQ List */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Category */
.faq-category {
  margin-top: 50px;
  margin-bottom: 25px;
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-category h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

.faq-category h3 i {
  color: var(--primary-color);
}

/* FAQ Item */
.faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-q {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 1rem;
}

.faq-question h4 {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.6;
}

.faq-toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

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

/* FAQ Answer */
.faq-answer {
  display: none;
  padding: 0 25px 25px;
  padding-left: 76px;
}

.faq-item.active .faq-answer {
  display: flex;
  gap: 15px;
}

.faq-a {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary-pale);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 1rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

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

.faq-answer a:hover {
  color: var(--primary-dark);
}

/* FAQ CTA */
.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-cta-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 8px;
}

.faq-cta-content p {
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }

  .faq-question h4 {
    font-size: 0.9375rem;
  }

  .faq-q,
  .faq-a {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }

  .faq-answer {
    padding-left: 20px;
  }

  .faq-item.active .faq-answer {
    flex-direction: column;
    gap: 10px;
  }

  .faq-cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 25px;
  }

  .faq-cta-content h3 {
    font-size: 1.125rem;
  }
}
