/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 100%);
    padding: 70px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4496a6;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(109, 189, 200, 0.12);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(109, 189, 200, 0.25);
    border-color: #6dbdc8;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: rgba(109, 189, 200, 0.15);
    transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    color: rgba(109, 189, 200, 0.3);
    transform: scale(1.1);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #4496a6;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(109, 189, 200, 0.1);
}

.customer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6dbdc8;
}

.customer-info h4 {
    font-size: 1.15rem;
    color: #224056;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.customer-info p {
    font-size: 0.9rem;
    color: #6dbdc8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .quote-icon {
        font-size: 2rem;
        top: 15px;
        right: 20px;
    }
}
