/* ===== TESTIMONIALS SECTION STYLES ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.testimonials-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.author-info p {
    opacity: 0.9;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-section h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-item {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 3rem;
    }
    
    .testimonial-text::before {
        top: -15px;
        left: -5px;
    }
    
    .testimonial-text::after {
        bottom: -30px;
        right: -5px;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .testimonials-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}