/* تنسيق قسم آراء العملاء */
#testimonials {
    background: #f8f9fe;
    padding: 5rem 0;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.testimonial {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: right;
    position: relative;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.client-image {
    width: 80px;
    height: 80px;
    margin: 0 0 1.5rem 0;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin: 1rem 0;
}

.rating i {
    color: #ffc107;
    font-size: 1rem;
}

.client-comment {
    margin: 1rem 0;
    line-height: 1.6;
    color: var(--gray-color);
    font-size: 1rem;
    position: relative;
}

.quote-icon {
    color: #e1e1e1;
    font-size: 1.5rem;
    position: absolute;
    right: -10px;
    top: -10px;
}

.client-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.client-title {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* تنسيق عنوان القسم */
#testimonials .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}