/* Testimonials Section */
.testimonials-slider .swiper-slide {
    flex-shrink: 0;
}


.testimonials-section {
    padding: 2rem 0;
    background: #fff;
}

.testimonials-section .container {
    max-width: auto;
    padding: 0 20px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #222;
    letter-spacing: 1px;
}

.testimonials-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 0.5rem;
}

.testimonials-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.testimonials-slider .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 380px;
    text-align: center;
}

.testimonial-avatar {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
}

.testimonial-avatar .avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-avatar .avatar-initial {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C27BA0 0%, #a66889 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
}

.testimonial-date {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 1rem;
}

.testimonial-cta {
    background: #C27BA0;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonial-cta:hover {
    background: #a66889;
    transform: translateY(-2px);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-nav button {
    background: #f5f5f5;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-nav button:hover {
    background: #C27BA0;
    color: white;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        max-width: 100%;
    }
}