/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2196f3;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-family: MontserratBold, sans-serif;
    font-size: 16px;
    color: #212529;
    margin: 0 0 5px 0;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.testimonial-rating .star {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-date {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

.testimonial-text {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.testimonial-service {
    background: #e3f2fd;
    color: #1e88e5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    align-self: flex-start;
}

/* Статистика отзывов */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: MontserratBold, sans-serif;
    font-size: 48px;
    color: #1e88e5;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
}

/* CTA кнопка */
.testimonials-cta {
    text-align: center;
}

.testimonials-cta .btn {
    background-color: #1e88e5;
    color: white;
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-family: MontserratBold, sans-serif;
    transition: all 0.3s ease;
}

.testimonials-cta .btn:hover {
    background-color: #2196f3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonials-stats {
        gap: 40px;
        padding: 25px;
    }
    
    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-name {
        font-size: 15px;
    }
    
    .testimonial-rating .star {
        font-size: 14px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .testimonials-cta .btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .testimonial-info {
        width: 100%;
    }
    
    .testimonial-rating {
        justify-content: center;
    }
    
    .testimonial-service {
        align-self: center;
    }
    
    .stat-number {
        font-size: 32px;
    }
}