/**
 * TESTIMONIALS SLIDER STYLES
 * Premium Customer Reviews Slider
 */

/* ==========================================
   Testimonials Slider Section
   ========================================== */
.testimonials-slider-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-slider-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 122, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-slider-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-slider-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.testimonials-slider-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Slider Wrapper
   ========================================== */
.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider-container {
    display: flex;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding: 0 20px;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   Testimonial Card
   ========================================== */
.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
                0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12),
                0 10px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff8f3;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar svg {
    width: 36px;
    height: 36px;
    color: #ffffff;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.testimonial-role {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.testimonial-role strong {
    color: #475569;
    font-weight: 700;
}

/* ==========================================
   Rating
   ========================================== */
.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
}

.rating-value {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-left: 4px;
}

/* ==========================================
   Content
   ========================================== */
.testimonial-content {
    position: relative;
    padding-left: 40px;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 0;
    width: 32px;
    height: 32px;
    color: #ff7a00;
    opacity: 0.2;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ==========================================
   Slider Controls
   ========================================== */
.testimonials-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-nav-btn:hover {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-nav-btn svg {
    width: 24px;
    height: 24px;
}

.testimonials-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dot:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: #ff7a00;
    width: 32px;
    border-radius: 6px;
    border-color: #ff7a00;
}

/* ==========================================
   No Testimonials Message
   ========================================== */
.no-testimonials-message {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px dashed #cbd5e1;
}

.no-testimonials-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.no-testimonials-message p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .testimonials-slider-header h2 {
        font-size: 36px;
    }
    
    .testimonial-card {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .testimonials-slider-section-modern {
        padding: 60px 0;
    }
    
    .testimonials-slider-header h2 {
        font-size: 28px;
    }
    
    .testimonials-slider-header p {
        font-size: 16px;
    }
    
    .testimonial-card {
        padding: 30px 24px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .testimonial-content {
        padding-left: 0;
        padding-top: 30px;
    }
    
    .quote-icon {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .testimonial-content p {
        font-size: 16px;
        text-align: center;
    }
    
    .testimonial-nav-btn {
        width: 44px;
        height: 44px;
    }
    
    .testimonial-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

