/* Testimonials Section CSS */

.testimonial-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.testimonial-section-title {
    text-align: left;
}

.testimonial-section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.testimonial-section-title p {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.testimonial-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-info h6 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.testimonial-info small {
    color: var(--text-gray);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .testimonial-section-title h2 {
        font-size: 2rem;
    }
    
    .testimonial-card-modern {
        padding: 1.5rem;
    }
}

