.social-proof-widget {
    max-width: 975px;
    margin: 0 auto;
    padding: 0 15px 0 60px;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.social-proof-header {
    display: none;
}

.social-proof-rating {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2px 16px;
    gap: 32px;
    width: 360px;
    height: 46px;
    background: #FFFFFF;
    box-shadow: -8px -4px 32px rgba(0, 0, 0, 0.08), 40px 28px 80px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    margin-bottom: 20px;
}

.google-logo svg {
    width: 45px;
    height: 35px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.rating-number {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.stars {
    font-size: 28px;
    letter-spacing: 0;
    line-height: 1;
}

.star {
    display: inline-block;
    margin: 0 -2px;
}

.star.full {
    color: #fbbf24;
}

.star.half {
    background: linear-gradient(90deg, #fbbf24 50%, #d1d5db 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.star.empty {
    color: #d1d5db;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    background: transparent;
    border-radius: 8px;
    padding: 20px 0;
    border-radius: 8px;
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center;
    justify-content: flex-start; */
}

.carousel-track {
    display: flex;
    flex-direction: row;
    transition: transform 0.4s ease-in-out;
    background: transparent;
    gap: 16px;
    transform: translateX(5%);
}

.testimonial-card {
    flex: 0 0 auto;
    text-align: left;
    box-sizing: border-box;
    width: 260px; /*492px;*/
    background: #23366A1A;
    gap: 8px;
    height: auto; /*135px;*/
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-author {
    font-weight: 700;
    color: #1e3a8a;
    font-size: 16px;
    /* display: flex; */
    align-items: baseline;
    justify-content: center;
}

.testimonial-text {
    font-size: 14px;
    color: #1e293b;
    line-height: 1.5;
    font-style: normal;
    font-weight: 500;
    display: inline;
}

.testimonial-stars {
    font-size: 18px;
    color: #fbbf24;
    letter-spacing: 2px;
    display: flex;
    align-self: baseline;
}
.star-icon {
    width: 30px;
    height: 30px;
}
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 15px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #23366A99;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 5px 0;
}

.dot.active {
    background: #1e3a8a !important;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0;
}

.dot:hover {
    background: #94a3b8;
}

@media (max-width: 768px) {
    .social-proof-widget {
        padding: 0;
    }
    .social-proof-rating {
        flex-direction: row;
    }

    .rating-number {
        font-size: 32px;
    }
    .testimonials-carousel {
        padding: 20px 0;
    }
    .testimonial-card {
        width: 260px;
        height: auto;
    }
}