:root {
    --primary: #36d399;
    --primary-dark: #1f9d72;
    --secondary: #2bbf8b;
    --accent: #f4c15d;
    --bg: #07110e;
    --bg-soft: #0b1713;
    --surface: #101f1a;
    --surface-2: #142720;
    --surface-3: #193128;
    --text: #edf7f2;
    --muted: #98afa5;
    --border: rgba(255,255,255,.09);
    --shadow: rgba(0,0,0,.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
}

.navbar {
    background: rgba(7,17,14,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.navbar-toggler {
    filter: invert(1);
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #06110d;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 8px 24px rgba(54,211,153,.2);
    font-size: 1.25rem;
}

.brand-title {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: .02em;
}

.brand-subtitle {
    font-size: .69rem;
    color: var(--muted);
    font-weight: 500;
}

.nav-link {
    color: #c0d2ca;
    font-weight: 600;
    font-size: .92rem;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary);
}

.btn-login {
    background: var(--primary);
    border-color: var(--primary);
    color: #07110e;
    border-radius: 12px;
    font-weight: 800;
    padding: .7rem 1.05rem;
}

.btn-login:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
    radial-gradient(circle at 84% 18%, rgba(54,211,153,.15), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(244,193,93,.09), transparent 25%),
    linear-gradient(135deg, #07110e 0%, #0a1712 52%, #0d1f18 100%);
}

.hero::after {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(54,211,153,.12);
    border-radius: 50%;
    right: -220px;
    bottom: -220px;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .8rem;
    border-radius: 999px;
    background: rgba(54,211,153,.11);
    color: #72e4b9;
    border: 1px solid rgba(54,211,153,.16);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1.02;
    color: #f4fbf7;
    margin-top: 1.1rem;
    max-width: 820px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-copy {
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 670px;
}

.btn-primary-custom,
.btn-outline-custom {
    border-radius: 14px;
    font-weight: 700;
    padding: .85rem 1.15rem;
}

.btn-primary-custom {
    color: #06110d;
    background: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: 0 12px 24px rgba(54,211,153,.16);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-outline-custom {
    color: #c8f4df;
    background: transparent;
    border: 1px solid rgba(114,228,185,.3);
}

.btn-outline-custom:hover {
    color: #06110d;
    background: var(--primary);
    border-color: var(--primary);
}

.hero-panel {
    position: relative;
    z-index: 1;
    padding: 1rem;
}

.dashboard-card {
    background: rgba(16,31,26,.92);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 1.2rem;
    box-shadow: 0 28px 70px var(--shadow);
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .55rem .5rem 1rem;
}

.dot-group span {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 4px;
    background: #365047;
}

.mini-stat {
    padding: 1rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 18px;
    height: 100%;
}

.mini-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(54,211,153,.12);
    color: var(--primary);
    font-size: 1.25rem;
}

.mini-stat strong {
    display: block;
    margin-top: .85rem;
    font-size: 1rem;
    color: #f1f8f4;
}

.mini-stat small {
    color: var(--muted);
}

.map-box {
    min-height: 210px;
    margin-top: 1rem;
    border-radius: 20px;
    background:
    linear-gradient(rgba(54,211,153,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54,211,153,.035) 1px, transparent 1px),
    linear-gradient(135deg, #0d1b16, #13271f);
    background-size: 25px 25px, 25px 25px, 100% 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-line {
    position: absolute;
    width: 82%;
    height: 55%;
    left: 9%;
    top: 22%;
    border: 4px solid rgba(54,211,153,.24);
    border-left-color: transparent;
    border-bottom-color: rgba(54,211,153,.12);
    border-radius: 48% 32% 46% 25%;
    transform: rotate(-8deg);
}

.map-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    color: #06110d;
    background: var(--primary);
    box-shadow: 0 8px 18px rgba(54,211,153,.22);
}

.map-pin i {
    transform: rotate(45deg);
    font-size: .8rem;
}

.pin-1 { left: 23%; top: 34%; }
.pin-2 { left: 53%; top: 47%; }
.pin-3 { right: 15%; top: 24%; }

.map-box .bg-white {
    background: rgba(16,31,26,.94) !important;
    border: 1px solid var(--border);
}

.status-dot {
    font-size: .55rem;
}

.section {
    padding: 88px 0;
    background: var(--bg);
}

.section:nth-of-type(even) {
    background: var(--bg-soft);
}

.section-label {
    color: var(--primary);
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-title {
    max-width: 720px;
    margin: .5rem auto 0;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -.035em;
    color: #f1f8f4;
}

.section-copy {
    max-width: 720px;
    margin: .9rem auto 0;
    color: var(--muted);
    line-height: 1.75;
}

.service-card {
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 1.5rem;
    transition: .25s ease;
    box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(54,211,153,.28);
    box-shadow: 0 18px 36px rgba(0,0,0,.24);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #06110d;
    background: linear-gradient(135deg, var(--primary), #6be8ba);
    font-size: 1.45rem;
    margin-bottom: 1.1rem;
}

.service-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: .6rem;
    color: #f2f9f5;
}

.service-card p {
    font-size: .9rem;
    line-height: 1.65;
    color: var(--muted);
    min-height: 95px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--primary);
    font-weight: 800;
    font-size: .87rem;
    text-decoration: none;
}

.service-link:hover {
    color: #79e7bd;
}

.info-section {
    background: #0d1c17 !important;
    color: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.info-section .section-label { color: #73e3b9; }
.info-section .section-title { color: #fff; }
.info-section .section-copy { color: rgba(255,255,255,.66); }

.info-card {
    height: 100%;
    padding: 1.4rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,.035);
}

.info-card i {
    font-size: 1.35rem;
    color: #75e6bc;
}

.info-card h4 {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 800;
}

.info-card p {
    color: rgba(255,255,255,.65);
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.report-box {
    background: linear-gradient(135deg, #11231c, #152b22);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: clamp(1.5rem, 5vw, 3.3rem);
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.report-title {
    color: #f2f9f5;
}

.report-copy {
    line-height: 1.75;
}

footer {
    padding: 30px 0;
    background: #040b08;
    color: rgba(255,255,255,.58);
    font-size: .85rem;
    border-top: 1px solid var(--border);
}

footer strong {
    color: #fff;
}

.text-secondary {
    color: var(--muted) !important;
}

.text-success {
    color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .hero {
        padding: 115px 0 70px;
        min-height: auto;
    }

    .hero-panel {
        margin-top: 2.2rem;
    }

    .service-card p {
        min-height: auto;
    }

    .navbar-collapse {
        margin-top: .7rem;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: rgba(11,23,19,.98);
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 2.45rem;
    }

    .section {
        padding: 68px 0;
    }

    .dashboard-card {
        border-radius: 22px;
    }
}
/* =========================================================
   STATUS MONITORING + BUTTON GIS
========================================================= */

.map-status {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 12px 14px;

    background: rgba(10, 25, 20, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;

    backdrop-filter: blur(10px);

    z-index: 5;
}


/* INFO STATUS */

.map-status-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.map-status-info small {
    color: #94a89f;
    font-size: 11px;
}

.map-status-info span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.map-status-info span i {
    color: #2fd17c;
    font-size: 8px;
    margin-right: 5px;
}


/* BUTTON GIS */

.btn-gis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 8px 13px;

    background: #1fbf75;
    color: #ffffff;

    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.btn-gis:hover {
    background: #16965b;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(31, 191, 117, 0.25);
}


/* MOBILE */

@media (max-width: 575.98px) {

    .map-status {
        left: 10px;
        right: 10px;
        bottom: 10px;

        padding: 10px;
    }

    .btn-gis {
        padding: 7px 10px;
        font-size: 11px;
    }
}