/* Testimonial Carousel Styles */

.testimonial-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-carousel-track {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
}

.testimonial-slide {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-quote {
    width: 48px;
    height: 48px;
    color: #5e2ca5;
    margin: 0 auto 1.5rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #5e2ca5;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: #333;
    margin: 0 0 0.25rem 0;
}

.testimonial-company {
    font-size: 0.875rem;
    color: #f9a825;
    font-weight: 600;
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #5e2ca5;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    transform: scale(1.3);
    background: rgba(94, 44, 165, 0.3);
}

.testimonial-dot.active {
    background: #5e2ca5;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        min-height: 120px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
}
