/* Testimonials Glassmorphism */
.testimonials-glass {
    padding: 6rem 2rem;
}

.testimonials-header-glass {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-badge-glass {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.testimonials-title-glass {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.testimonials-subtitle-glass {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

/* Grid */
.testimonials-grid-glass {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
}

.testimonial-card-glass::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card-glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.3);
}

.testimonial-header-glass {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar-glass {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.testimonial-info-glass h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.testimonial-info-glass p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

.testimonial-rating-glass {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating-glass i {
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-text-glass {
    line-height: 1.7;
    opacity: 0.9;
    color: white;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .testimonials-glass {
        padding: 3rem 1rem;
    }
    
    .testimonials-grid-glass {
        grid-template-columns: 1fr;
    }
}
