/* TESTIMONIALS SECTION - SCOPED CSS */
.testimonials-section {
    background: #ffffff;
    padding: 60px 0;
    margin: 0;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.testimonials-section .testimonials-header {
    margin-bottom: 50px;
    font-family: 'Roboto', sans-serif;
}

.testimonials-section .testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-family: 'Roboto', sans-serif;
}

.testimonials-section .testimonials-title i {
    color: #007bff;
    margin-right: 15px;
}

.testimonials-section .testimonials-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.testimonials-section .testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    background: #ffffff;
}

.testimonials-section .testimonials-slider {
    display: flex !important;
    transition: transform 0.7s ease-in-out;
    will-change: transform;
}

.testimonials-section .testimonial-card {
    min-width: 100%;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    border: 1px solid #f1f3f4;
    font-family: 'Roboto', sans-serif;
}

.testimonials-section .testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-section .stars-rating {
    margin-bottom: 25px;
}

.testimonials-section .stars-rating i {
    font-size: 1.4rem;
    margin: 0 2px;
    color: #ffc107;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.testimonials-section .stars-rating i.far {
    color: #dee2e6;
}

.testimonials-section .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
    margin-bottom: 35px;
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.testimonials-section .client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonials-section .client-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
    box-shadow: 0 3px 10px rgba(0,123,255,0.2);
}

.testimonials-section .client-details {
    text-align: left;
    font-family: 'Roboto', sans-serif;
}

.testimonials-section .client-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    margin-bottom: 3px;
    font-family: 'Roboto', sans-serif;
}

.testimonials-section .client-location {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
}

.testimonials-section .testimonials-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.testimonials-section .testimonial-btn {
    background: #007bff !important;
    color: white !important;
    border: none !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(0,123,255,0.3);
    pointer-events: auto;
    font-family: 'Roboto', sans-serif;
}

.testimonials-section .testimonial-btn:hover {
    background: #0056b3 !important;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}

.testimonials-section .testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    padding-bottom: 15px;
}

.testimonials-section .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-section .indicator.active {
    background: #007bff;
    transform: scale(1.2);
}

.testimonials-section .indicator:hover {
    background: #6c757d;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-section .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonials-section .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-section .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonials-section .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonials-section .client-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .testimonials-section .client-details {
        text-align: center;
    }
    
    .testimonials-section .client-photo {
        width: 55px;
        height: 55px;
    }
    
    .testimonials-section .testimonials-controls {
        padding: 0 10px;
    }
    
    .testimonials-section .testimonial-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .testimonials-section .client-photo-placeholder {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-section .testimonials-title {
        font-size: 1.6rem;
    }
    
    .testimonials-section .testimonial-text {
        font-size: 0.95rem;
    }
    
    
    .testimonials-section .client-name {
        font-size: 1.1rem;
    }
}

.testimonials-section .client-photo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f8f9fa;
    border: 3px solid #007bff;
    box-shadow: 0 3px 10px rgba(0,123,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 24px;
}