/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--clr-semi-light2);
    /* خلفية فاتحة جداً لإبراز البطاقات البيضاء */
    padding: var(--space-xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    /* ظل ناعم جداً كما في الصورة */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.rating-stars {
    color: #ffc107;
    /* اللون الذهبي للنجوم */
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #475569;
    /* رمادي متوسط للنص */
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: normal;
    min-height: 80px;
    /* لتوحيد حجم البطاقات */
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.author-location {
    font-size: 0.95rem;
    color: #94a3b8;
    /* لون الحي كما في التصميم */
}

/* Response Breakpoints */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}