:root {
    --primary-gradient: linear-gradien(135deg, #4f46e5 0%, #3b82f6 100%);
    --bg-body: #f3f4f6;
    --sidebar-width: 280px;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    background-color: var(--bg-body);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* --- SIDEBAR --- */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sidebar-header {
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid #f3f4f6;
}

.nav-link {
    color: #64748b;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 0 25px 25px 0;
    margin-right: 15px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link:hover {
    color: #4f46e5;
    background: #f0fdfa;
}

.nav-link.active {
    background: #eff6ff;
    color: #3b82f6;
    border-left: 4px solid #3b82f6;
}

/* --- MAIN CONTENT --- */
.main-content {
    margin-left: var(--sidebar-width);
    padding: 2rem;
    transition: all 0.3s ease;
}

/* --- SERVICE CARDS (Pilihan Kartu) --- */
.service-card {
    background: white;
    border: none;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none !important;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.service-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

/* Warna-warni Icon berdasarkan jenis */
.bg-soft-primary { background: #eff6ff; color: #3b82f6; }
.bg-soft-success { background: #f0fdf4; color: #22c55e; }
.bg-soft-warning { background: #fefce8; color: #eab308; }
.bg-soft-danger { background: #fef2f2; color: #ef4444; }

.service-card h5 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .sidebar { margin-left: calc(var(--sidebar-width) * -1); }
    .sidebar.show { margin-left: 0; }
    .main-content { margin-left: 0; }
    .overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    .overlay.show { display: block; }
}