/* Testimonials Section */

.testimonials {
    padding: 0 1.5rem 3rem 1.5rem;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.testimonials .blob-6 {
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, #8a4fff 0%, #00c896 100%);
    top: 50%;
    left: -150px;
    opacity: 0.08;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    margin: 3rem auto 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 40px rgba(30, 144, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 144, 255, 0.1);
}

@media (max-width: 576px) {
    .testimonial-card {
        border: 1px solid rgba(30, 144, 255, 0.5);
    }
}

.testimonial-card:hover,
.testimonial-card:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.star {
    color: gold;
    font-size: 1.3rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--brand-blue-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
}