*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: #f8fafc;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; 
}

.dlh-container {
    /*max-width: 1250px;*/
    max-width: 90%;
    margin: 0 auto;
    padding: 0 24px;
}

a { text-decoration: none; }
ul { list-style: none; }
button { border: none; outline: none; font-family: inherit; }

/* =========================================
   menu navigasi
   ========================================= */
.beranda-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.beranda-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.nav-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.nav-brand-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}

.beranda-nav.scrolled .nav-brand-icon {
    /*background: linear-gradient(135deg, #3b82f6, #1d4ed8);*/
}

.nav-brand-icon img { 
    padding: 3px;
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.nav-brand-text {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.beranda-nav.scrolled .nav-brand-text { 
    color: #1e3a8a;
}
.nav-brand-text span { 
    color: #60a5fa; 
}
.beranda-nav.scrolled .nav-brand-text span {
    color: #3b82f6; 
}

.nav-menu-wrapper { 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 1; 
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.beranda-nav.scrolled .nav-menu {
    /*background: #f1f5f9;*/
    border-color: transparent;
    backdrop-filter: none;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.beranda-nav.scrolled .nav-menu a { color: #64748b; }

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.beranda-nav.scrolled .nav-menu a:hover {
    background: #e2e8f0;
    color: #1e3a8a;
}

/* Right Button */
.btn-nav-signin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-nav-signin:hover {
    background: #ffffff;
    color: #1e3a8a;
    border-color: #ffffff;
}

.beranda-nav.scrolled .btn-nav-signin {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.beranda-nav.scrolled .btn-nav-signin:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.beranda-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Background URL asli dari user */
    background-image: url('../images/bg-home.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: clamp(32px, 5.5vw, 64px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stats */
.beranda-stats {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    max-width: 1225px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item:last-child { border-right: none; }

.stat-item h2 { font-size: 36px; font-weight: 800; color: #ffffff; margin-bottom: 4px; }
.stat-item p { font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.05em; }


/*header halaman */


.pem-header-hal{
    width:100%;
    background:linear-gradient(160deg,#3b82f6,#1e3a8a);
    color:#fff;
    padding:145px 0 60px;
    position:relative;
    overflow:hidden;
}

.header-container{
    max-width:1350px;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.header-text{
    flex:1;
    z-index:2;
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:.9rem;
    color:#fff;
    margin-bottom:15px;
    font-weight:500;
    letter-spacing:.5px;
}

.breadcrumb ion-icon{
    font-size:14px;
}

.header-text h1{
    font-size:3.5rem;
    line-height:1.1;
    font-weight:900;
    margin-bottom:5px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#fff;
}

.subtitle{
    font-size:1.2rem;
    font-weight:700;
    color:#FF9800;
    margin-bottom:15px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.dept-name{
    font-size:1rem;
    font-weight:500;
    color:#e2e8f0;
    margin-bottom:20px;
    border-left:3px solid #22c55e;
    padding-left:10px;
}

.header-text p{
    font-size:1rem;
    line-height:1.6;
    color:#cbd5e1;
    margin-bottom:30px;
    max-width:500px;
}

.header-visual{
    flex:1;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.visual-image{
    position:relative;
    z-index:1;
    border-radius:16px;
    overflow:hidden;
    transform:perspective(1000px) rotateY(-5deg) rotateX(5deg);
    animation:float-image 6s ease-in-out infinite;
}

.visual-image img{
    width:100%;
    max-width:300px;
    display:block;
}

.floating-card{
    position:absolute;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    padding:12px 18px;
    border-radius:10px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:3;
    animation:float 4s ease-in-out infinite;
    box-shadow:0 20px 40px rgba(0,0,0,.3);
}

.floating-card .icon-box{
    width:36px;
    height:36px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.floating-card strong{
    display:block;
    font-size:1rem;
    color:#1e293b;
    line-height:1.1;
}

.floating-card span{
    font-size:.75rem;
    color:#64748b;
    text-transform:uppercase;
}

.card-1{
    top:83px;
    left:3px;
    animation-delay:0s;
}

.card-2{
    bottom:-20px;
    right:-10px;
    animation-delay:1.5s;
}

.card-3{
    top:50%;
    right:-40px;
    animation-delay:.7s;
}

@keyframes float-image{
    0%,100%{
        transform:perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0);
    }
    50%{
        transform:perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-15px);
    }
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

@media (max-width:900px){

    .header-container{
        flex-direction:column;
        text-align:center;
    }

    .header-text h1{
        font-size:2.5rem;
    }

    .dept-name{
        display:inline-block;
        border-left:none;
        border-bottom:3px solid #22c55e;
        padding-bottom:5px;
        padding-left:0;
    }

    .header-text p{
        margin:0 auto 30px;
    }

    .visual-image{
        transform:none;
        margin-top:40px;
        max-width:100%;
        animation:float-image-mobile 6s ease-in-out infinite;
    }

    .card-3{
        right:0;
    }
}

@keyframes float-image-mobile{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
}


/*akhir header halaman*/




main{
	background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url(../images/bg.png);
	background-repeat: repeat;
	background-position: center;
	background-attachment: fixed;
}


.footer {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pem-sebfooter {
	width: 85%;
	max-width: 1350px;
	display: flex;
	background: linear-gradient(160deg, #3b82f6, #1e3a8a);
	margin: 13px 0px 73px 0;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	flex-wrap: wrap;
	gap: 23px;
	color: white;
}

.subfooter {
	flex: 1;
	min-width: 280px;
}

.subfooter h1 {
	font-size: 2.5rem;
	line-height: 1.2;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.subfooter h1 span {
	color: #ffffff;
}

.subfooter p {
	font-size: 0.9rem;
	opacity: 0.9;
	margin-bottom: 25px;
	max-width: 90%;
}

.stats-horizontal {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 15px;
}

.stat-item {
	background: rgba(255, 255, 255, 0.1);
	padding: 10px;
	border-radius: 10px;
	text-align: center;
	flex: 1;
}

.stat-item ion-icon {
	font-size: 1.5rem;
	color: #ffffff;
	margin-bottom: 5px;
}

.stat-item strong {
	display: block;
	font-size: 1.2rem;
}

.stat-item small {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.subfooter-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.subfooter-center img {
	position: absolute;
	width: 605px;
/*width: 80%;
height: auto;
max-height: 400px;
filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));*/
}

.kontakkami {
	border: 1px solid #ffffff6e;
	background: #ffffff36;
	padding: 33px;
	border-radius: 14px;
	height: 100%;
}

.kontakkami h2 {
	margin-bottom: 25px;
	border-bottom: 2px solid #ffffff;
	display: inline-block;
	padding-bottom: 5px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.contact-item ion-icon {
	font-size: 1.5rem;
	margin-right: 15px;
	color: #ffffff;
	margin-top: 3px;
}

.contact-info{
	width: 100%;
}

.contact-info p {
	font-size: 0.9rem;
	margin: 0;
	line-height: 1.4;
}

.contact-info strong {
	display: block;
	text-transform: uppercase;
	font-size: 0.8rem;
	margin-bottom: 2px;
	color: #ddd;
}

footer {
	background: linear-gradient(160deg, #3b82f6, #1e3a8a);
	color: white;
	width: 100%;
	text-align: center;
	padding: 23px;
	font-size: 12px;
}

@media (max-width: 768px) {
	.stats-horizontal {
		flex-direction: column;
	}
	.pem-sebfooter {
		padding: 20px;
	}
	.subfooter-center img {
		width: 60%;
	}
}



/*animasi text*/

h1 span {
	display: inline-block;
	background: linear-gradient(
		90deg,
		#22c55e,
		#10b981,
		#3b82f6,
		#22c55e
	);
	background-size: 300% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	animation:
	ecoFlow 8s linear infinite,
	leafWind 5s ease-in-out infinite;
}

@keyframes ecoFlow {
	from { background-position: 0%; }
	to   { background-position: 300%; }
}

@keyframes leafWind {
	0%,100% { transform: rotate(0deg); }
	25%     { transform: rotate(-1deg); }
	75%     { transform: rotate(1deg); }
}

/* =========================================
           7. RESPONSIVE
========================================= */

@media (max-width: 900px) {

.nav-menu-wrapper {
    display: none;
} /* Sembunyikan menu tengah di mobile */

.beranda-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item:nth-child(2) {
    border-right: none;
}

.dlhapps-grid {
    grid-template-columns: 1fr;
}

.dlh-sidebar {
    max-height: none;
    border-right: none;
    border-bottom: 1px solid #eff6ff;
}

.dlh-preview {
    padding: 30px;
    min-height: auto;
}
}

@media (max-width: 640px) {

.beranda-stats {
    grid-template-columns: 1fr;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 60px;
}

.stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.pem-dlhapps {
    padding: 43px 16px;
}

.dlh-preview-card {
    padding: 24px;
}

.dlh-list-item {
    padding: 12px 16px;
}

.fab-btn {
    padding: 14px 20px;
    font-size: 14px;
}

.fab-btn span {
    display: none;
}

.dlh-berita-header {
    margin-bottom: 30px;
}
}


/*floting btn pengaduan*/

/* =========================================
           6. FLOATING BUTTON & MODAL
           ========================================= */

        .pem-floting-btn-pengaduan {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .fab-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 28px;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: #ffffff;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
            transition: all 0.3s ease;
            animation: pulse-fab 2.5s infinite;
        }

        .fab-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 28px rgba(239, 68, 68, 0.5);
            animation: none;
        }

        @keyframes pulse-fab {

            0% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
            }
        }

        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(4px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: #ffffff;
            width: 90%;
            max-width: 900px;
            border-radius: 20px;
            overflow: hidden;
            transform: translateY(20px) scale(0.95);
            transition: transform 0.3s ease;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0) scale(1);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            border-bottom: 1px solid #f1f5f9;
        }

        .modal-header h3 {
            font-size: 18px;
            font-weight: 700;
            color: #1e3a8a;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modal-close {
            background: #f1f5f9;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            color: #64748b;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: #e2e8f0;
            color: #1e293b;
        }

        .modal-body {
            padding: 40px 24px;
            color: #94a3b8;
            /*display: flex;*/
            align-items: center;
            justify-content: center;
            font-style: italic;
        }

        .modal-form-container {
                    min-height: 400px;
                    position: relative;
                }

                .form-progress {
                    display: flex;
                    justify-content: space-between;
                    margin-bottom: 30px;
                    position: relative;
                    max-width: 300px;
                    margin-left: auto;
                    margin-right: auto;
                }
                .form-progress::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: 0;
                    right: 0;
                    height: 2px;
                    background: #e2e8f0;
                    z-index: 0;
                    transform: translateY(-50%);
                }
                .progress-dot {
                    width: 30px;
                    height: 30px;
                    background: #e2e8f0;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 12px;
                    font-weight: 700;
                    color: #94a3b8;
                    position: relative;
                    z-index: 1;
                    transition: all 0.3s ease;
                }
                .progress-dot.active {
                    background: #3b82f6;
                    color: #ffffff;
                    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
                }

                .step-content {
                    display: none;
                    animation: fadeIn 0.4s ease;
                }
                .step-content.active {
                    display: block;
                }

                @keyframes fadeIn {
                    from { opacity: 0; transform: translateY(10px); }
                    to { opacity: 1; transform: translateY(0); }
                }

                .intro-options {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 20px;
                    margin-top: 20px;
                }
                .intro-card {
                    background: #f8fafc;
                    border: 2px solid #e2e8f0;
                    border-radius: 16px;
                    padding: 30px;
                    text-align: center;
                    cursor: pointer;
                    transition: all 0.3s ease;
                }
                .intro-card:hover {
                    border-color: #3b82f6;
                    background: #eff6ff;
                    transform: translateY(-5px);
                }
                .intro-icon-lg {
                    font-size: 40px;
                    color: #3b82f6;
                    margin-bottom: 15px;
                }
                .intro-title {
                    font-weight: 700;
                    color: #1e293b;
                    margin-bottom: 5px;
                }

                .category-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                    gap: 15px;
                }
                .cat-item {
                    background: #ffffff;
                    border: 1px solid #e2e8f0;
                    border-radius: 12px;
                    padding: 15px;
                    text-align: center;
                    cursor: pointer;
                    transition: all 0.2s ease;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }
                .cat-item:hover, .cat-item.selected {
                    border-color: #3b82f6;
                    background: #eff6ff;
                    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
                }
                .cat-icon { font-size: 24px; color: #3b82f6; margin-bottom: 8px; display: block; }
                .cat-label { font-size: 13px; font-weight: 600; color: #334155; }

                .privacy-notice {
                    background: #f0fdf4;
                    border: 1px solid #bbf7d0;
                    color: #166534;
                    padding: 12px 16px;
                    border-radius: 10px;
                    font-size: 13px;
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    margin-bottom: 20px;
                }
                .form-group { margin-bottom: 16px; text-align: left; }
                .form-label {
                    display: block;
                    font-size: 13px;
                    font-weight: 600;
                    color: #475569;
                    margin-bottom: 6px;
                }
                .form-input {
                    width: 100%;
                    padding: 12px;
                    border: 1px solid #cbd5e1;
                    border-radius: 8px;
                    font-size: 14px;
                    transition: border 0.3s ease;
                    font-family: inherit;
                }
                .form-input:focus {
                    outline: none;
                    border-color: #3b82f6;
                    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
                }

                #map-container {
                    height: 250px;
                    width: 100%;
                    border-radius: 12px;
                    border: 2px solid #e2e8f0;
                    margin-bottom: 20px;
                    z-index: 1;
                }
                .upload-area {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    padding: 40px 20px;
                    border: 2px dashed #cbd5e1;
                    border-radius: 12px;
                    background: #f8fafc;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    margin-top: 15px;
                    text-align: center;
                }

                .upload-area:hover {
                    border-color: #3b82f6;
                    background: #eff6ff;
                }

                .upload-area .upload-icon {
                    font-size: 32px;
                    color: #94a3b8;
                    margin-bottom: 10px;
                }

                .upload-area .upload-title {
                    font-weight: 600;
                    color: #475569;
                }

                .upload-area .upload-hint {
                    font-size: 12px;
                    color: #94a3b8;
                    margin-top: 2px;
                }

                .file-name-display {
                    margin-top: 10px;
                    font-size: 13px;
                    color: #3b82f6;
                    font-weight: 600;
                    display: none;
                }

                .file-name-display.show {
                    display: block;
                }

                .form-actions {
                    display: flex;
                    justify-content: space-between;
                    margin-top: 30px;
                    padding-top: 20px;
                    border-top: 1px solid #f1f5f9;
                }
                .btn-prev {
                    background: #f1f5f9;
                    color: #64748b;
                    padding: 10px 24px;
                    border-radius: 8px;
                    font-weight: 600;
                    cursor: pointer;
                    border: none;
                }
                .btn-prev:hover { background: #e2e8f0; color: #1e293b; }

                .btn-next {
                    background: #3b82f6;
                    color: #ffffff;
                    padding: 10px 30px;
                    border-radius: 8px;
                    font-weight: 600;
                    cursor: pointer;
                    border: none;
                    display: flex;
                    align-items: center;
                    gap: 6px;
                }
                .btn-next:hover { background: #2563eb; }

                .btn-submit { background: #10b981; }
                .btn-submit:hover { background: #059669; }

                .leaflet-pane { z-index: 1 !important; }
                .leaflet-top { z-index: 10 !important; }

                /*and pengaruan*/