/* =========================================================
   FAQ PAGE — AURORA WISATA
========================================================= */

.faq-page {
    background: #ffffff;
    color: #222;
}

/* =========================================================
   CONTAINER
========================================================= */

.faq-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.faq-hero {
    position: relative;
    padding: 96px 0 78px;
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(1, 255, 0, 0.10) 0,
            rgba(1, 255, 0, 0.045) 180px,
            transparent 360px
        ),
        radial-gradient(
            circle at 8% 90%,
            rgba(255, 101, 0, 0.055) 0,
            transparent 320px
        ),
        linear-gradient(
            135deg,
            #f8faf6 0%,
            #fdfdfb 48%,
            #faf8f5 100%
        );
    overflow: hidden;
}

.faq-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(1, 255, 0, 0.08);
}

.faq-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.faq-hero-content {
    max-width: 820px;
    padding-top: 8px;
}

.faq-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: #ff6500;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-eyebrow,
.faq-section-label,
.faq-cta-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #ff6500;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-hero h1 {
    margin: 0 0 20px;
    max-width: 760px;
    font-size: clamp(42px, 4.5vw, 56px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #162016;
}

.faq-hero p {
    max-width: 760px;
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.faq-breadcrumb-wrap {
    border-bottom: 1px solid #eeeeee;
    background: #fff;
}

.faq-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 50px;
    font-size: 14px;
}

.faq-breadcrumb a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-breadcrumb a:hover {
    color: #ff6500;
}

.faq-breadcrumb span:last-child {
    color: #222;
    font-weight: 600;
}

.faq-breadcrumb-separator {
    color: #aaa;
}


/* =========================================================
   CONTENT
========================================================= */

.faq-content {
    padding: 48px 0 90px;
}

.faq-heading {
    width: 100%;
    max-width: 820px;
    margin: 0 0 38px;
}

.faq-heading h2 {
    position: relative;
    margin: 0 0 16px;
    padding-left: 18px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    color: #172017;
}

.faq-heading h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 5px;
    height: calc(100% - 6px);
    border-radius: 4px;
    background: #01ff00;
}

.faq-heading p {
    margin: 0;
    max-width: 760px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.faq-item {
    width: 100%;
    margin: 0 0 14px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    border-color: rgba(255, 101, 0, 0.35);
}

.faq-question {
    width: 100%;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 24px;
    border: 0;
    background: #fff;
    color: #172017;
    font: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: #ff6500;
}

.faq-question-text {
    flex: 1;
}

.faq-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4f4f4;
    color: #222;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.faq-item.is-open {
    border-color: rgba(255, 101, 0, 0.45);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.faq-item.is-open .faq-icon {
    background: #ff6500;
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    border-top: 1px solid #eeeeee;
}

.faq-answer-inner {
    padding: 20px 24px 24px;
    color: #5c5c5c;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   EMPTY
========================================================= */

.faq-empty {
    width: 100%;
    padding: 40px;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    text-align: center;
}

.faq-empty h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.faq-empty p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.faq-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 64px;
    padding: 38px 42px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        #172017,
        #263126
    );
    color: #fff;
}

.faq-cta-content {
    flex: 1;
    max-width: 760px;
}

.faq-cta-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #01ff00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-cta h2 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.3;
}

.faq-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.faq-cta-button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #ff6500;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.faq-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 101, 0, 0.25);
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .faq-container,
    .faq-hero-inner {
        width: calc(100% - 32px);
        max-width: none;
    }

    .faq-hero {
        padding: 72px 0 58px;
    }

    .faq-hero h1 {
        font-size: 34px;
        line-height: 1.12;
    }

    .faq-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .faq-content {
        padding: 58px 0 70px;
    }

    .faq-heading {
        margin-bottom: 30px;
    }

    .faq-heading h2 {
        font-size: 29px;
    }

    .faq-heading p {
        font-size: 15px;
        line-height: 1.75;
    }

    .faq-question {
        min-height: 68px;
        padding: 17px 18px;
        gap: 14px;
        font-size: 16px;
    }

    .faq-icon {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .faq-answer-inner {
        padding: 17px 18px 20px;
        font-size: 15px;
        line-height: 1.75;
    }

    .faq-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-top: 50px;
        padding: 30px 24px;
    }

    .faq-cta h2 {
        font-size: 24px;
    }

    .faq-cta-button {
        width: 100%;
    }
}


@media (max-width: 480px) {

    .faq-container,
    .faq-hero-inner {
        width: calc(100% - 24px);
    }

    .faq-hero {
        padding: 75px 0 48px;
    }

    .faq-hero h1 {
        font-size: 30px;
    }

    .faq-hero p {
        font-size: 15px;
    }

    .faq-breadcrumb {
        min-height: 48px;
        font-size: 13px;
    }

    .faq-content {
        padding: 48px 0 60px;
    }

    .faq-heading h2 {
        font-size: 27px;
    }

    .faq-question {
        min-height: 64px;
        padding: 15px 16px;
        font-size: 15px;
    }

    .faq-answer-inner {
        padding: 16px;
        font-size: 14px;
    }

    .faq-cta {
        padding: 26px 20px;
        border-radius: 14px;
    }
}