/* Testimonials Swiper Styles */
.testimonials-swiper {
    padding-bottom: 2rem;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.testimonials__nav {
    display: flex;
    align-items: center;
}

.testimonials-button-prev,
.testimonials-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    transition: all 0.3s ease;
}

.testimonials-button-prev:disabled,
.testimonials-button-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonials-pagination {
    text-align: center;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--bs-primary);
    opacity: 0.3;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .testimonials-area h3 {
        font-size: 1.5rem;
    }
    
    .testimonials__nav {
        margin-top: 1rem;
    }
}

@media (max-width: 575px) {
    .testimonials-area h3 {
        font-size: 1.25rem;
    }
    
    .testimonials-area p {
        font-size: 0.85rem;
    }
    
    .testimonial-card .card-body {
        padding: 1rem !important;
    }
    
    .testimonials-button-prev,
    .testimonials-button-next {
        width: 35px;
        height: 35px;
    }
}