/* =====================================================
   ROOT
===================================================== */

:root {
    --primary: #428475;
    --primary-dark: #2F5D52;
    --primary-light: #89D7B7;

    --accent: #89D7B7;
    --accent-light: #A0E0C8;

    --secondary: #FFF4E1;

    --text: #1A312C;
    --text-light: #2F5D52;

    --background: #F9F6F0;

    --border: #E8DCC8;

    --shadow: 0 15px 35px rgba(26, 49, 44, .08);

    --radius: 22px;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;

    background:
        radial-gradient(circle at 15% 15%, rgba(66, 132, 117, .06), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(26, 49, 44, .04), transparent 25%),
        radial-gradient(circle at 20% 90%, rgba(137, 215, 183, .2), transparent 30%),
        linear-gradient(180deg,
            #FFFBF7 0%,
            #FFF9F0 40%,
            #F9F6F0 100%);

}

img {
    display: block;
    max-width: 100%;
    transition: .35s;
}

.hero-image,
.about-image,
.gallery-item img {
    will-change: transform;
}

a {

    text-decoration: none;

}

section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

section::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(74, 222, 128, .05);

    filter: blur(90px);

    top: -150px;
    right: -150px;

    pointer-events: none;

}

section:nth-child(even)::before {

    left: -150px;
    right: auto;

}


/* =====================================================
   SECTION TITLE
===================================================== */

.section-title {
    text-align: center;
    margin-bottom: 75px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2::after {

    content: "";

    display: block;

    width: 70px;
    height: 5px;

    margin: 16px auto 0;

    border-radius: 999px;

    background: linear-gradient(90deg, var(--accent), var(--accent-light));

}

.section-title span {

    display: inline-block;
    padding: 8px 18px;

    border-radius: 999px;

    background: var(--secondary);

    color: var(--primary);

    font-size: 14px;
    font-weight: 600;

}

.section-title h2 {

    margin-top: 18px;

    font-size: 42px;
    font-weight: 700;

}

.section-title p {
    margin-top: 15px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    padding: 12px 0;
    transition: .35s;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
    border-bottom: 1px solid rgba(66, 132, 117, .08);
}

.navbar.scrolled {

    background: #fff;

    padding: 8px 0;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.navbar-brand {

    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 1.5rem;
    font-weight: 700;

    color: var(--text) !important;

}

.navbar-brand img {

    width: 50px;
    height: 50px;
    object-fit: contain;

}

.navbar-nav {

    gap: 12px;

}

.nav-link {

    position: relative;

    color: #5D4037 !important;

    font-weight: 500;

    transition: .3s;

}

.nav-link:hover,
.nav-link.active {

    color: var(--primary) !important;

}

.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: .3s;

}

.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}




/* =====================================================
   BUTTON
===================================================== */

.btn {

    border-radius: 999px;

    transition: .3s;

    font-weight: 500;

    letter-spacing: .3px;

}

.btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 28px rgba(0, 0, 0, .10);

}

.btn-success {

    background: var(--primary);
    border: none;
    box-shadow: 0 12px 25px rgba(22, 101, 52, .15);

}

.btn-success:hover {

    background: var(--primary-dark);

}

.btn-outline-success {

    border: 2px solid var(--primary);

    color: var(--primary);

}

.btn-outline-success:hover {

    background: var(--primary);

    color: #fff;

}

.btn-login {

    padding: 12px 28px;

    background: var(--primary);

    color: #fff;

}

.btn-login:hover {

    background: var(--primary-dark);

}


/* =====================================================
   HERO
===================================================== */

.hero {

    padding-top: 120px;
    padding-bottom: 60px;

    position: relative;
    overflow: hidden;

}

.hero::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: #C5E8DF;

    filter: blur(140px);

    top: -220px;
    right: -180px;

    opacity: .5;

}

.hero::after {

    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background: #FFF4E1;

    filter: blur(120px);

    bottom: -180px;
    left: -120px;

    opacity: .5;

}

.hero .container {

    position: relative;
    z-index: 2;

}



.hero h1 {

    margin: 22px 0;

    font-size: 56px;

    font-weight: 800;

    line-height: 1.15;

}

.hero h1 span {

    color: var(--primary);

}

.hero p {

    max-width: 560px;

    font-size: 18px;

    line-height: 1.9;

    color: var(--text-light);

}

.hero-button {

    display: flex;

    gap: 16px;

    margin-top: 38px;

    flex-wrap: wrap;

}

.hero-button .btn {

    padding: 14px 30px;

}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* HERO SMALL CARD */

.hero-info-card {

    display: flex;

    align-items: center;

    gap: 16px;

    background: #fff;

    border-radius: 18px;

    padding: 18px;

    border: 1px solid var(--border);

    box-shadow: 0 10px 24px rgba(0, 0, 0, .05);

    transition: .3s;

    height: 100%;

}

.hero-info-card:hover {

    transform: translateY(-6px);

}

.hero-info-card i {

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #E0F3ED;

    color: #428475;

    font-size: 22px;

}

.hero-info-card small {

    display: block;

    color: var(--text-light);

}

.hero-info-card h5 {

    margin: 4px 0 0;

    font-weight: 700;

}


/* HERO IMAGE */

.hero-image-wrapper {

    position: relative;

}

.hero-image {

    width: 100%;

    border-radius: 28px;

    box-shadow: 0 25px 55px rgba(0, 0, 0, .12);
    animation: floatImage 5s ease-in-out infinite;

}



.hero-image:hover {

    filter: brightness(1.05);

}

.chart-card,
.staff-card,
.chief-card,
.info-card,
.map-card,
.gallery-item {
    transition: .35s;
}

.chart-card:hover,
.staff-card:hover,
.chief-card:hover,
.info-card:hover,
.map-card:hover,
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .12);
}

/* =====================================================
   DASHBOARD
===================================================== */

.dashboard {

    position: relative;

    overflow: hidden;

    background: #FFFFFF;

}

.dashboard::before {

    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background: #BBF7D0;

    filter: blur(130px);

    left: -180px;
    top: -120px;

    opacity: 0;

}

.dashboard::after {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: #DCFCE7;

    filter: blur(120px);

    right: -120px;
    bottom: -120px;

    opacity: 0;

}

.dashboard .container {

    position: relative;
    z-index: 2;

}

.section-badge {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 999px;

    background: #E0F3ED;

    color: #428475;

    font-size: 14px;
    font-weight: 600;

}

.chart-card {

    position: relative;

    background: #fff;

    border-radius: 24px;

    padding: 32px;

    border: 1px solid #E5E7EB;

    box-shadow: var(--shadow);

    overflow: hidden;

    transition: .3s;

}

.chart-card:hover {

    transform: translateY(-6px);

}

.chart-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(90deg, var(--accent), var(--accent-light));

}

.chart-card h4 {

    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;
    padding-bottom: 14px;

    border-bottom: 1px solid var(--border);

    font-size: 1.25rem;
    font-weight: 600;

}

.chart-card h4 i {

    color: var(--primary);

}

.chart-card canvas {

    width: 100% !important;
    height: 320px !important;

}

.chart-large canvas {

    height: 360px !important;

}

.chart-donut canvas {

    height: 340px !important;

}


/* =====================================================
   ABOUT
===================================================== */

.about {

    position: relative;

    overflow: hidden;

    background: #FAF6F0;

}

.about::before {

    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    background: #DCFCE7;

    border-radius: 50%;

    filter: blur(120px);

    left: -140px;
    top: -120px;

    opacity: 0;

}

.about::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    background: #BBF7D0;

    border-radius: 50%;

    filter: blur(120px);

    right: -120px;
    bottom: -120px;

    opacity: 0;

}

.about .container {

    position: relative;
    z-index: 2;

}

.about-image-wrapper {

    position: relative;

}

.about-image {

    width: 100%;

    border-radius: 28px;

    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);

}

.about-floating-card {

    position: absolute;

    right: -20px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 15px;

    background: #fff;

    padding: 18px 22px;

    border-radius: 18px;

    box-shadow: var(--shadow);

}

.about-floating-card i {

    font-size: 30px;

    color: var(--primary);

}

.about-title {

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 18px;

}

.about-desc {

    color: var(--text-light);

    line-height: 1.9;

}

.about-divider {

    width: 100%;
    height: 1px;

    background: var(--border);

    margin: 28px 0;

}

.vision-box {

    display: flex;

    gap: 18px;

    align-items: flex-start;

    background: #FAFAF8;

    border: 1px solid #E8DCC8;

    border-radius: 16px;

    padding: 24px;

    margin-bottom: 28px;

}

.icon-box {

    width: 70px;
    height: 70px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 18px;

    background: #E0F3ED;

    flex-shrink: 0;

}

.icon-box i {

    font-size: 30px;

    color: var(--primary);

}

.vision-box h5 {

    color: var(--primary);

    font-weight: 700;

    margin-bottom: 10px;

}

.vision-box p {

    margin: 0;

    line-height: 1.8;

}

.mission-title {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    margin-top: 20px;

    color: var(--primary);

    font-weight: 700;

    font-size: 1.1rem;

}

.mission-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

}

.mission-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 16px;

    border-radius: 14px;

    background: #FAF6F0;

    transition: .3s;

}

.mission-item:hover {

    background: #E0F3ED;

    transform: translateX(6px);

}

.mission-item i {

    color: var(--primary);

}

.about-buttons {

    display: flex;

    gap: 16px;

    margin-top: 35px;

    flex-wrap: wrap;

}

/* =====================================================
   PERANGKAT DESA
===================================================== */

.officials {

    background: #FFFFFF;

}

.chief-wrapper {

    display: flex;

    justify-content: center;

    margin-bottom: 60px;

}

.chief-card {
    max-width: 320px;
    width: 100%;
    background: #fff;
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #E5E7EB;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    transition: .35s;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.chief-card::before,
.staff-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    transform: translateX(-50%);

    width: 90px;

    height: 6px;

    border-radius: 0 0 10px 10px;

    background: var(--primary);

}

.chief-card:hover {

    transform: translateY(-8px);

}

.chief-card img {

    width: 170px;

    height: 170px;

    object-fit: cover;

    border-radius: 50%;

    border: 6px solid #E0F3ED;

    margin: 0 auto 25px;

}

.chief-card h3 {

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 10px;

}

.chief-card span {

    display: inline-block;

    padding: 8px 22px;

    background: #E0F3ED;

    color: #428475;

    border-radius: 999px;

    font-weight: 600;

}

.staff-card {

    background: #fff;

    border-radius: 22px;

    padding: 32px;

    text-align: center;

    border: 1px solid #E5E7EB;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    transition: .35s;

    height: 100%;

}

.staff-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);

}

.staff-card img {

    width: 120px;

    height: 120px;

    object-fit: cover;

    border-radius: 50%;

    border: 5px solid #E0F3ED;

    margin: 0 auto 20px;

}

.staff-card h5 {

    margin-bottom: 8px;

    font-size: 20px;

    font-weight: 700;

}

.staff-card span {

    color: var(--primary);

    font-weight: 600;

}

/* ==========================================
   POTENSI DESA
========================================== */

.gallery {

    background: #FFFFFF;
    position: relative;
    overflow: hidden;

}

.gallery::before {

    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    background: #BBF7D0;

    border-radius: 50%;

    filter: blur(140px);

    top: -180px;
    right: -150px;

    opacity: 0;

}

.gallery::after {

    content: "";
    position: absolute;

    width: 320px;
    height: 320px;

    background: #DCFCE7;

    border-radius: 50%;

    filter: blur(120px);

    bottom: -120px;
    left: -120px;

    opacity: 0;

}

.gallery .container {

    position: relative;
    z-index: 2;

}

.potensi-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: var(--shadow);

    border: 1px solid #E5E7EB;

    transition: .35s;

    height: 100%;

}

.potensi-card:hover {

    transform: translateY(-10px);

}

.potensi-card img {

    width: 100%;
    height: 220px;

    object-fit: cover;

}

.potensi-content {

    padding: 32px;

}

.potensi-icon {

    width: 58px;
    height: 58px;

    border-radius: 16px;

    background: #E0F3ED;

    color: #428475;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 26px;

    margin-bottom: 18px;

}

.potensi-content h4 {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 12px;

}

.potensi-content p {

    color: var(--text-light);

    line-height: 1.8;

    margin: 0;

}



/* =====================================================
   UMKM SHOWCASE
===================================================== */

.umkm-showcase {

    background: #FFFFFF;

    position: relative;

    overflow: hidden;

    padding: 90px 0;

}

.umkm-showcase::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    background: #DCFCE7;

    border-radius: 50%;

    filter: blur(120px);

    top: -180px;
    right: -160px;

    opacity: 0;

}

.umkm-showcase::after {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    background: #BBF7D0;

    border-radius: 50%;

    filter: blur(110px);

    bottom: -120px;
    left: -120px;

    opacity: 0;

}

.umkm-showcase .container {

    position: relative;
    z-index: 2;

}


/* =======================
      TIMELINE
======================= */

.umkm-timeline {

    position: relative;

    padding-left: 55px;

}

.umkm-timeline::before {

    content: "";

    position: absolute;

    left: 20px;

    top: 0;

    bottom: 0;

    width: 3px;

    border-radius: 20px;

    background: linear-gradient(to bottom,
            #22C55E,
            #4ADE80,
            #BBF7D0);

}


/* =======================
      ITEM
======================= */

.umkm-item {

    position: relative;

    margin-bottom: 65px;

}

.umkm-item:last-child {

    margin-bottom: 0;

}

.timeline-dot {

    position: absolute;

    left: -2px;

    top: 90px;

    width: 42px;

    height: 42px;

    background: var(--primary);

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    font-size: 18px;

    border: 5px solid #fff;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

    z-index: 20;

}


/* =======================
      FOTO
======================= */

.umkm-photo {

    width: 100%;

    height: 240px;

    object-fit: cover;

    border-radius: 22px;

    transition: .45s;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.umkm-item:hover .umkm-photo {

    transform: scale(1.04);

}


/* =======================
      BADGE
======================= */

.badge-category {

    display: inline-block;

    background: #E0F3ED;

    color: #428475;

    padding: 7px 16px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 14px;

}


/* =======================
      TEXT
======================= */

.umkm-item h3 {

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 15px;

}

.umkm-item p {

    color: var(--text-light);

    line-height: 1.9;

}


/* =======================
      META
======================= */

.umkm-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 18px;

}

.umkm-meta span {

    color: #2F5D52;

    font-size: 15px;

}

.umkm-meta i {

    color: var(--primary);

    margin-right: 6px;

}


/* =======================
      OWNER CARD
======================= */

.owner-card {

    background: #FAF6F0;

    border: 1px solid #D7CCBF;

    border-radius: 20px;

    padding: 24px;

    transition: .35s;

    height: 100%;

}

.owner-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .08);

}

.owner-card div {

    margin-bottom: 18px;

}

.owner-card div:last-child {

    margin-bottom: 0;

}

.owner-card small {

    display: block;

    color: #2F5D52;

    margin-bottom: 6px;

    font-size: 13px;

}

.owner-card h6 {

    margin: 0;

    color: var(--primary);

    font-weight: 700;

}


/* =======================
      HOVER
======================= */

.umkm-item {

    transition: .35s;

}

.umkm-item:hover {

    transform: translateX(8px);

}


/* =======================
      RESPONSIVE
======================= */

@media(max-width:992px) {

    .umkm-timeline {

        padding-left: 0;

    }

    .umkm-timeline::before {

        display: none;

    }

    .timeline-dot {

        display: none;

    }

    .owner-card {

        margin-top: 20px;

    }

    .umkm-item h3 {

        font-size: 28px;

    }

    .umkm-photo {

        height: 220px;

    }

}


@media(max-width:768px) {

    .umkm-meta {

        flex-direction: column;

        gap: 8px;

    }

    .umkm-item {

        margin-bottom: 50px;

    }

    .umkm-item h3 {

        font-size: 25px;

    }

}


@media(max-width:576px) {

    .umkm-photo {

        height: 200px;

    }

    .badge-category {

        font-size: 12px;

    }

    .umkm-item h3 {

        font-size: 22px;

    }

    .owner-card {

        padding: 18px;

    }

}

/* =====================================================
   MAP
===================================================== */

.map-section {

    position: relative;

    overflow: hidden;

    background: #FAF6F0;

}

.map-section::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: #DCFCE7;

    filter: blur(110px);

    left: -120px;
    bottom: -120px;

    opacity: 0;

}

.map-section .container {

    position: relative;
    z-index: 2;

}

.map-card {

    height: 100%;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: var(--shadow);

    border: 1px solid #E5E7EB;

}

#map {

    width: 100%;

    height: 520px; /* Leaflet butuh tinggi fixed/terbaca */

    min-height: 520px;

}


.info-card {

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    border: 1px solid #E5E7EB;

    box-shadow: var(--shadow);

    height: 100%;

}

.info-card h3 {

    font-size: 2rem;

    font-weight: 700;

    margin-bottom: 35px;

}

.info-item {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;

}

.info-icon {

    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #E0F3ED;

    flex-shrink: 0;

}

.info-icon i {

    color: var(--primary);

    font-size: 22px;

}

.info-content {

    flex: 1;

}

.info-content h6 {

    margin-bottom: 6px;

    font-size: 18px;

    font-weight: 600;

    color: var(--primary);

}

.info-content p {

    margin: 0;

    color: var(--text-light);

    line-height: 1.8;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: linear-gradient(135deg, #1A312C, #2F5D52);

    color: #fff;

    padding: 70px 0 25px;

}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 18px;

}

.footer-logo {

    width: 60px;

}

.footer h5 {

    margin-bottom: 18px;

    font-size: 18px;

    font-weight: 600;

}

.footer p {

    color: #CBD5E1;

    line-height: 1.8;

}

.footer ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer li {

    margin-bottom: 12px;

    color: #CBD5E1;

}

.footer a {

    color: #CBD5E1;

    transition: .3s;

}

.footer a:hover {

    color: #fff;

}

.social {

    display: flex;

    gap: 14px;

}

.social a {

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1E293B;

    transition: .3s;

}

.social a:hover {

    background: var(--primary);

}

.footer hr {

    margin: 45px 0 20px;

    border-color: rgba(255, 255, 255, .08);

}

.copyright {

    text-align: center;

    color: #94A3B8;

    font-size: 14px;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:992px) {

    .navbar-collapse {
        background: #fff;
        margin-top: 15px;
        padding: 20px;
        border-radius: 18px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        gap: 15px;
        text-align: center;
    }

    .btn-login {
        width: 100%;
        margin-top: 10px;
    }

    .hero {

        padding-top: 110px;

        text-align: center;

    }

    .hero h1 {
        font-size: 46px;
    }

    .hero p {

        max-width: 100%;

        margin: auto;

    }

    .hero-button {
        justify-content: center;
    }

    .about-title {
        font-size: 36px;
    }

    .umkm-timeline {
        padding-left: 0;
    }

    .umkm-timeline::before,
    .timeline-dot {
        display: none;
    }

    .owner-card {
        margin-top: 20px;
    }

    .umkm-item h3 {
        font-size: 28px;
    }

    .umkm-photo {
        height: 220px;
    }

}

@media (max-width:768px) {

    .navbar-brand span {
        font-size: 20px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .about-floating-card {
        position: static;
        margin-top: 20px;
    }

    .vision-box {
        flex-direction: column;
    }

    .mission-list {
        grid-template-columns: 1fr;
    }

    .chart-card {
        padding: 20px;
    }

    .info-card {
        padding: 28px;
    }

    .umkm-meta {
        flex-direction: column;
        gap: 8px;
    }

    .umkm-item {
        margin-bottom: 50px;
    }

    .umkm-item h3 {
        font-size: 25px;
    }

}

@media (max-width:576px) {

    .hero h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hero-button {
        flex-direction: column;
    }

    .hero-button .btn {
        width: 100%;
    }

    .chart-card canvas {
        height: 260px !important;
    }

    #map {
        min-height: 380px;
    }

    .umkm-photo {
        height: 200px;
    }

    .badge-category {
        font-size: 12px;
    }

    .umkm-item h3 {
        font-size: 22px;
    }

    .owner-card {
        padding: 18px;
    }

}



::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #F1F5F9;

}

::-webkit-scrollbar-thumb {

    background: #89D7B7;
    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: #428475;

}

::selection {

    background: #FFF4E1;
    color: #1A312C;

}

* {

    transition:
        background-color .3s,
        border-color .3s,
        color .3s;

}

section:not(:last-child)::after {

    content: "";

    position: absolute;

    bottom: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 120px;
    height: 4px;

    background: linear-gradient(90deg,
            transparent,
            #BBF7D0,
            transparent);

}

/* =====================================================
   SECTION DIVIDERS (Minimal Only)
===================================================== */

.divider-minimal {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.divider-dot-subtle {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7BA898;
    opacity: 0.4;
}

/* =========================
   HERO CAROUSEL
========================= */

.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

#homeHeroCarousel,
#homeHeroCarousel .carousel-inner,
#homeHeroCarousel .carousel-item {
    min-height: 100vh;
}

.hero-slide-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 45, 37, 0.88) 0%,
            rgba(0, 72, 57, 0.68) 50%,
            rgba(0, 55, 45, 0.38) 100%
        );
    pointer-events: none;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-top: 100px;
    pointer-events: none;
}

.hero-content a {
    pointer-events: auto;
}

.hero-content h1,
.hero-content p {
    max-width: 850px;
}

#homeHeroCarousel .carousel-control-prev,
#homeHeroCarousel .carousel-control-next {
    z-index: 3;
    width: 7%;
}

#homeHeroCarousel .carousel-indicators {
    z-index: 3;
}

@media (max-width: 768px) {
    .hero-slider,
    #homeHeroCarousel,
    #homeHeroCarousel .carousel-inner,
    #homeHeroCarousel .carousel-item,
    .hero-slide-image {
        min-height: 760px;
        height: 760px;
    }

    .hero-content {
        padding-top: 120px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

.footer {
    padding-top: 32px !important;
    padding-bottom: 20px !important;
}

.footer-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.footer-menu,
.footer-contact {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-menu li,
.footer-contact li {
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-social a:hover {
    background: #fff;
    color: #0b6b55;
}