/*==================================================
 INFOGRAFIS SATPOL PP KABUPATEN MIMIKA
==================================================*/

:root{
    --primary:#0F4C81;
    --secondary:#1E88E5;
    --light:#F8FAFC;
    --dark:#173B63;
    --white:#ffffff;
    --shadow:0 12px 35px rgba(15,76,129,.12);
    --radius:22px;
}

/*====================================
 HERO
====================================*/

.hero-infografis{
    background:linear-gradient(135deg,#145A86,#1D7FB5);
    color:#fff;
    position:relative;
    overflow:hidden;
    padding:70px 0 120px;
}

.hero-infografis::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    right:-120px;
    top:-120px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.hero-infografis::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    left:-90px;
    bottom:-90px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
}

.hero-infografis .container{
    position:relative;
    z-index:2;
}

.breadcrumb-custom{
    font-size:14px;
    margin-bottom:18px;
}

.breadcrumb-custom a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb-custom span{
    margin:0 8px;
    opacity:.8;
}

.badge-hero{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:9px 18px;
    border-radius:50px;
    font-weight:600;
}

.hero-infografis h1{
    margin:20px 0;
    font-size:48px;
    font-weight:800;
    line-height:1.2;
}

.hero-infografis p{
    max-width:680px;
    line-height:1.8;
    font-size:18px;
    opacity:.95;
}

/*====================================
 HERO STATISTIK
====================================*/

.hero-statistik{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.hero-box{
    width:140px;
    padding:22px;
    text-align:center;
    border-radius:18px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
}

.hero-box h2{
    margin:0;
    font-size:34px;
    font-weight:700;
}

.hero-box span{
    font-size:13px;
    opacity:.9;
}

/*====================================
 HERO BUTTON
====================================*/

.hero-infografis .btn{
    border-radius:50px;
    padding:14px 34px;
    font-weight:600;
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

/*====================================
 SEARCH
====================================*/

.search-section{
    margin-top:-50px;
    position:relative;
    z-index:20;
}

.search-section .container{
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:var(--shadow);
}

.search-section .form-control,
.search-section .form-select{
    height:56px;
    border-radius:14px;
}

.search-section .btn{
    height:56px;
    border-radius:14px;
    font-weight:600;
}




/*====================================
 SECTION TITLE
====================================*/

.section-title{
    margin-bottom:45px;
}

.section-title .badge{
    background:#EAF4FF;
    color:var(--primary);
    font-size:13px;
    padding:8px 16px;
    border-radius:50px;
    font-weight:600;
}

.section-title h2{
    margin-top:18px;
    font-size:40px;
    font-weight:800;
    color:var(--dark);
}

.section-title p{
    color:#6c757d;
    font-size:16px;
    margin-top:10px;
}

/*====================================
 CARD INFOGRAFIS
====================================*/

.info-card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.16);
}

.info-image{
    position:relative;
    height:240px;
    overflow:hidden;
}

.info-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s;
}

.info-card:hover .info-image img{
    transform:scale(1.08);
}

.kategori{
    position:absolute;
    top:15px;
    left:15px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    padding:8px 16px;
    font-size:12px;
    font-weight:600;
    box-shadow:0 6px 18px rgba(0,0,0,.2);
}

.info-card .card-body{
    padding:24px;
    display:flex;
    flex-direction:column;
}

.info-card small{
    color:#888;
    font-size:13px;
}

.info-card h5{
    margin:14px 0;
    font-size:21px;
    font-weight:700;
    color:var(--dark);
    line-height:1.5;
}

.info-card p{
    color:#666;
    line-height:1.8;
    flex:1;
}

.info-card .btn{
    border-radius:50px;
    padding:10px 22px;
    font-size:14px;
    font-weight:600;
}

.info-card .text-primary{
    font-weight:600;
}



/*====================================
 EMPTY STATE
====================================*/

.alert{
    border:none;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.alert i{
    color:var(--primary);
}

.alert h4{
    font-weight:700;
    color:var(--dark);
}

/*====================================
 ANIMATION
====================================*/

.hero-box,
.info-card,
.search-section .container{
    animation:fadeUp .6s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(25px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*====================================
 RESPONSIVE 992px
====================================*/

@media (max-width:992px){

    .hero-infografis{
        padding:60px 0 100px;
        text-align:center;
    }

    .hero-infografis h1{
        font-size:38px;
    }

    .hero-infografis p{
        font-size:16px;
        max-width:100%;
        margin:auto;
    }

    .hero-statistik{
        justify-content:center;
    }

    .hero-box{
        width:130px;
    }

    .section-title h2{
        font-size:34px;
    }

    .info-image{
        height:220px;
    }

}

/*====================================
 RESPONSIVE 768px
====================================*/

@media (max-width:768px){

    .hero-infografis{
        padding:50px 0 90px;
    }

    .hero-infografis h1{
        font-size:30px;
    }

    .hero-infografis p{
        font-size:15px;
    }

    .badge-hero{
        font-size:13px;
    }

    .hero-box{
        width:115px;
        padding:18px;
    }

    .hero-box h2{
        font-size:28px;
    }

    .search-section{
        margin-top:-40px;
    }

    .search-section .container{
        padding:18px;
    }

    .search-section .form-control,
    .search-section .form-select,
    .search-section .btn{
        height:52px;
    }

    .section-title h2{
        font-size:28px;
    }

    .info-card h5{
        font-size:18px;
    }

    .info-image{
        height:210px;
    }

}

/*====================================
 RESPONSIVE 576px
====================================*/

@media (max-width:576px){

    .hero-infografis{
        padding:45px 0 80px;
    }

    .hero-infografis h1{
        font-size:25px;
        line-height:1.4;
    }

    .hero-infografis p{
        font-size:14px;
    }

    .hero-statistik{
        flex-direction:column;
        align-items:center;
    }

    .hero-box{
        width:100%;
        max-width:220px;
    }

    .search-section{
        margin-top:-30px;
    }

    .search-section .container{
        border-radius:18px;
    }

    .info-image{
        height:200px;
    }

    .info-card .card-body{
        padding:20px;
    }

}