/* Hero Section */
.hero-section-help-center {
    padding: 150px 0 100px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    background: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
}

/* =========================
   HELP SECTION (BASE)
========================= */
.help-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.help-section .section-title {
  font-size: clamp(26px, 4vw, 55px);
  font-weight: 700;
  margin-bottom: 16px;
}

.help-section .gradient-text {
  background: linear-gradient(90deg, rgba(0, 63, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.help-section .section-description {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  max-width: 694px;
  margin: 0 auto;
  line-height: 28px;
}

.help-section .help-row {
  margin-top: 3rem;
}

.help-section .help-card {
  height: 100%;
}

.help-section .help-tile {
  background: linear-gradient(180deg, var(--tile-gradient-top) 0%, var(--tile-gradient-bottom) 100%);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;

  color: inherit;
}

.help-section .help-tile:hover {
  transform: translateY(-5px);
}

.help-section .help-tile:focus-visible {
  outline: 2px solid rgba(0, 63, 255, 0.8);
  outline-offset: 3px;
}

.help-section .help-icon {
  font-size: 56px;
  color: var(--white);
  line-height: 1;
}

.help-section .tile-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

/* =========================
   HELP SECTION (RESPONSIVE)
========================= */

/* Tablet */
@media (max-width: 992px) {
  .help-section {
    padding: 60px 0;
  }

  .help-section .help-row {
    margin-top: 2rem;
  }

  .help-section .help-tile {
    padding: 30px 16px;
    border-radius: 12px;
  }

  .help-section .help-icon {
    font-size: 50px;
  }

  .help-section .tile-title {
    font-size: 18px;
  }

  .help-section .section-description {
    font-size: 15px;
    line-height: 26px;
  }
}

/* faqs section */
.faqs-section {
    position: relative;
    background: #000000;
    z-index: 1;
    color: #fff;
}
.faq {
    margin: 15px 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}
.accordion {
    background: transparent;
    color: #fff;
    width: 100%;
    padding: 1.5rem 2rem;
    outline: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.accordion i {
    font-size: 1.3rem;
    color: #fff;
    transition: transform 0.3s ease;
}
/* efek hover */
.accordion:hover {
    background: rgba(255, 255, 255, 0.25);
}
/* rotasi icon saat aktif */
.accordion.active i {
    transform: rotate(180deg);
}
.pannel {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.pannel p {
    margin: 1.5rem 0 0;
    line-height: 1.6;
}

/* panel terbuka */
.faq.active .pannel {
    padding-bottom: 1.5rem;
    max-height: 300px; /* bisa kamu ubah sesuai tinggi konten */
}


/* Mobile Large */
@media (max-width: 768px) {
  .help-section {
    padding: 50px 0;
  }

  .help-section .help-tile {
    padding: 26px 16px;
  }

  .help-section .help-icon {
    font-size: 44px;
  }

  .help-section .tile-title {
    font-size: 18px;
  }

  .help-section .section-description {
    font-size: 14px;
    line-height: 24px;
  }
}

/* Mobile Small */
@media (max-width: 576px) {
  .help-section {
    padding: 44px 0;
  }

  .help-section .help-row {
    margin-top: 1.5rem;
  }

  .help-section .help-tile {
    padding: 22px 14px;
  }

  .help-section .help-icon {
    font-size: 40px;
  }

  .help-section .tile-title {
    font-size: 17px;
  }
}



/* Responsive - Laptop/Tablet Large */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }

    .section-title {
        font-size: 48px;
    }
}


/* Responsive - Tablet */
@media (max-width: 992px) {
    .hero-section {
        padding: 130px 0 80px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-heading {
        font-size: 32px;
    }
}

/* Responsive - Mobile Large */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .section-description {
        font-size: 14px;
        line-height: 24px;
    }

    .section-heading {
        font-size: 28px;
        white-space: normal;
    }
}

/* Responsive - Mobile Small */
@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .section-heading {
        font-size: 24px;
    }

    .section-description {
        font-size: 13px;
        line-height: 22px;
    }
}

/* Additional responsive improvements */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

@media (max-width: 576px) {
    .section-heading {
        margin-right: 0 !important;
        margin-bottom: 20px;
    }
}
