/* Container Dasar - Dibuat putih bersih sesuai gambar */
#faq-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
}

/* Card Utama - Menghilangkan bayangan berat & border tebal */
.faq-card-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Proporsi kiri-kanan */
  align-items: start;
}

/* Sisi Kiri */
.faq-info-side {
  position: -webkit-sticky;
  position: sticky;
  top: 60px; /* Jarak dari atas saat scroll di desktop */
  z-index: 10;
}

.faq-main-title {
  font-size: var(--fs-section-title);
  font-weight: var(--fw-extrabold);
  line-height: 1.1;
  color: #000000;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.faq-description {
  color: #555;
  line-height: 1.6;
  font-size: var(--fs-content-desc);
  margin-bottom: 30px;
  max-width: 380px;
}

/* Sisi Kanan Accordion - Gaya Minimalis Line-only */
.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-box {
  border-bottom: 1.5px solid #d1d1d1; /* Garis pemisah antar pertanyaan */
  background: transparent;
  transition: all 0.3s ease;
}

.faq-trigger {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.q-text {
  font-size: var(--fs-content-desc);
  font-weight: var(--fw-bold);
  color: #000000;
  transition: color 0.3s ease;
}

/* Ikon Plus/Minus */
.q-arrow {
  font-size: var(--fs-content-desc);
  font-weight: var(--fw-regular);
  color: #000;
}

/* Panel Jawaban */
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-box.active .faq-panel {
  max-height: 300px; /* Sesuaikan */
  padding-bottom: 25px;
}

.faq-content-inner p {
  color: #555;
  font-size: var(--fs-faq-question);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  margin: 0;
}

.dot-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Pastikan ini ditambahkan/menggantikan bagian icon sebelumnya */

.q-icon-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Menggunakan ::before untuk membuat simbol + atau - */
.q-icon-toggle::before {
  content: "+"; /* Simbol default */
  font-family: Arial, sans-serif; /* Gunakan font standar agar simbol terbaca */
  font-size: 24px;
  font-weight: 400;
  color: #22682a;
  line-height: 1;
  transition: all 0.2s ease;
}

/* Ketika FAQ aktif, ubah simbol + menjadi - */
.faq-box.active .q-icon-toggle::before {
  content: "\2212"; /* Unicode untuk tanda minus yang lebih rapi */
  font-weight: 700;
}

/* Tambahan agar teks pertanyaan tidak menempel ke icon */
.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 0;
}

/* Responsive Mobile */
@media (max-width: 992px) {
  .faq-info-side {
    /* Mematikan posisi sticky di mobile */
    position: relative;
    top: 0;
    margin-bottom: 40px; /* Memberi jarak agar tidak menempel dengan accordion */
  }

  .faq-card-container {
    /* Pastikan layout berubah menjadi satu kolom */
    grid-template-columns: 1fr;

    padding: 40px 20px;
  }

  .faq-main-title {
    font-size: 32px; /* Mengecilkan ukuran font agar proporsional di HP */
    line-height: 1.2;
  }
}
