/* 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 */
.help-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-title {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
}

.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;
}

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

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

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

.icon-large {
    font-size: 80px;
    color: var(--white);
    margin-bottom: 20px;
}

.faq-icon {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.faq-icon span {
    display: inline-block;
    margin: 0 5px;
}

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

/* Accordion Sections */
.accordion-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    scroll-margin-top: 90px; /* offset navbar fixed */
}

/* Hanya Terms & Policies yang memakai background-image */
.accordion-section.terms-section {
    background-image: url(/foto/94.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    bottom: -37px;
}

.section-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
}

.section-divider {
    height: 2px;
    background: var(--white);
    border: none;
    margin: 0;
}

.accordion-wrapper {
    margin-top: 30px;
}

.accordion-item {
    background: linear-gradient(
        180deg,
        var(--tile-gradient-top) 0%,
        var(--tile-gradient-bottom) 100%
    );
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.accordion-item.active {
    background: linear-gradient(
        180deg,
        var(--active-gradient-top) 0%,
        var(--active-gradient-bottom) 100%
    );
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.accordion-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.accordion-icon {
    font-size: 24px;
    color: var(--white);
    transition: transform 0.3s;
}

.accordion-content {
    padding: 0 24px 20px;
}

.accordion-content p {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    line-height: 35px;
    margin: 0;
}
