body {
    background-color: #f8f9fa;
}

/* ===== Landing interaktif (home.php) ===== */
.avatar-orb {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(13,110,253,0.25) 40%, rgba(13,110,253,0.15) 70%, rgba(13,110,253,0.05) 100%);
    box-shadow:
        0 18px 50px rgba(13,110,253,0.22),
        inset 0 0 0 1px rgba(255,255,255,0.25);
    overflow: hidden;
}
.avatar-orb__core {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13,110,253,0.95), rgba(25,135,84,0.65));
    filter: saturate(1.2);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
    animation: avatarPulse 2.4s ease-in-out infinite;
}
@keyframes avatarPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.avatar-orb__spark {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    opacity: 0.9;
    filter: blur(0.1px);
    animation: sparkFloat 1.9s ease-in-out infinite;
}
.avatar-orb__spark.spark-1 { left: 14px; top: 22px; animation-delay: 0s; }
.avatar-orb__spark.spark-2 { right: 16px; top: 14px; animation-delay: 0.45s; }
.avatar-orb__spark.spark-3 { right: 10px; bottom: 18px; animation-delay: 0.9s; }
@keyframes sparkFloat {
    0%, 100% { transform: translate(0,0) scale(1); opacity: 0.75; }
    50% { transform: translate(-6px,-10px) scale(1.12); opacity: 1; }
}

.hero-slider {
    position: relative;
    min-height: 240px;
    overflow: hidden;
}
.hero-slider__slides {
    position: relative;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 520ms ease, transform 520ms ease;
    background: linear-gradient(135deg, rgba(13,110,253,0.06), rgba(25,135,84,0.05));
}
.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}
.hero-ico {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    flex: 0 0 auto;
}
.hero-slider__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px 16px 16px;
}
.hero-pagination {
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.08);
    cursor: pointer;
}
.hero-dot.active {
    background: rgba(13,110,253,0.85);
    border-color: rgba(13,110,253,0.85);
    box-shadow: 0 10px 25px rgba(13,110,253,0.25);
}

.callout {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(13,110,253,0.06);
    border: 1px solid rgba(13,110,253,0.12);
}
.callout__row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.callout__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,110,253,0.12);
    color: #0d6efd;
    flex: 0 0 auto;
}
.callout__title {
    font-weight: 700;
    margin-bottom: 2px;
}
.callout__sub {
    font-size: 0.95rem;
}

.info-pill {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
}
.info-pill i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,110,253,0.08);
    color: #0d6efd;
    flex: 0 0 auto;
}

@media (max-width: 991px) {
    .hero-slider { min-height: 260px; }
}



#wrapper {

    display: flex;
    width: 100%;
    align-items: stretch;
    min-height: 100vh;
}


#sidebar-wrapper {
    min-height: 100vh;
    width: 250px;
    margin-left: 0;
    transition: margin 0.25s ease-out;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: -250px;
}

#page-content-wrapper {
    width: 100%;
}

.sidebar-heading {
    font-size: 1.2rem;
}

.list-group-item.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.login-container {
    max-width: 400px;
    margin: 80px auto;
}

.login-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stat-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-3px);
}

#map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
}

.table-responsive {
    border-radius: 8px;
    overflow: hidden;
}

.badge-notification {
    position: absolute;
    top: 5px;
    right: 5px;
}

@media (max-width: 768px) {
    #sidebar-wrapper {
        margin-left: -250px;
    }
    #wrapper.toggled #sidebar-wrapper {
        margin-left: 0;
    }
}

