/* GLOBAL STYLES */
body {
    background-color: #FFFFFF;
    color: #1F2937;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* HERO PATTERN */
.hero-pattern {
    background-image: radial-gradient(#0F8A5F 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.05;
}

/* EFEK GLOW EMAS */
.gold-glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* FLOATING WHATSAPP */
.float-wa {
    position: fixed; width: 60px; height: 60px; bottom: 25px; right: 25px;
    background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center;
    font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 9990;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.float-wa:hover {
    background-color: #128C7E; transform: scale(1.1); box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}
.wa-icon { width: 35px; height: 35px; fill: white; }

/* CHATBOT STYLES (Agar tidak numpuk di HTML) */
#ai-chatbox-interface {
    z-index: 9999 !important;
}

/* Sembunyikan Scrollbar untuk Slider Testimoni */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}