/* Testimonial Section Styles */

.testimonial-scroll-track {
    display: flex;
    gap: 24px;
    overflow-x: hidden;
    padding: 20px 0;
}

.testimonial-scroll-item {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    display: block;
}

.testimonial-scroll-item .testimonial-card-luxe {
    height: 100%;
    min-height: 400px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-scroll-item .testimonial-card-luxe:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 81, 143, 0.15);
}

.testimonial-scroll-item .testimonial-quote {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Navigation Buttons at Bottom */
.testimonial-nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #34518F;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 81, 143, 0.3);
}

.testimonial-nav-btn:hover {
    background: #2a4070;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #34518F;
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .testimonial-scroll-item {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
    
    .testimonial-scroll-track {
        overflow-x: auto;
        scroll-behavior: smooth;
    }
}

@media (max-width: 576px) {
    .testimonial-scroll-track {
        overflow-x: auto;
        scroll-behavior: smooth;
    }
    
    .testimonial-scroll-item {
        flex: 0 0 calc(100% - 24px);
        max-width: calc(100% - 24px);
    }
    
    .testimonial-scroll-item .testimonial-card-luxe {
        min-height: 300px;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
