/* ===============================
   NAVBAR (DESKTOP & MOBILE INTEGRATION)
================================== */
:root {
    --primary-blue: #00468B;
    --accent-yellow: #FFC107;
    --accent-red: #DC3545;
    --dark-text: #1E293B;
    --light-bg: #FFFFFF;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: var(--light-bg);
    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
    z-index: 1000;
    border-bottom: 3px solid var(--accent-yellow);
}

.navbar .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 45px;
    height: auto;
}

.site-title {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Navigasi Desktop */
.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
}

.nav-desktop a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    background: var(--primary-blue);
    color: #FFFFFF;
}

.nav-desktop a:hover i,
.nav-desktop a.active i {
    color: var(--accent-yellow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-text);
    transition: .3s;
}

.icon-btn:hover {
    background: var(--accent-red);
    color: white;
}