/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-light);
}

.testimonials-slider-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.testimonial-card {
    background: #fff;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto 40px;
    /* Bottom margin for pagination */
}

.testimonial-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.author-position {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* Swiper Customization */
.testimonials-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonials-swiper .swiper-button-next:after,
.testimonials-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 767px) {
    .testimonials-slider-wrapper {
        padding: 0;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-content {
        font-size: 16px;
    }

    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        display: none;
    }

    .testimonials-section {
        padding: var(--spacing-md) 0;
    }
}