/* 
 * Premium Testimonial Slider Styles for Verslolygis
 * Uses Swiper.js, glassmorphism, and modern typography
 */

.v-testimonial-slider-section {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.v-testimonial-slider-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Quote Icon at the top */
.v-testimonial-quote-icon-top {
    font-size: 3rem;
    color: var(--v-color-primary, #b50e35);
    opacity: 0.15;
    margin-bottom: 30px;
    line-height: 1;
}

/* Swiper Container */
.v-testimonial-swiper {
    width: 100%;
    padding-bottom: 60px; /* Space for pagination */
}

/* Slide Content */
.v-testimonial-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.95);
}

.v-testimonial-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.v-testi-quote-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.7;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

/* Author Block */
.v-testi-author-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v-testi-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    border: 3px solid #ffffff;
}

.v-testi-img-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e2e8f0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #a0aec0;
    border: 3px solid #ffffff;
}

.v-testi-name {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 800;
    margin-bottom: 5px;
}

.v-testi-role {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Swiper Pagination & Navigation Customization */
.v-testimonial-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #cbd5e0;
    opacity: 1;
    transition: all 0.3s ease;
}

.v-testimonial-swiper .swiper-pagination-bullet-active {
    background-color: var(--v-color-primary, #b50e35);
    width: 25px;
    border-radius: 5px;
}

/* Optional Navigation Arrows (Hidden on mobile by default) */
.v-testimonial-swiper .swiper-button-next,
.v-testimonial-swiper .swiper-button-prev {
    color: var(--v-color-primary, #b50e35);
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.v-testimonial-swiper .swiper-button-next:after,
.v-testimonial-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.v-testimonial-slider-section:hover .swiper-button-next,
.v-testimonial-slider-section:hover .swiper-button-prev {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .v-testimonial-slider-section {
        padding: 60px 0;
    }
    
    .v-testi-quote-text {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .v-testi-img {
        width: 70px;
        height: 70px;
    }
    
    .v-testimonial-swiper .swiper-button-next,
    .v-testimonial-swiper .swiper-button-prev {
        display: none; /* Hide arrows on touch devices */
    }
}
