/* --- CUSTOM FINE-TUNING UIX STYLE --- */

/* Base Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333333;
}

/* Color Utilities */
.text-taktis-blue { color: #0A3663 !important; }
.bg-taktis-blue { background-color: #0A3663 !important; }
.bg-taktis-yellow { background-color: #FFD014 !important; }

/* Custom Buttons */
.btn-taktis-blue {
    background-color: #0A3663;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.btn-taktis-yellow {
    background-color: #FFD014;
    color: #0A3663;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
}

.btn-taktis-blue:hover { color: #FFD014; }
.btn-taktis-yellow:hover { background-color: #e6bc12; }

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Efek Bayangan Header Navbar */
.navbar-shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* Kotak Langkah Alur Pendaftaran (Soft Blur Shadow) */
.card-step {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Lingkaran Kuning Penanda Angka Langkah */
.step-badge {
    position: absolute;
    top: -0.75rem; /* -12px */
    width: 1.65rem;
    height: 1.65rem;
    background-color: #FFD014;
    color: #0A3663;
    font-weight: 700;
    font-size: 11px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Label Penyorot Tanggal Informasi */
.highlight-date {
    background-color: #FFD014;
    color: #000000;
    font-weight: 700;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 3px;
    margin-right: 2px;
    display: inline-block;
}

/* Kerangka Lingkaran Utama Helpdesk */
.helpdesk-container {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    border: 3.5px solid #0A3663;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: white;
    transition: all 0.3s ease;
}

/* Badge Chat Mini di Pojok Kanan Bawah Helpdesk */
.helpdesk-bubble {
    position: absolute;
    bottom: -0.15rem;
    right: -0.15rem;
    background-color: #FFD014;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 10px;
}

/* Kustomisasi Titik Indikator Carousel */
.carousel-indicators [data-bs-target] {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #0A3663 !important;
    opacity: 0.3;
    border: none;
    margin: 0 5px;
    padding: 0;
    transition: opacity 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1 !important;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(1) grayscale(100) brightness(0.5); /* Supaya panah terlihat di gambar terang */
}

/* Pengaturan Tinggi Hero agar Optimal */
.hero-container, .hero-img {
    height: 500px;
    object-fit: cover;
    object-position: center;
}

/* Di layar HP, tingginya dikurangi sedikit agar tidak menutupi seluruh layar */
@media (max-width: 768px) {
    .hero-container, .hero-img { height: 300px; }
}

/* Agar saat klik menu, judul section tidak tertutup Navbar Sticky */
section[id], header[id] {
    scroll-margin-top: 100px;
}

/* Floating WA Button Styles */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1050; /* Di atas navbar jika diperlukan */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.wa-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 2px 8px 20px rgba(0, 0, 0, 0.3);
}

.wa-icon {
    width: 35px;
    height: 35px;
}