/* === TESTIMONIALS SECTION === */
.testimonials-section {
    background-color: white;
    padding: 8rem 0 10rem;
    /* Removed horizontal padding to allow full-width mask */
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #666;
}

.testimonials-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1.1;
    color: #121212;
}

/* Scroll Container */
.testimonial-track {
    display: flex;
    overflow-x: auto;
    /* Removed scroll-snap for smooth auto-scroll */
    gap: 3rem;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    /* Standard padding for the loop */
    padding-left: 2rem;
    padding-right: 2rem;

    /* Visual Fade/Blur Mask */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

/* Card Style */
.testimonial-card {
    flex: 0 0 450px;
    /* Fixed width */
    background-color: #f9f9f9;
    padding: 3rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    background-color: #f5f5f5;
}

/* User Info */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ddd;
}

.user-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #121212;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-details p {
    font-size: 0.8rem;
    color: #666;
}

/* Rating */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
    color: #dcb36c;
    /* Gold/Beige Star color */
}

/* Text */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 300px;
        /* Smaller cards on mobile */
        min-width: 300px;
        padding: 2rem;
    }

    .testimonial-card:first-child {
        margin-left: -150px;
        /* Centering offset for mobile */
    }

    .testimonial-card:last-child {
        margin-right: -150px;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }
}