.testimonials-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4d0412 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--secondary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author {
    flex: 1;
}

.author-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-title {
    color: var(--secondary-color);
    font-size: 0.9rem;
    opacity: 0.9;
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.testimonials-swiper {
    padding: 30px 10px;
}

.testimonials-swiper .swiper-pagination {
    bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
    background: var(--secondary-color);
    opacity: 0.5;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
}

.testimonials-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 1;
}

.testimonials-shape-1 {
    background: var(--secondary-color);
    top: -100px;
    right: -100px;
}

.testimonials-shape-2 {
    background: var(--primary-color);
    bottom: -100px;
    left: -100px;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-glass-card {
        padding: 20px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}
h2.section-title {
    font-weight: 600;
}