/* assets/css/testimonial-carousel.css */

.testimonial-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.testimonial-subtitle {
    color: #6B7A90;
    font-size: 0.95rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #22324A;
}

.testimonial-carousel-container {
    display: flex;
    align-items: center;
    position: relative;
}

.testimonial-carousel-btn {
    background: none;
    border: none;
    color: #163A5F;
    font-size: 2rem;
    cursor: pointer;
    padding: 0 16px;
    transition: color 0.2s;
    z-index: 2;
}

.testimonial-carousel-btn:disabled {
    color: #ccc;
    cursor: default;
}

.testimonial-carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    min-height: 180px;
    scroll-behavior: smooth;
    position: relative;
}

.testimonial-carousel.active {
    cursor: grabbing;
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    background: #F5F7FA;
    border-radius: 8px;
    margin: 0 12px;
    padding: 24px 20px 16px 20px;
    box-shadow: 0 2px 8px rgba(34,50,74,0.04);
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card.active {
    display: flex;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    margin-top: 18px;
    justify-content: space-between;
}

.testimonial-logo {
    font-weight: bold;
    color: #163A5F;
    font-size: 1.1rem;
}

.testimonial-label {
    background: #F5F7FA;
    color: #6B7A90;
    font-size: 0.85rem;
    border-radius: 8px;
    padding: 4px 12px;
    border: 1px solid #E5E8ED;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.testimonial-dots .dot {
    width: 14px;
    height: 6px;
    border-radius: 3px;
    background: #E5E8ED;
    margin: 0 4px;
    transition: background 0.2s;
    display: inline-block;
    cursor: pointer;
}

.testimonial-dots .dot.active {
    background: #163A5F;
    width: 24px;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 90vw;
        max-width: 90vw;
    }

    .testimonial-carousel-btn {
        font-size: 1.5rem;
        padding: 0 8px;
    }
}