/* Custom Styling */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

/* Glassmorphism Effect */
.product-card {
    background: #111111;
    border: 1px solid rgba(234, 234, 234, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #FE2C55;
    box-shadow: 0 20px 40px rgba(254, 44, 85, 0.1);
}

/* Update CSS untuk FAQ Accordion */
.faq-item.active {
    border-color: #FE2C55;
    background: rgba(254, 44, 85, 0.05);
    /* Memberikan sedikit tint pink saat aktif */
}

.faq-item.active .faq-content {
    max-height: 200px;
    /* Nilai ini harus cukup besar untuk menampung teks */
    opacity: 1;
    margin-top: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #FE2C55;
}

/* Transisi halus */
.faq-content {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #010101;
}

::-webkit-scrollbar-thumb {
    background: #FE2C55;
    border-radius: 10px;
}

/* Animasi Marquee Testimoni */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

/* Pause animasi saat di-hover agar user bisa membaca */
.animate-marquee:hover {
    animation-play-state: paused;
}

/* Gradient Fade pada sisi kanan-kiri agar terlihat elegan */
#testimoni .relative::before,
#testimoni .relative::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

#testimoni .relative::before {
    left: 0;
    background: linear-gradient(to right, #010101, transparent);
}

#testimoni .relative::after {
    right: 0;
    background: linear-gradient(to left, #010101, transparent);
}