/* Custom Testimonial Carousel Styles */
.testimonial-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0;
}

/* Remove quote marks */
/* .testimonial-text::before, .testimonial-text::after { display: none; } */

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.author-name {
    font-weight: 600;
    font-size: 16px;
    color: #6633cc;
    margin: 0;
}

.testimonial-date {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.testimonial-venue {
    font-size: 14px;
    color: #888;
    margin-top: 2px;
    display: block;
    font-style: normal;
    font-weight: 400;
    quotes: none;
}

/* Dots Navigation */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding: 0;
    padding-bottom: 10px;
}

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

.dot:hover {
    background: #6633cc;
    transform: scale(1.1);
}

.dot.active {
    background: #6633cc;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 20px;
        max-width: 100%;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .author-name {
        font-size: 14px;
    }

    .testimonial-date {
        font-size: 12px;
    }

    .testimonial-dots {
        margin-top: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (min-width: 768px) {
    .testimonial-slide {
        width: 50% !important;
        max-width: 50%;
    }
    .testimonial-card {
        max-width: 95%;
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        width: 33.3333% !important;
        max-width: 33.3333%;
    }
    .testimonial-card {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .testimonial-slide {
        width: 100% !important;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }
    .testimonial-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 8px;
        margin: 0;
    }
    .testimonial-text {
        font-size: 13px;
    }
    .author-name {
        font-size: 13px;
    }
    .testimonial-date {
        font-size: 11px;
    }
    .testimonial-venue {
        font-size: 11px;
    }
    .testimonial-dots {
        margin-top: 15px;
        padding-bottom: 16px;
    }
}

@media (max-width: 320px) {
    .testimonial-carousel {
        overflow-x: hidden;
    }
    .testimonial-slide {
        width: 100vw !important;
        max-width: 100vw;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        margin: 0;
    }
    .testimonial-card {
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        padding: 6px;
        margin: 0;
    }
    .testimonial-text {
        font-size: 12px;
    }
    .author-name {
        font-size: 12px;
    }
    .testimonial-venue {
        font-size: 11px;
    }
    .testimonial-date {
        font-size: 10px;
    }
}

/* Loading State */
.testimonial-carousel.loading {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel.loading::after {
    content: "Loading testimonials...";
    color: #666;
    font-style: italic;
}

/* Smooth animations */
/* Remove hiding/fade from slides, let track transform handle visibility */
.testimonial-slide {
    /* opacity: 0; */
    /* transform: translateX(20px); */
    transition: none;
}

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

.section-testimonials {
    background: #fff;
    padding-bottom: 0;
}

.section-album {
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    padding: 32px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
} 