/* Import Google Fonts yang modern */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* --- Container Utama --- */
.testimonials-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Judul Section --- */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* --- Slider & Track --- */
.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden; 
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 25px; 
    width: max-content; 
    animation: scroll 30s linear infinite; 
}
.testimonial-track:hover {
    animation-play-state: paused;
}
.testi-card {
    width: 350px; 
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, background 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
}

.stars {
    color: #fbbf24; 
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1; 
}

/* --- User Info & Profile Icon --- */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #6366f1; 
}

.user-details h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.user-details span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* --- Bagian Media Coverage --- */
.media-section {
    margin-top: 80px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
}

.media-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #64748b;
    margin-bottom: 25px;
}

.media-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.media-item {
    font-weight: 800;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    cursor: default;
    filter: grayscale(100%) opacity(0.5); 
}

.media-item:hover {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* --- Animasi --- */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); 
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .testi-card {
        width: 280px; 
    }
    
    .media-logos {
        gap: 20px;
    }
    
    .media-item {
        font-size: 1.2rem;
    }
}