/* ================================
           FAQ SECTION
        ================================= */

.faq-section {
    position: relative;
    padding: 90px 0;
    background: #f7f9fb;
    overflow: hidden;
}

/* Decorative circles */

.faq-section::before {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(216, 174, 78, 0.08);

    top: -180px;
    left: -120px;
}

.faq-section::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    border: 1px solid rgba(216, 174, 78, 0.15);

    right: -150px;
    bottom: -150px;
}


.faq-wrapper {
    position: relative;
    z-index: 2;
}


/* ================================
           LEFT SIDE
        ================================= */

.faq-intro {
    padding-right: 50px;
}

.faq-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 700;

    color: var(--mst-gold);

    text-transform: uppercase;
    letter-spacing: 1.5px;

    margin-bottom: 15px;
}

.faq-tag::before {
    content: "";

    width: 30px;
    height: 2px;

    background: var(--mst-gold);
}


.faq-title {
    color: #10213d;

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 700;

    line-height: 1.15;

    margin-bottom: 20px;
}

.faq-title span {
    color: var(--mst-gold);
}


.faq-description {
    color: #64748b;

    font-size: 16px;

    line-height: 1.7;

    max-width: 480px;

    margin-bottom: 30px;
}


/* Contact box */

.faq-contact {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px;

    max-width: 390px;

    background: #fff;

    border: 1px solid #e7e7e7;

    border-radius: 12px;

    box-shadow: 0 8px 30px rgba(16, 33, 61, 0.05);
}

.faq-contact-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #10213d;

    color: #d9b052;

    border-radius: 50%;

    font-size: 18px;
}

.faq-contact strong {
    display: block;

    color: #10213d;

    font-size: 14px;

    margin-bottom: 3px;
}

.faq-contact span {
    color: #718096;

    font-size: 13px;
}


/* ================================
           FAQ CARD
        ================================= */

.faq-card {
    position: relative;

    background: #fff;

    border-radius: 20px;

    padding: 45px;

    min-height: 390px;

    border: 1px solid #e5e7eb;

    box-shadow:
        0 20px 60px rgba(16, 33, 61, 0.08);

    overflow: hidden;
}


/* Gold top line */

.faq-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #d9b052;
}


/* FAQ number */

.faq-number {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;
}

.faq-number span {
    color: #d0a444;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;
}

.faq-number i {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f7f4eb;

    color: #c69b39;

    font-size: 18px;
}


/* Question */

.faq-question {
    color: #10213d;

    font-size: clamp(22px, 2.5vw, 30px);

    font-weight: 700;

    line-height: 1.3;

    margin-bottom: 20px;

    max-width: 650px;
}


/* Answer */

.faq-answer {
    color: #68778c;

    font-size: 15px;

    line-height: 1.8;

    max-width: 650px;

    margin-bottom: 0;
}


/* ================================
           FADE ANIMATION
        ================================= */

.faq-content {
    animation: faqFade 0.55s ease;
}

@keyframes faqFade {

    0% {
        opacity: 0;
        transform: translateX(25px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ================================
           CONTROLS
        ================================= */

.faq-controls {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 30px;
}


.faq-progress-wrapper {
    display: flex;

    align-items: center;

    gap: 12px;

    width: 65%;
}

.faq-progress {
    height: 3px;

    flex: 1;

    background: #e5e7eb;

    border-radius: 10px;

    overflow: hidden;
}

.faq-progress-bar {
    height: 100%;

    width: 16.66%;

    background: #d9b052;

    transition: width 0.4s ease;
}

.faq-progress-count {
    color: #8a94a4;

    font-size: 12px;

    font-weight: 600;

    white-space: nowrap;
}


.faq-buttons {
    display: flex;

    gap: 10px;
}


.faq-btn {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid #d9b052;

    background: #fff;

    color: #10213d;

    font-size: 18px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.faq-btn:hover {
    background: #d9b052;

    color: #fff;

    transform: translateY(-2px);
}


.faq-btn.next {
    background: #10213d;

    color: #fff;

    border-color: #10213d;
}

.faq-btn.next:hover {
    background: #d9b052;

    border-color: #d9b052;
}


/* ================================
           RESPONSIVE
        ================================= */

@media (max-width: 991px) {

    .faq-intro {
        padding-right: 0;

        margin-bottom: 45px;
    }

    .faq-card {
        padding: 35px;
    }
}


@media (max-width: 575px) {

    .faq-section {
        padding: 65px 0;
    }

    .faq-card {
        padding: 30px 22px;

        min-height: 420px;

        border-radius: 16px;
    }

    .faq-controls {
        flex-direction: column;

        gap: 20px;

        align-items: stretch;
    }

    .faq-progress-wrapper {
        width: 100%;
    }

    .faq-buttons {
        justify-content: flex-end;
    }

    .faq-contact {
        max-width: 100%;
    }
}