/* =========================================
   TESTIMONIALS SECTION
   ========================================= */

.testimonials-section {
    padding: 100px 2rem;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.testimonials-section .section-title p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.03), 0 4px 6px -2px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.07), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #4f46e5;
}

.testimonial-author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.testimonial-author-info span {
    font-size: 0.9rem;
    color: #64748b;
}

.testimonial-body {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 1rem;
}

.testimonial-rating .fa-star {
    margin-right: 2px;
}
