.testimonials-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-empty {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-style: italic;
}

.carousel-loading {
    display: none;
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-style: italic;
}

.testimonial-slide {
    display: none;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    text-align: center;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
}

.rating-stars {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rating-value {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.testimonial-quote-box {
    display: grid;
    place-items: center;
    height: calc(1.6em * 5);
    margin-bottom: 25px;
    text-align: center;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-author {
    margin-bottom: 15px;
    line-height: 1.4;
}

.testimonial-author strong {
    color: #1f2937;
    font-size: 16px;
}

.author-location {
    color: #6b7280;
    font-size: 14px;
}

.author-service {
    color: #9ca3af;
    font-size: 13px;
    font-style: italic;
}

.review-link {
    display: inline-block;
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #3b82f6;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.review-link:hover {
    background-color: #3b82f6;
    color: white;
    transform: translateY(-1px);
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background-color: #9ca3af;
    transform: scale(1.2);
}

.nav-dot.active {
    background-color: #3b82f6;
    transform: scale(1.3);
}

.nav-dot:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .testimonials-carousel {
        margin: 0 10px;
        padding: 20px 15px;
    }
    
    .testimonial-quote {
        font-size: 16px;
    }
    
    .testimonial-content {
        padding: 15px;
    }
}