/* =========================================
   TESTIMONIALS SECTION
========================================= */

.testimonials-section {
    padding: 90px 0 100px;
    background: #f7faf9;
}

.testimonials-container {
    max-width: 1132px;
}

.testimonials-heading {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.testimonials-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 17px;
    color: #b17a0d;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonials-label span {
    width: 22px;
    height: 1px;
    flex: 0 0 auto;
    background: #c89025;
}

.testimonials-heading h2 {
    margin: 0 0 15px;
    color: #003e50;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 39px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.6px;
}

.testimonials-heading p {
    margin: 0 auto;
    color: #355a60;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 28px 26px;
    border: 1px solid #e2e9e8;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(20, 58, 65, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(20, 58, 65, 0.1);
}

.testimonial-rating {
    margin-bottom: 14px;
    color: #e0a800;
    font-size: 13px;
}

.testimonial-rating .star-empty {
    color: #dbe2e1;
}

.testimonial-quote {
    flex: 1;
    margin: 0 0 22px;
    color: #355a60;
    font-family: "DM Sans", sans-serif;
    font-size: 14.5px;
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    background: #e9f4f3;
    color: #0a99a5;
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: #003e50;
    font-family: "DM Sans", sans-serif;
    font-size: 13.5px;
    font-weight: 700;
}

.testimonial-author small {
    display: block;
    color: #648086;
    font-family: "DM Sans", sans-serif;
    font-size: 11.5px;
    line-height: 1.5;
}

@media (max-width: 575.98px) {
    .testimonials-section {
        padding: 60px 0 70px;
    }

    .testimonials-heading h2 {
        font-size: 32px;
    }
}
