/* =====================================================
   JIME HEADER & PROFILE
   ===================================================== */

.pkp_site_nav_menu,
.pkp_site_nav_toggle {
    background: #539500 !important;
}

/* Tombol profile */
.pkp_navigation_user .profile {
    background: #539500 !important;
    border-radius: 10px !important;
    padding: 0 15px !important;
    transition: all .3s ease;
    margin-top: 6px !important;
}

.pkp_navigation_user .profile:hover {
    background: #467f00 !important;
}

.pkp_site_name a {
    color: #ffffff00 !important;
}

/* Dropdown */

.pkp_navigation_user .dropdown-menu,
.pkp_navigation_user ul[role="menu"] {
    border: none !important;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.18) !important;
    padding: 8px !important;
    min-width: 220px;
    background: #fff !important;
}

/* Item menu */

.pkp_navigation_user .dropdown-menu a,
.pkp_navigation_user ul[role="menu"] a {
    color: #333 !important;
    padding: 12px 16px !important;
    border-radius: 10px;
    transition: all .25s ease;
    font-weight: 500;
}

/* Hover item */

.pkp_navigation_user .dropdown-menu a:hover,
.pkp_navigation_user ul[role="menu"] a:hover {
    background: #eef8df !important;
    color: #539500 !important;
    padding-left: 20px !important;
}

/* Badge angka */

.pkp_navigation_user .task_count,
.pkp_navigation_user .count {
    background: #7cc000 !important;
    color: #fff !important;
    border-radius: 999px !important;
    min-width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

/* Username */

.pkp_navigation_user .profile > a {
    font-weight: 600;
    color: #fff !important;
}

/* Footer */
.pkp_brand_footer {
    display: none !important;
}

.pkp_structure_footer_wrapper {
    background: #539500;
}

.footer {
    background: #539500;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-logo {
    flex: 0 0 180px;
    text-align: center;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
}

.footer-content {
    flex: 1;
}

.footer-content h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 24px;
}

.footer-content p {
    margin: 8px 0;
    color: #f5f5f5;
    line-height: 1.7;
}

.footer-content a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.footer-content a:hover {
    color: #dff5bf;
}

.footer-copy {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.25);
    font-size: 13px;
}

/* Mobile */

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        flex: none;
    }

}

/* Animasi dropdown */

.pkp_navigation_user .dropdown-menu {
    animation: profileFade .2s ease;
}

@keyframes profileFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}