/* Testimonials Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: calc(33.333% - 1.33rem);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(42, 183, 55, 0.2);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2ab737, #3dd04f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-info h5 {
    margin: 0;
    color: #1e8b2a;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.carousel-arrows-testimonials {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2ab737;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    box-shadow: 0 5px 15px rgba(42, 183, 55, 0.3);
}

.carousel-arrows-testimonials:hover {
    background: #1e8b2a;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(42, 183, 55, 0.4);
}

.carousel-prev-testimonials {
    left: 0;
}

.carousel-next-testimonials {
    right: 0;
}

.carousel-dots-testimonials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-dot-testimonials {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot-testimonials.active {
    background: #2ab737;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(42, 183, 55, 0.5);
}

@media (max-width: 992px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 45px;
    }
    
    .carousel-arrows-testimonials {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
