/* SECTION */
.home-direktori-section {
    position: relative;
	margin-top: 60px;
	overflow: hidden;
}

.home-direktori-container {
	padding: 0 100px;
	margin-bottom: 60px;
}

/* ✅ FIX MAP */
.home-direktori-map-bg {
    position: absolute;
    top: 0;
    left: 0;          /* ⬅️ penting: full dari kiri */
    width: 100%;      /* ⬅️ full lebar section */
    height: 130%;     /* ⬅️ full tinggi section */
    
    background: var(--bg) no-repeat right center; /* ⬅️ tetap di kanan */
    background-size: 50%; /* ⬅️ ukuran map */
    margin-top: 0px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* ❌ NONAKTIFKAN YANG LAMA */
.home-direktori-section::after {
    display: none;
}

/* ✅ AGAR KONTEN DI ATAS MAP */
.home-direktori-section > *:not(.home-program-map-bg) {
    position: relative;
    z-index: 1;
}

/* SUB TITLE */
.home-direktori-section-sub {
    font-size: 11px;
    letter-spacing: 2px;
    color: #b07a63;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.home-direktori-section-sub::before {
    content: "";
    width: 25px;
    height: 1px;
    background: #b07a63;
}

/* HEADER */
.home-direktori-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.home-direktori-title {
	font-family: 'Archivo Black', sans-serif;
    font-size: 26px;
    font-weight: 600;
}

.home-direktori-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
    max-width: 500px;
}

/* BUTTON */
.home-direktori-btn {
    border: 1px solid #b07a63;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: #b07a63;
    text-decoration: none;
}

/* LIST */
.home-direktori-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ITEM */
.home-direktori-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f6f3f1;
    padding: 15px 18px;
    border-radius: 10px;
    border: 1px solid #e6ded9;
    transition: 0.2s;
}

.home-direktori-item:hover {
    background: #fff;
}

/* LEFT */
.home-direktori-item-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ICON */
.home-direktori-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
}

.home-direktori-icon.orange { background: #f2dcd2; color: #a87660; }
.home-direktori-icon.green { background: #d9efe6; color: #3c8f73; }
.home-direktori-icon.blue { background: #dcdcf5; color: #6b6bd6; }

/* TEXT */
.home-direktori-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.home-direktori-meta {
    font-size: 12px;
    color: #777;
}

/* TAG */
.home-direktori-tag {
    display: inline-block;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 6px;
    margin-right: 6px;
}

.home-direktori-tag.orange { background: #f2dcd2; color: #a87660; }
.home-direktori-tag.green { background: #d9efe6; color: #3c8f73; }
.home-direktori-tag.blue { background: #dcdcf5; color: #6b6bd6; }

/* ARROW */
.home-direktori-arrow {
    font-size: 18px;
    color: #999;
}

/* RESPONSIVE */
@media(max-width: 768px) {
	.home-direktori-container {
		padding: 0 20px;
	}
	
    .home-direktori-map-bg {
        display: none;
    }

    .home-direktori-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}