.testimonial-slider blockquote {
    padding-left: 0 !important;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    font-family: Inter;
}

.testimonial-slider .swiper-wrapper {
    will-change: transform;
    padding: 40px 0 50px;
}

.testimonial-slider .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-slider .testimonial-item {
    flex: 1 1 auto;
    box-sizing: border-box;
    padding: 0 20px;
    width: 100%;
}

.testimonial-dots.swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 10px 0 15px;
}

.testimonial-dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #064e40;
    opacity: 0.3;
    transition: all 0.25s ease;
}

.testimonial-dots .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ea660d;
}

.testimonial-inner {
    background: #f2f2f2;
    border: none;
    border-radius: 0;
    padding: 40px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.testimonial-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.note_etoile,
.google_ratings .note_etoile_global {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    line-height: 0;
}

.note_etoile {
    margin-bottom: 18px;
}

.note_etoile img,
.google_ratings .note_etoile_global img {
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px;
    object-fit: contain;
}

.google_ratings .note_etoile_global img {
    filter: brightness(0) invert(1);
    margin-bottom: 0 !important;
}

.testimonial-text {
    margin: 0 0 24px;
    color: #000000;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

.testimonial-text::before,
.testimonial-text::after {
    content: none !important;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author span {
    display: inline-block;
    font-family: Inter;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.google_ratings {
    margin-bottom: 0 !important;
    font-family: Inter;
}

.google_ratings .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    margin-top: 10px;
}

.google_ratings .rating .number {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    flex: 0 0 auto;
}

.google_ratings a,
a .google_ratings {
    text-decoration: none;
}

@media (max-width: 1000px) {
    .testimonial-inner {
        padding: 32px;
    }

    .testimonial-author span {
        font-size: 20px;
    }
}

@media (max-width: 690px) {
    .testimonial-slider .testimonial-item {
        padding: 0 10px;
    }

    .testimonial-inner {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 17px;
        line-height: 27px;
    }

    .testimonial-author span {
        font-size: 18px;
    }

    .google_ratings .rating .number {
        font-size: 28px;
    }

    .google_ratings .rating {
        justify-content: center;
    }
}