/* start section hero content */
.help-section {
  background-color: #0056D2;
  padding: 60px 20px;
  color: white;
  margin-top: 30px;
}

.help-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.help-text {
  flex: 1;
  padding: 20px;
}

.help-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.help-text p {
  font-size: 18px;
  line-height: 1.6;
}
.help-image {
  flex: 1;
  text-align: center;
}

.help-image img {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 50px;
    padding: 12px; /* padding dikurangi supaya gak terlalu jauh */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.help-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}


.help-subtitle {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* Tablet (max-width: 992px) */
@media (max-width: 1024px) {
  .help-container {
    flex-direction: row;
    /* Tetap row seperti desktop */
  }

  .help-text h2 {
    font-size: 28px;
  }

  .help-text p {
    font-size: 16px;
  }

  .help-image img {
    max-width: 100%;
    padding: 0px 20px
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .help-container {
    flex-direction: column-reverse;
  }

  .help-text,
  .help-image {
    justify-content: center;
    text-align: center;
  }

  .help-text h2 {
    font-size: 24px;
    padding: 10px;
  }

  .help-text p {
    font-size: 14px;
  }

  .help-image img {
    max-width: 100%;
  }

  .help-subtitle {
    display: none;
  }
}

/* end section hero content */


/* start section faq */
.faq-container {
  width: 100%;
  max-width: 1000px; /* Atur sesuai kebutuhan */
  margin-left: auto;
  margin-right: auto;
}


.faq-title {
  font-size: 28px;
  font-weight: bold;
  color: #1a2b6d;
  text-align: center;
}

.faq-container p {
  color: #949BB8;
  font-size: 16px;
  margin: 15px 0;
  line-height: 1.6;
  width: 700px;
}

.faq-filters {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  /* Agar tombol tetap rapi jika ruang tidak cukup */
}

.faq-filter-btn {
  background-color: #0056D2;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 20px;
  font-size: 16px;
}

.faq-filter-btn.active,
.faq-filter-btn:hover {
  background-color: #003a91;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
  gap: 30px;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}

.faq-question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active {
  color: #0056b3;
}

.faq-answer {
  font-size: 16px;
  color: #4b4b4b;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-answer.show {
  max-height: 500px;
  opacity: 1;
}

.faq-question.active i {
  transform: rotate(180deg);
}

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .faq-container {
    padding: 50px 20px;
  }

  .faq-filters {
    gap: 8px;
  }

  .faq-filter-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .faq-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .faq-title {
    font-size: 26px;
  }

  .faq-answer {
    font-size: 15px;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .faq-container {
    padding: 40px 15px;
  }

  .faq-filters {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .faq-filter-btn {
    padding: 8px 15px;
    width: auto;
    font-size: 14px;
    border-radius: 16px;
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* end section faq */




/* start cta bantuan section */

.bantuan-section {
  position: relative;
  background-size: cover;
  border-radius: 20px;
  color: white;
  overflow: hidden;
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  align-items: center;
  height: 250px;
  padding: 40px;
  margin-bottom: 100px;
}

.bantuan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 110, 255, 0.85), rgba(2, 42, 94, 0.3));
  z-index: 1;
}

.bantuan-content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.bantuan-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.bantuan-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: white;
}

.btn-hubungi {
  display: inline-block;
  background-color: white;
  color: #006eff;
  padding: 10px 20px;
  border-radius: 0.375rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn-hubungi:hover {
  background-color: #e0e0e0;
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .bantuan-section {
    padding: 30px;
    height: 220px;
    max-width: 100%;
    margin: 0px 30px;
    margin-bottom: 70px;
  }

  .bantuan-content {
    max-width: 70%;
  }

  .bantuan-content h2 {
    font-size: 22px;
  }

  .bantuan-content p {
    font-size: 14px;
  }

  .btn-hubungi {
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .bantuan-section {
    flex-direction: column;
    height: auto;
    max-width: 100%;
    margin-bottom: 70px;
  }

  .bantuan-content {
    max-width: 100%;
  }

  .bantuan-content h2 {
    font-size: 20px;
  }

  .bantuan-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .btn-hubungi {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
}

/* Extra Small (max-width: 480px) */
@media (max-width: 480px) {
  .bantuan-content h2 {
    font-size: 18px;
  }

  .bantuan-content p {
    font-size: 12px;
  }

  .btn-hubungi {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* end cta bantuan section */