/*==================================================
TESTIMONIALS + FAQ
==================================================*/

.testimonials-section {
    background: #f8f9fb;
}

.testimonials-intro {
    max-width: 760px;
    margin: 0 auto;
}

.testimonial-card {
    position: relative;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--border, #e6e9ee);
    border-radius: 20px;
    box-shadow: 0 14px 38px rgba(14, 37, 63, .08);
    transition: .35s ease;
}

.testimonial-card::before {
    content: "\\f10d";
    position: absolute;
    right: 27px;
    top: 25px;
    color: rgba(200, 155, 60, .13);
    font-family: "Font Awesome 6 Free";
    font-size: 48px;
    font-weight: 900;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(14, 37, 63, .13);
}

.testimonial-rating {
    position: relative;
    z-index: 1;
    color: #c89b3c;
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-card > p {
    position: relative;
    z-index: 1;
    color: #59616d;
    min-height: 132px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-customer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex: 0 0 50px;
    color: #fff;
    background: #0b2e59;
    border-radius: 50%;
    font-size: 19px;
}

.testimonial-customer h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px;
}

.testimonial-customer small {
    color: #7a828d;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.testimonial-controls button {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #0b2e59;
    background: #fff;
    border: 1px solid #e0e4e9;
    border-radius: 50%;
    transition: .3s ease;
}

.testimonial-controls button:hover {
    color: #fff;
    background: #0b2e59;
    border-color: #0b2e59;
}


/* FAQ */

.faq-section {
    background: #fff;
}

.faq-help-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    margin-top: 32px;
    color: #fff;
    background: #0b2e59;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(11, 46, 89, .20);
}

.faq-help-box > i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    color: #fff;
    background: #25d366;
    border-radius: 50%;
    font-size: 27px;
}

.faq-help-box h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
}

.faq-help-box p {
    color: rgba(255, 255, 255, .72);
    margin-bottom: 8px;
    font-size: 13px;
}

.faq-help-box a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #c89b3c;
    font-size: 13px;
    font-weight: 700;
}

.premium-accordion {
    display: grid;
    gap: 14px;
}

.premium-accordion .accordion-item {
    overflow: hidden;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(14, 37, 63, .05);
}

.premium-accordion .accordion-button {
    padding: 21px 22px;
    color: #202733;
    background: #fff;
    font-size: 15px;
    font-weight: 650;
    box-shadow: none;
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: #0b2e59;
    background: rgba(200, 155, 60, .10);
}

.premium-accordion .accordion-button::after {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background-image: none;
    content: "+";
    color: #0b2e59;
    background-color: rgba(11, 46, 89, .08);
    border-radius: 50%;
    font-size: 22px;
    line-height: 34px;
    text-align: center;
    transform: none;
}

.premium-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    color: #fff;
    background-color: #0b2e59;
    transform: none;
}

.premium-accordion .accordion-body {
    padding: 0 22px 23px;
    color: #626b76;
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    .testimonial-card > p {
        min-height: auto;
    }

    .faq-help-box {
        margin-bottom: 10px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 27px 23px;
    }

    .testimonial-card::before {
        right: 21px;
        top: 20px;
        font-size: 39px;
    }

    .premium-accordion .accordion-button {
        padding: 18px;
        font-size: 14px;
    }

    .premium-accordion .accordion-body {
        padding: 0 18px 20px;
    }

    .faq-help-box {
        padding: 21px;
    }
}
