/* ========== Contact Section ========== */
.contact-section {
    background-color: #1531bc;
    padding: 50px 20px;
    color: #fff;
    text-align: center;
}

.contact-section h1 {
    margin-bottom: 20px;
}

.divider {
    width: 50px;
    height: 5px;
    background-color: #fff;
    margin: 0 auto 40px;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    font-size: 12px;
}

.contact-col {
    flex: 1 1 250px;
    max-width: 350px;
}

.small-divider {
    width: 100px;
    height: 4px;
    background-color: #c91f1f;
    margin: 15px auto;
}

.contact-col a {
    color: #fff;
    text-decoration: none;
}

.contact-col a:hover {
    text-decoration: underline;
}

.map-wrapper {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.site-footer {
    background-color: #0f2ac7;   /* same blue as your theme */
    color: #fff;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
}

.site-footer .footer-inner p {
    margin: 5px 0;
    line-height: 1.5;
}

/* ===== Efek Overlay Hitam Transparan untuk Hero Banner ===== */
.carousel-item {
    position: relative; /* Pastikan posisinya relatif untuk menahan overlay */
}

.carousel-item img {
    width: 100%;
    height: 700px; /* Anda bisa ubah angka ini sesuai selera (misal: 600px, 800px, atau 80vh) */
    object-fit: cover; /* Ini kuncinya! Gambar akan terpotong rapi seperti background */
    object-position: center; /* Fokus potongan gambar selalu di tengah */
}

.carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Angka 0.6 di bawah adalah tingkat kegelapan (60%). 
       Silakan ubah dari 0.1 (sangat tipis) sampai 0.9 (sangat gelap) sesuai selera Anda */
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1; /* Memastikan warna hitam berada di atas gambar */
}

.carousel-caption {
    z-index: 2 !important; /* Memastikan teks dan tombol tetap berada di ATAS efek gelap */
}