/* ============================================= */
/* TESTIMONIALS SECTION                          */
/* ============================================= */
#testimonials {
    background: var(--light-gradient);
    padding: 100px 0;
    position: relative;
}

/* FIX: IDINAGDAG ANG FONT STYLE PARA SA MAIN TITLE */
#testimonials .section-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3rem;
    font-weight: 700;
}

#testimonials .text-gold {
    background: var(--gold-dark-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 100%;
    animation: shimmer 8s infinite linear;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: scroll-left 60s linear infinite;
}

.testimonial-carousel-wrapper:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 380px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card .quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(0,0,0,0.05);
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-card .client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #e9e9e9;
}

.testimonial-card .client-name {
    font-weight: 600;
    font-size: 1.1rem; /* Konting laki para mas maganda tignan */
    margin-bottom: 0;
}

.testimonial-card .testimonial-text {
    color: var(--secondary-dark-text);
    font-size: 0.95rem;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    #testimonials .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        width: 320px;
    }
}