/* ========================================================= */
/* === WARNA HEADER & NAVIGASI === */
/* ========================================================= */
.pkp_structure_head,
.pkp_head_wrapper,
.pkp_navigation_primary,
.pkp_navigation_user,
.pkp_site_nav_menu,
.pkp_navigation_primary_wrapper,
.pkp_search {
    background-color: #24bf83 !important;
}

/* ========================================================= */
/* === SEARCH BOX === */
/* ========================================================= */
.pkp_search input[type="text"] {
    background-color: transparent !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
}
.pkp_search input[type="text"]::placeholder {
    color: #cce7ec !important;
}
.pkp_search button,
.pkp_search i {
    background: transparent !important;
    color: #ffffff !important;
    border: none !important;
}
.pkp_search input[type="text"]:focus,
.pkp_search button:hover {
    color: #aee6f2 !important;
    outline: none !important;
}

/* ========================================================= */
/* === HEADER UTAMA (DIPERKECIL) === */
/* ========================================================= */
.pkp_head_wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 70px !important;
    padding: 5px 15px !important;
    overflow: hidden !important;
}

/* ========================================================= */
/* === AREA LOGO === */
/* ========================================================= */
.pkp_site_name {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 80px !important;
    min-width: auto !important;
    padding: 0 15px !important;
    margin: 0 !important;
}

/* LOGO DESKTOP */
.pkp_site_name img {
    height: 80px !important;
    width: auto !important;
    object-fit: contain !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
    transition: transform 0.3s ease-in-out !important;
}

/* Efek hover halus (aman & akademik) */
.pkp_site_name img:hover {
    transform: scale(1.05);
}

/* ========================================================= */
/* === MOBILE (HP) === */
/* ========================================================= */
@media (max-width: 765px) {

    .pkp_head_wrapper {
        min-height: 60px !important;
        padding: 5px 10px !important;
    }

    .pkp_site_name {
        min-height: 60px !important;
        padding: 0 10px !important;
    }

    .pkp_site_name img {
        height: 45px !important;
    }
}