.testimonials-section {
    margin: 50px 0;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 900;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
}

.testimonials-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.testimonials-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 320px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.testimonial-stars {
    color: #ff9800;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #2c3e50;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-author strong {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 13px;
    color: #999;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: linear-gradient(135deg, #2fb5d2 0%, #1a9ab8 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(47, 181, 210, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: linear-gradient(135deg, #1a9ab8 0%, #157a92 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(47, 181, 210, 0.4);
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 24px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonial-card {
        min-width: 280px;
    }

    .testimonial-text {
        font-size: 14px;
        min-height: auto;
    }

    .testimonials-section {
        padding: 30px 15px;
    }
}

@media (min-width: 1200px) {
    .testimonials-slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        overflow: visible;
    }

    .testimonial-card {
        min-width: auto;
    }

    .testimonials-nav {
        display: none;
    }
}
