/* ===========================================================
   DESA PESUCEN — STYLESHEET UTAMA
   Palet warna:
   - Hijau tua   : #1B5E20 (primary)
   - Hijau       : #2D6A4A (secondary)
   - Oranye/Emas : #F9A825 (accent)
   - Krem        : #F7F2E7 (background)
   - Putih       : #FFFFFF (background)
   - Teks gelap  : #2B2B26
   =========================================================== */

:root {
    --hijau-tua: #1B5E20;
    --hijau: #2D6A4A;
    --hijau-muda: #3C8562;
    --oranye: #F9A825;
    --oranye-gelap: #C97F1F;
    --krem: #F7F2E7;
    --krem-tua: #F5F5F5;
    --teks-gelap: #2B2B26;
    --teks-abu: #6B6B62;
    --putih: #FFFFFF;
    --radius: 14px;
    --shadow: 0 8px 24px rgba(30, 75, 51, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background-color: var(--krem);
    color: var(--teks-gelap);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Supaya saat klik link submenu (mis. Profil Desa > Sejarah, atau
   Administrasi > APBDes) halaman berhenti tepat di bawah navbar
   sticky, bukan ketutup navbar. Section tetap tampil satu halaman
   penuh seperti biasa, ini cuma offset scroll saja. */
section[id] {
    scroll-margin-top: 90px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


img {
    max-width: 100%;
    display: block;
}

.dropdown-toggle-link {
    color: inherit;
    font: inherit;
}

.dropdown-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    margin: -4px -6px -4px 2px;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hijau-tua);
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--oranye);
    border-radius: 4px;
}

.section-header p {
    color: var(--teks-abu);
    margin-top: 14px;
    font-size: 0.98rem;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--oranye);
    margin-bottom: 10px;
}

/* =====================  NAVBAR  ===================== */
.navbar {
    background: var(--hijau-tua);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand .logo-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--oranye);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--hijau-tua);
    flex-shrink: 0;
    overflow: hidden;
}

.navbar-brand .logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.navbar-brand .brand-text h1 {
    font-size: 1rem;
    color: var(--putih);
    font-weight: 700;
    line-height: 1.2;
}

.navbar-brand .brand-text span {
    font-size: 0.72rem;
    color: #cfe3d6;
    display: block;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-menu > li {
    position: relative;
}

.navbar-menu > li > a,
.navbar-menu > li > .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    color: #e7ede9;
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.navbar-menu > li > a:hover,
.navbar-menu > li > .dropdown-toggle:hover {
    background: rgba(255,255,255,0.08);
    color: var(--putih);
}

.navbar-menu > li.active > a,
.navbar-menu > li.active > .dropdown-toggle {
    background: var(--oranye);
    color: var(--hijau-tua);
    font-weight: 600;
}

.navbar-menu .chevron {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.navbar-menu li:hover .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: var(--putih);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.navbar-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 9px 14px;
    border-radius: 7px;
    color: var(--teks-gelap);
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: var(--krem-tua);
    color: var(--hijau-tua);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--putih);
    font-size: 1.6rem;
    cursor: pointer;
}

/* =====================  HERO  ===================== */
.hero {
    background: linear-gradient(135deg, var(--hijau) 0%, var(--hijau-tua) 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 0 130px;
    color: var(--putih);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,77,49,0.30) 0%, rgba(10,50,30,0.40) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-content .eyebrow {
    color: var(--oranye);
}

.hero-content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero-content h2 .highlight {
    color: var(--oranye);
}

.hero-content p.lead {
    font-size: 1.05rem;
    color: #dbe8e0;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 46px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 9px;
    font-weight: 600;
    font-size: 0.94rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.btn-solid {
    background: var(--oranye);
    color: var(--hijau-tua);
}

.btn-solid:hover {
    background: var(--oranye-gelap);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--oranye);
    color: var(--oranye);
    background: transparent;
}

.btn-outline:hover {
    background: var(--oranye);
    color: var(--hijau-tua);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 620px;
}

.stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.stat-card strong {
    display: block;
    font-size: 1.5rem;
    color: var(--putih);
    font-weight: 700;
}

.stat-card span {
    font-size: 0.75rem;
    color: var(--oranye);
    font-weight: 600;
}

.stat-card small {
    display: block;
    font-size: 0.72rem;
    color: #cfe3d6;
    margin-top: 2px;
}

/* =====================  CARDS (potensi, umkm, berita)  ===================== */
/* =====================  CARDS (potensi, umkm, berita)  ===================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

/* Grid khusus potensi unggulan: baris terakhir yang tidak penuh (mis. 2 kartu)
   otomatis berada di tengah, bukan rata kiri */
.card-grid-potensi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
}

.card-grid-potensi .card {
    flex: 0 1 calc((100% - 26px * 2) / 3);
}

.card {
    background: var(--putih);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(30,75,51,0.14);
}

.card-image {
    height: 170px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--putih);
    font-size: 2.2rem;
    position: relative;
    overflow: hidden;
}

.card-grid-potensi .card-image {
    height: 220px;
}

.card-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-slideshow .slide-img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.card-slideshow .slide-img.active {
    opacity: 1;
}

.card-slideshow .slide-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f4f1ea;
}

.card-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.tag-pertanian { background: #E7F3E9; color: var(--hijau); }
.tag-kerajinan { background: #EAF3EE; color: #2E7D5B; }
.tag-pariwisata { background: #E6EEFB; color: #2F5FBF; }
.tag-kuliner { background: #FDEFE0; color: var(--oranye-gelap); }
.tag-kegiatan { background: #E7F3E9; color: var(--hijau); }
.tag-sosial { background: #E6EEFB; color: #2F5FBF; }
.tag-pembangunan { background: #F3E9FB; color: #8036BF; }

.card-body h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
    color: var(--teks-gelap);
}

.card-body p {
    font-size: 0.88rem;
    color: var(--teks-abu);
    margin-bottom: 14px;
    flex: 1;
    text-align: justify;
    text-justify: inter-word;
}

.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--teks-abu);
    margin-top: auto;
}

.rating {
    color: var(--oranye-gelap);
    font-weight: 700;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--hijau);
    background: #E7F3E9;
    padding: 6px 13px;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 1.3;
}

.card-link-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: auto;
    padding-top: 6px;
}

.card-link-map {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--oranye-gelap);
    background: #FBEEDD;
    padding: 6px 13px;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 1.3;
    transition: background 0.2s ease, color 0.2s ease;
}

.card-link-map i {
    font-size: 0.75rem;
}

.card-link-map:hover {
    background: var(--oranye-gelap);
    color: var(--putih);
}

.card-date {
    font-size: 0.78rem;
    color: var(--teks-abu);
}

.section-footer-link {
    text-align: center;
    margin-top: 34px;
}

.section-footer-link a {
    color: var(--oranye-gelap);
    font-weight: 600;
    font-size: 0.94rem;
}

.section-footer-link a:hover {
    text-decoration: underline;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px;
    background: #2FBF71;
    color: var(--putih);
    border-radius: 9px;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-whatsapp:hover {
    background: #269b5c;
}

/* section backgrounds */
.bg-krem { background: var(--krem); }
.bg-putih { background: var(--putih); }
.bg-krem-tua { background: var(--krem-tua); }

/* =====================  PROFIL SINGKAT (beranda)  ===================== */
.profil-singkat {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 50px;
    align-items: center;
}

.profil-foto {
    text-align: center;
}

.avatar-circle {
    box-sizing: border-box;
    width: 150px;
    height: 150px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hijau) 0%, var(--hijau-tua) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--putih);
    font-size: 3rem;
    margin: 0 auto 14px;
    border: 4px solid var(--oranye);
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
}

.badge-jabatan {
    display: inline-block;
    background: var(--hijau-tua);
    color: var(--putih);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.profil-foto h4 {
    font-size: 1.02rem;
    color: var(--teks-gelap);
}

.profil-foto small {
    color: var(--teks-abu);
    font-size: 0.8rem;
}

.profil-teks h3 {
    color: var(--hijau-tua);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.profil-teks p {
    color: var(--teks-abu);
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-word;
}

.mini-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.mini-stat {
    background: var(--krem-tua);
    border-radius: 10px;
    padding: 12px 18px;
    flex: 1;
    min-width: 150px;
}

.mini-stat .label {
    font-size: 0.72rem;
    color: var(--teks-abu);
    display: block;
}

.mini-stat .value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--hijau-tua);
}

/* =====================  MAP  ===================== */
.map-wrap {
    width: 100%;
    height: 340px;
    border: none;
    display: block;
}

/* =====================  FOOTER  ===================== */
footer.site-footer {
    background: var(--hijau-tua);
    color: #d8e6dd;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-brand .logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--oranye);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hijau-tua);
    flex-shrink: 0;
    overflow: hidden;
}

.footer-brand .logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.footer-brand h4 {
    color: var(--putih);
    font-size: 0.98rem;
}

.footer-brand span {
    font-size: 0.75rem;
    color: #b9ccc0;
}

.footer-col h5 {
    color: var(--putih);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.86rem;
    color: #cfe0d6;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--oranye);
}

.footer-kontak li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.86rem;
    color: #cfe0d6;
    align-items: flex-start;
}

.footer-kontak li i {
    color: var(--oranye);
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--putih);
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-facebook { background: #3b5998; }
.social-youtube { background: #FF0000; }
.social-whatsapp { background: #25D366; }

.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 0;
    font-size: 0.8rem;
    color: #9fb5a8;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: nowrap;   
    flex-shrink: 0;
}

.footer-bottom-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    background:transparent;
    padding: 0;
    border-radius: 0;
    flex-shrink: 0;     
}

@media (max-width: 480px) {
    .footer-bottom-logos { gap: 10px; }
    .footer-bottom-logos img { height: 30px; padding: 3px 6px; }
}
/* =====================  PAGE HERO (halaman dalam)  ===================== */
.page-hero {
    background: linear-gradient(135deg, var(--hijau) 0%, var(--hijau-tua) 100%);
    color: var(--putih);
    padding: 70px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero .eyebrow { color: var(--oranye); }

.page-hero h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero p {
    color: #dbe8e0;
    max-width: 900px;
}

.wave-divider {
    position: relative;
    margin-top: -60px;
    margin-bottom: -2px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* =====================  PROFIL DESA — Sejarah  ===================== */
.sejarah-wrap {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 50px;
    align-items: start;
}

.sejarah-icon {
    text-align: center;
}

.icon-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.icon-ring .icon-ring-inner {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--hijau);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--putih);
    font-size: 2.2rem;
    overflow: hidden;
}


.icon-ring .icon-ring-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.sejarah-icon h4 {
    color: var(--teks-gelap);
    font-size: 1rem;
}

.sejarah-icon small {
    color: var(--teks-abu);
}

.sejarah-teks .eyebrow { color: var(--oranye-gelap); }

.sejarah-teks h3 {
    color: var(--hijau-tua);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.sejarah-teks p {
    color: var(--teks-abu);
    font-size: 0.95rem;
    margin-bottom: 14px;
    text-align: justify;
    text-justify: inter-word;
}

.sejarah-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.sejarah-stat {
    background: var(--krem-tua);
    border-radius: 10px;
    padding: 16px 10px;
    text-align: center;
}

.sejarah-stat strong {
    display: block;
    color: var(--hijau-tua);
    font-size: 1.2rem;
}

.sejarah-stat span {
    font-size: 0.75rem;
    color: var(--oranye-gelap);
    font-weight: 700;
}

.sejarah-stat small {
    display: block;
    font-size: 0.72rem;
    color: var(--teks-abu);
}

/* =====================  VISI MISI  ===================== */
.visimisi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.visi-card {
    background: linear-gradient(160deg, var(--hijau) 0%, var(--hijau-tua) 100%);
    color: var(--putih);
    border-radius: var(--radius);
    padding: 32px;
}

.visi-card .icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--oranye);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hijau-tua);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.visi-card h4 {
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.visi-card p {
    font-style: normal !important;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

.misi-card {
    background: var(--krem-tua);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.misi-card .icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--krem-tua);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oranye-gelap);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.misi-card h4 {
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: var(--hijau-tua);
}

.misi-card p {
    font-size: 0.95rem;
    color: var(--teks-abu);
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
}

/* =====================  STRUKTUR ORGANISASI (GAMBAR)  ===================== */
.struktur-gambar-wrap {
    text-align: center;
    overflow: hidden;
}

.struktur-gambar-wrap img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: zoom-in;
    display: block;
    margin: 0 auto;
    margin-top: 3%;   
    margin-bottom: 5%;  
}

.struktur-gambar-caption {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--teks-abu);
}

.struktur-gambar-caption i { color: var(--oranye-gelap); margin-right: 4px; }

.org-help {
    text-align: center;
    background: var(--krem-tua);
    color: var(--teks-abu);
    font-size: 0.9rem;
    padding: 18px;
    border-radius: 12px;
    margin-top: 30px;
}

/* ---------- Lightbox sederhana untuk zoom ---------- */
.img-lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 14, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 30px;
    cursor: zoom-out;
}
.img-lightbox-overlay.open { display: flex; }
.img-lightbox-overlay img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.img-lightbox-close {
    position: fixed;
    top: 20px;
    right: 26px;
    color: var(--putih);
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
}

.section-struktur {
    padding-top: 0;
}
.section-struktur .section-header {
    margin-bottom: 4px;
}
.section-struktur .section-header h2 {
    padding-bottom: 4px;
}
/* =====================  GALERI  ===================== */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 160px);
    gap: 14px;
}

.galeri-grid .g-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    color: var(--putih);
    display: flex;
    align-items: flex-end;
    padding: 12px;
    font-size: 0.82rem;
    font-weight: 600;
}

.galeri-grid .g-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.galeri-grid .g-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
    z-index: 0;
}

.galeri-grid .g-item span {
    position: relative;
    z-index: 1;
}

.g-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 992px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid-potensi .card { flex: 0 1 calc((100% - 26px) / 2); }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .profil-singkat, .sejarah-wrap { grid-template-columns: 1fr; text-align: center; }
    .visimisi-grid, .tujuan-grid { grid-template-columns: 1fr; }
    .galeri-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 160px); }
    .g-item.big { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--hijau-tua);
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        display: none;
        gap: 2px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-menu.open { display: flex; }
    .navbar-menu > li > a, .navbar-menu > li > .dropdown-toggle { width: 100%; justify-content: space-between; }
    .dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; background: rgba(255,255,255,0.06); }
    .dropdown-menu.open { display: block; }
    .navbar-menu li:hover .dropdown-menu { display: none; }
    .navbar-menu li:hover .dropdown-menu.open { display: block; }
    .nav-toggle { display: block; }
    .card-grid { grid-template-columns: 1fr; }
    .card-grid-potensi .card { flex: 0 1 100%; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .hero-content h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .galeri-grid { grid-template-columns: 1fr; grid-template-rows: repeat(8, 160px); }
    .g-item.big { grid-column: span 1; }
    .sejarah-stats { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   HALAMAN ADMINISTRASI
   ===================================================================== */

/* ---------- Kartu ringkasan APBDes ---------- */
/* ---------- Panel rincian APBDes (Pelaksanaan / Pendapatan / Belanja) ---------- */
.apbdes-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 30px;
    align-items: start;
}

.apbdes-panel {
    background: var(--putih);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px 24px;
}

.apbdes-panel-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--krem-tua);
}

.apbdes-panel-subtitle {
    display: block;
    font-size: 0.76rem;
    font-weight: 400;
    color: var(--teks-abu);
    text-transform: none;
    letter-spacing: normal;
    margin-top: -10px;
    margin-bottom: 16px;
}

/* ---------- Kotak scroll khusus daftar item APBDes ---------- */
.apbdes-items-scroll {
    height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: #c9c2ac transparent;
}
.apbdes-items-scroll::-webkit-scrollbar { width: 6px; }
.apbdes-items-scroll::-webkit-scrollbar-track { background: transparent; }
.apbdes-items-scroll::-webkit-scrollbar-thumb { background: #c9c2ac; border-radius: 10px; }
.apbdes-items-scroll::-webkit-scrollbar-button { display: none; height: 0; }

.panel-hijau .apbdes-panel-title { color: var(--hijau); }
.panel-biru .apbdes-panel-title { color: #2F5FBF; }
.panel-oranye .apbdes-panel-title { color: #D9480F; }

.apbdes-item { margin-bottom: 20px; }
.apbdes-item:last-child { margin-bottom: 0; }

.apbdes-item-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--teks-gelap);
    margin-bottom: 8px;
}

.apbdes-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--teks-abu);
    margin-bottom: 6px;
}

.apbdes-bar-track {
    position: relative;
    width: 100%;
    height: 32px;
    border-radius: 20px;
    background: var(--krem-tua);
    overflow: hidden;
}

.apbdes-bar-realisasi {
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--putih);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    transition: width .3s ease;
}

.panel-hijau .apbdes-bar-realisasi { background: var(--hijau); }
.panel-biru .apbdes-bar-realisasi { background: #2F5FBF; }
.panel-oranye .apbdes-bar-realisasi { background: var(--oranye-gelap); }

.apbdes-bar-caption {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    margin-top: 6px;
    color: var(--teks-abu);
}

.apbdes-bar-caption .cap-real { font-weight: 700; }
.panel-hijau .cap-real { color: var(--hijau); }
.panel-biru .cap-real { color: #2F5FBF; }
.panel-oranye .cap-real { color: #D9480F; }
.apbdes-bar-caption .cap-ang { color: var(--teks-abu); }

/* ---------- Tabel APBDes ---------- */
/* ---------- Tabel APBDes ---------- */
.apbdes-table-wrap {
    background: var(--putih);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.apbdes-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 560px;
    table-layout: fixed;
}

.apbdes-table th:nth-child(1), .apbdes-table td:nth-child(1) { width: 12%; }
.apbdes-table th:nth-child(2), .apbdes-table td:nth-child(2) { width: 24%; }
.apbdes-table th:nth-child(3), .apbdes-table td:nth-child(3) { width: 24%; }
.apbdes-table th:nth-child(4), .apbdes-table td:nth-child(4) { width: 24%; }
.apbdes-table th:nth-child(5), .apbdes-table td:nth-child(5) { width: 16%; }

.apbdes-table thead tr { background: var(--hijau-tua); }

.apbdes-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--hijau-tua);
    color: var(--putih);
    font-size: 0.82rem;
    font-weight: 600;
    text-align: left;
    padding: 14px 20px;
    box-shadow: 0 1px 0 var(--hijau-tua);
}

.apbdes-table tbody td {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--teks-gelap);
    border-bottom: 1px solid var(--krem-tua);
}

.apbdes-table tbody tr:last-child td { border-bottom: none; }

.apbdes-table tbody tr:nth-child(odd) {
    background: rgba(247, 242, 231, 0.4);
}

.apbdes-table .surplus-val { color: var(--oranye-gelap); font-weight: 700; }
.apbdes-table .surplus-val.surplus-minus { color: #D64545; }

.status-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
}
.status-berjalan { background: #FDEFE0; color: var(--oranye-gelap); }
.status-selesai { background: #E7F3E9; color: var(--hijau); }

/* Kotak scroll (bungkus tabel, bukan tabel terpisah) */
.apbdes-table-scroll {
    max-height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--hijau) transparent;
}
.apbdes-table-scroll::-webkit-scrollbar { width: 6px; }
.apbdes-table-scroll::-webkit-scrollbar-track { background: transparent; margin: 0; }
.apbdes-table-scroll::-webkit-scrollbar-thumb { background: var(--hijau); border-radius: 10px; }
.apbdes-table-scroll::-webkit-scrollbar-button { display: none; height: 0; }


/* ---------- Catatan info ---------- */
.info-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #FDEFE0;
    border: 1px solid #f4d8a6;
    color: var(--oranye-gelap);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.85rem;
    margin-top: 22px;
}

.info-note i { margin-top: 2px; }

/* ---------- Prosedur pelayanan ---------- */
.prosedur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prosedur-card {
    background: var(--putih);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px 24px;
    position: relative;
    overflow: hidden;
}

.prosedur-card .prosedur-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--hijau-tua);
    color: var(--putih);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.prosedur-card:nth-child(even) .prosedur-no { background: var(--oranye); color: var(--hijau-tua); }

.prosedur-card h4 {
    position: relative;
    font-size: 1.02rem;
    color: var(--teks-gelap);
    margin-bottom: 8px;
    z-index: 1;
}

.prosedur-card p {
    position: relative;
    font-size: 0.85rem;
    color: var(--teks-abu);
    z-index: 1;
}

.prosedur-card p.prosedur-ringkas {
    color: var(--teks-gelap);
    font-weight: 500;
    margin-bottom: 8px;
}

/* ---------- Persyaratan layanan ---------- */
.syarat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.syarat-card {
    background: var(--putih);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 24px 22px;
    border-top: 4px solid var(--hijau);
    display: flex;
    flex-direction: column;
}

.syarat-1 { border-top-color: var(--hijau); }
.syarat-2 { border-top-color: #2F5FBF; }
.syarat-3 { border-top-color: var(--oranye-gelap); }
.syarat-4 { border-top-color: #DB2777; }
.syarat-5 { border-top-color: #8036BF; }
.syarat-6 { border-top-color: var(--hijau-tua); }

.syarat-card .syarat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.syarat-1 .syarat-icon { background: #E7F3E9; color: var(--hijau); }
.syarat-2 .syarat-icon { background: #E6EEFB; color: #2F5FBF; }
.syarat-3 .syarat-icon { background: #FDEFE0; color: var(--oranye-gelap); }
.syarat-4 .syarat-icon { background: #FCE7F3; color: #DB2777; }
.syarat-5 .syarat-icon { background: #F3E9FB; color: #8036BF; }
.syarat-6 .syarat-icon { background: #E7F3E9; color: var(--hijau-tua); }

.syarat-card h4 {
    font-size: 1rem;
    color: var(--teks-gelap);
    margin-bottom: 12px;
}

.syarat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--teks-abu);
    margin-bottom: 8px;
}

.syarat-card ul {
    flex: 1;
    max-height: 130px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 16px;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: #c9c2ac transparent;
}
.syarat-card ul::-webkit-scrollbar { width: 6px; }
.syarat-card ul::-webkit-scrollbar-track { background: transparent; }
.syarat-card ul::-webkit-scrollbar-thumb { background: #c9c2ac; border-radius: 10px; }

.syarat-card ul li {
    font-size: 0.85rem;
    color: var(--teks-gelap);
    padding-left: 20px;
    position: relative;
    margin-bottom: 7px;
}

.syarat-card ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--hijau);
    font-size: 0.78rem;
}

.syarat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--teks-abu);
    border-top: 1px solid var(--krem-tua);
    padding-top: 12px;
}

.syarat-footer strong {
    display: block;
    color: var(--teks-gelap);
    font-size: 0.85rem;
}

.syarat-footer .syarat-biaya {
    color: var(--hijau);
    font-weight: 700;
}

/* ---------- Banner Smart Kampung (fix) ---------- */
.smart-kampung-card {
    background: var(--hijau);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 50px 40px;
    text-align: center;
}

.smart-kampung-card .sk-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--oranye);
    color: var(--hijau-tua);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.smart-kampung-card h3 {
    color: var(--putih);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.smart-kampung-card p {
    color: #d8e6dd;
    font-size: 0.94rem;
    max-width: 640px;
    margin: 0 auto 26px;
}

.smart-kampung-card .btn-solid {
    display: inline-flex;
}

/* ---------- Responsive administrasi ---------- */
@media (max-width: 992px) {
    .apbdes-panel-grid { grid-template-columns: 1fr; }
    .prosedur-grid { grid-template-columns: repeat(2, 1fr); }
    .syarat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .prosedur-grid { grid-template-columns: 1fr; }
    .syarat-grid { grid-template-columns: 1fr; }
    .apbdes-table { min-width: 700px; }
}

/* =====================================================================
   HALAMAN PRODUK HUKUM
   ===================================================================== */

.info-note-green {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #E7F3E9;
    border: 1px solid #bfe3c9;
    color: var(--hijau-tua);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.85rem;
    margin-bottom: 22px;
}
.info-note-green i { margin-top: 2px; }

/* ---------- Tabel produk hukum ---------- */
.hukum-table-wrap {
    background: var(--putih);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    overflow-x: auto;
    margin-bottom: 24px;
}

.hukum-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

.hukum-table thead tr { background: var(--hijau-tua); }

.hukum-table thead th {
    color: var(--putih);
    font-size: 0.82rem;
    font-weight: 600;
    text-align: left;
    padding: 14px 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.hukum-table thead th:last-child {
    border-right: none;
}

.hukum-table tbody td {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--teks-gelap);
    border-bottom: 1px solid var(--krem-tua);
    border-right: 1px solid var(--krem-tua);
}

.hukum-table tbody td:last-child {
    border-right: none;
}

.hukum-table tbody tr:last-child td { border-bottom: none; }
.hukum-table tbody tr:nth-child(odd) { background: rgba(247, 242, 231, 0.4); }

.hukum-table .no-peraturan {
    font-weight: 700;
    color: var(--hijau-tua);
    white-space: nowrap;
}

.hukum-doc-link {
    color: var(--hijau);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ---------- Status "Berlaku" ---------- */
.status-berlaku { background: #E7F3E9; color: var(--hijau); }

/* ---------- Badge kategori (Surat Keputusan) ---------- */
.kategori-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}
.kat-kepegawaian  { background: #E7F3E9; color: var(--hijau); }
.kat-kegiatan     { background: #FDEFE0; color: var(--oranye-gelap); }
.kat-sosial       { background: #E6EEFB; color: #2F5FBF; }
.kat-kelembagaan  { background: #F3E9FB; color: #8036BF; }
.kat-administrasi { background: #E0F7FA; color: #0891B2; }

/* ---------- Banner "Buka JDIH Banyuwangi" ---------- */
.hukum-banner {
    background: var(--hijau-tua);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hukum-banner-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    color: var(--putih);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hukum-banner-text { flex: 1; min-width: 220px; }
.hukum-banner-text h4 { color: var(--putih); font-size: 1.05rem; margin-bottom: 4px; }
.hukum-banner-text p { color: #d8e6dd; font-size: 0.85rem; }
.hukum-banner .btn-solid { flex-shrink: 0; white-space: nowrap; }

/* ---------- Responsive produk hukum ---------- */
@media (max-width: 768px) {
    .hukum-table { min-width: 600px; }
    .hukum-banner { flex-direction: column; text-align: center; }
}


/* =====================  LEMBAGA DESA PAGE  ===================== */

/* -- Tugas & Fungsi box (BPD) -- */
.tugas-box {
    background: #E7F3E9;
    border-radius: var(--radius);
    padding: 26px 28px;
    margin-bottom: 34px;
}
.tugas-box-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.tugas-box-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--hijau);
    color: var(--putih);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.tugas-box-head h4 { color: var(--hijau-tua); font-size: 1.02rem; }
.tugas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    list-style: none;
}
.tugas-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--teks-gelap);
    font-size: 0.9rem;
    line-height: 1.5;
}
.tugas-list li i { color: var(--hijau); margin-top: 4px; flex-shrink: 0; }

/* -- BPD member grid -- */
.anggota-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}
.anggota-card {
    background: var(--putih);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px 14px 20px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.anggota-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(30,75,51,0.14); }
.anggota-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hijau) 0%, var(--hijau-tua) 100%);
    color: var(--putih);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 12px;
}
.anggota-card h5 { font-size: 0.92rem; color: var(--teks-gelap); margin-bottom: 3px; }
.anggota-jabatan { display: block; font-size: 0.78rem; color: var(--hijau); font-weight: 600; margin-bottom: 10px; }
.anggota-komisi {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: #E7F3E9;
    color: var(--hijau);
}

/* -- RT & RW stats -- */
.rtrw-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}
.rtrw-stat-card {
    background: var(--putih);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    text-align: center;
}
.rtrw-stat-card i { font-size: 1.3rem; color: var(--hijau); margin-bottom: 10px; }
.rtrw-stat-card strong { display: block; font-size: 1.5rem; color: var(--hijau-tua); }
.rtrw-stat-card span { font-size: 0.78rem; color: var(--teks-abu); }

/* -- RW cards -- */
.rw-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.rw-card {
    background: var(--putih);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.rw-card-head {
    background: var(--hijau-tua);
    color: var(--putih);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.rw-card-head h5 { font-size: 0.95rem; margin-bottom: 2px; }
.rw-card-head span { font-size: 0.76rem; color: #cfe3d6; }
.rw-wa-btn {
    background: #25D366;
    color: var(--putih);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}
.rw-wa-btn:hover { background: #1fb055; }
.rt-list { padding: 6px 0; }
.rt-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 18px;
    border-bottom: 1px solid var(--krem-tua);
}
.rt-item:last-child { border-bottom: none; }
.rt-left { display: flex; align-items: center; gap: 12px; }
.rt-no {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #E7F3E9;
    color: var(--hijau);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rt-item strong { display: block; font-size: 0.85rem; color: var(--teks-gelap); font-weight: 600; }
.rt-item small { color: var(--teks-abu); font-size: 0.76rem; }
.rt-hubungi {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--hijau);
    background: #E7F3E9;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.rt-hubungi:hover { background: var(--hijau); color: var(--putih); }

/* -- Dusun cards -- */
.dusun-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.dusun-card {
    background: var(--putih);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.dusun-photo {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--putih);
    font-size: 2.2rem;
}
.dusun-body { padding: 20px 22px 24px; }
.dusun-body h4 { color: var(--hijau-tua); font-size: 1.05rem; margin-bottom: 8px; }
.dusun-body > p { color: var(--teks-abu); font-size: 0.86rem; margin-bottom: 14px; }
.dusun-kadus {
    background: #E7F3E9;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.dusun-kadus i { color: var(--hijau); }
.dusun-kadus span { display: block; font-size: 0.68rem; color: var(--teks-abu); }
.dusun-kadus strong { font-size: 0.86rem; color: var(--hijau-tua); }
.dusun-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.dusun-stats div { background: var(--krem-tua); border-radius: 10px; padding: 10px; text-align: center; }
.dusun-stats strong { display: block; font-size: 1.1rem; color: var(--hijau-tua); }
.dusun-stats span { font-size: 0.68rem; color: var(--teks-abu); }

/* -- PKK -- */
.pkk-wrap {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 50px;
    align-items: start;
}
.pkk-foto { text-align: center; }
.pkk-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #DB2777;
    color: var(--putih);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin: 0 auto 14px;
}
.pkk-foto h4 { font-size: 1rem; color: var(--teks-gelap); }
.pkk-foto small { font-size: 0.8rem; color: #DB2777; font-weight: 600; display: block; }
.pkk-teks > p { color: var(--teks-abu); font-size: 0.92rem; margin-bottom: 20px; }
.pkk-teks h4 { color: var(--hijau-tua); font-size: 0.98rem; margin-bottom: 16px; }
.pokja-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.pokja-card { background: var(--krem-tua); border-radius: 12px; padding: 18px 20px; }
.pokja-card strong { display: block; color: #DB2777; font-size: 0.82rem; margin-bottom: 4px; }
.pokja-card h5 { font-size: 0.88rem; color: var(--teks-gelap); margin-bottom: 10px; }
.pokja-card ul { list-style: none; }
.pokja-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--teks-abu);
    margin-bottom: 6px;
}
.pokja-card ul li i { color: #DB2777; margin-top: 3px; font-size: 0.7rem; }

/* -- BUMDes -- */
.bumdes-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}
.bumdes-stat-card {
    background: var(--putih);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
    text-align: center;
}
.bumdes-stat-card i { color: var(--hijau); font-size: 1.2rem; margin-bottom: 8px; }
.bumdes-stat-card strong { display: block; font-size: 1.3rem; color: var(--hijau-tua); }
.bumdes-stat-card span { font-size: 0.75rem; color: var(--teks-abu); }

.bumdes-unit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 26px;
}
.bumdes-unit-card {
    background: var(--putih);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
    border-top: 4px solid var(--hijau);
}
.unit-hijau { border-top-color: var(--hijau); }
.unit-biru { border-top-color: #2F5FBF; }
.unit-oranye { border-top-color: var(--oranye-gelap); }
.bumdes-unit-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.unit-hijau .bumdes-unit-icon { background: #E7F3E9; color: var(--hijau); }
.unit-biru .bumdes-unit-icon { background: #E6EEFB; color: #2F5FBF; }
.unit-oranye .bumdes-unit-icon { background: #FDEFE0; color: var(--oranye-gelap); }
.bumdes-unit-card h5 { font-size: 0.95rem; color: var(--teks-gelap); margin-bottom: 8px; }
.bumdes-unit-card p { font-size: 0.84rem; color: var(--teks-abu); margin-bottom: 14px; }
.bumdes-unit-omzet { font-size: 0.78rem; color: var(--teks-abu); }
.bumdes-unit-omzet strong { color: var(--oranye-gelap); font-size: 0.9rem; }

/* -- Responsive -- */
@media (max-width: 900px) {
    .anggota-grid { grid-template-columns: repeat(3, 1fr); }
    .rw-grid { grid-template-columns: 1fr; }
    .dusun-grid { grid-template-columns: 1fr; }
    .pkk-wrap { grid-template-columns: 1fr; }
    .pokja-grid { grid-template-columns: 1fr; }
    .bumdes-unit-grid { grid-template-columns: 1fr; }
    .rtrw-stats, .bumdes-stats { grid-template-columns: repeat(2, 1fr); }
    .tugas-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .anggota-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================  UMKM PAGE  ===================== */
.umkm-intro-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.umkm-intro-tags .tag { margin-bottom: 0; }

.umkm-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}
.umkm-stat-card {
    background: var(--putih);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.umkm-stat-card .umkm-stat-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: #FDEFE0; color: var(--oranye-gelap);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.umkm-stat-card strong { display: block; font-size: 1.25rem; color: var(--hijau-tua); }
.umkm-stat-card span { font-size: 0.78rem; color: var(--teks-abu); }

.umkm-filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.umkm-pill {
    padding: 9px 20px; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
    background: var(--putih); color: var(--teks-abu); border: 1px solid #e5e0d3;
    cursor: pointer; transition: all 0.2s ease;
}
.umkm-pill.active, .umkm-pill:hover { background: var(--hijau-tua); color: var(--putih); border-color: var(--hijau-tua); }

.umkm-card-owner {
    display: flex; justify-content: space-between; font-size: 0.76rem;
    color: var(--teks-abu); margin-bottom: 14px; padding-top: 12px; border-top: 1px solid var(--krem-tua);
}
.umkm-card-owner strong { display: block; color: var(--teks-gelap); font-size: 0.84rem; font-weight: 600; }

@media (max-width: 700px) {
    .umkm-stats-row { grid-template-columns: 1fr; }
}

/* =====================  MODAL PENDAFTARAN UMKM  ===================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 22, 0.55);
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.open { display: flex; }

.umkm-modal {
    background: var(--putih);
    border-radius: 18px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.umkm-modal-header {
    background: linear-gradient(135deg, var(--hijau) 0%, var(--hijau-tua) 100%);
    color: var(--putih);
    padding: 24px 26px 20px;
    position: relative;
    flex-shrink: 0;
}
.umkm-modal-header .eyebrow { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 4px; }
.umkm-modal-header h3 { font-size: 1.3rem; color: var(--putih); margin-bottom: 18px; }

.umkm-modal-close {
    position: absolute;
    top: 20px; right: 22px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--putih);
    width: 30px; height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}
.umkm-modal-close:hover { background: rgba(255,255,255,0.3); }

.umkm-stepper { display: flex; align-items: center; }
.umkm-step-item { display: flex; align-items: center; gap: 8px; opacity: 0.55; }
.umkm-step-item.active, .umkm-step-item.done { opacity: 1; }
.umkm-step-circle {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    color: var(--putih);
    font-size: 0.76rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.umkm-step-item.active .umkm-step-circle { background: var(--oranye); color: var(--hijau-tua); }
.umkm-step-item.done .umkm-step-circle { background: #ffffff; color: var(--hijau); }
.umkm-step-label { font-size: 0.82rem; font-weight: 600; color: var(--putih); white-space: nowrap; }
.umkm-step-item.active .umkm-step-label { color: var(--oranye); }
.umkm-step-line { flex: 1; height: 2px; background: rgba(255,255,255,0.25); margin: 0 10px; }

.umkm-modal-body { padding: 24px 26px 28px; overflow-y: auto; }

.umkm-step-panel { display: none; }
.umkm-step-panel.active { display: block; }

.umkm-step-desc { font-size: 0.85rem; color: var(--teks-abu); margin-bottom: 20px; }

.umkm-field { margin-bottom: 18px; }
.umkm-field label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--teks-gelap); margin-bottom: 7px; }
.umkm-field .req { color: #dc2626; }
.umkm-field input,
.umkm-field select,
.umkm-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e5e0d3;
    border-radius: 9px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--teks-gelap);
    background: var(--putih);
    transition: border-color 0.2s ease;
}
.umkm-field input:focus,
.umkm-field select:focus,
.umkm-field textarea:focus { outline: none; border-color: var(--hijau); }
.umkm-field textarea { resize: vertical; }

.umkm-phone-row { display: flex; gap: 10px; }
.umkm-phone-prefix {
    flex-shrink: 0;
    width: 56px;
    display: flex; align-items: center; justify-content: center;
    background: #E7F3E9;
    color: var(--hijau-tua);
    font-weight: 700;
    border-radius: 9px;
    font-size: 0.9rem;
}
.umkm-phone-row input { flex: 1; }

.umkm-modal-actions { display: flex; gap: 12px; margin-top: 8px; }
.umkm-modal-actions.single .btn-umkm-solid { width: 100%; }
.umkm-modal-actions .btn-umkm-outline,
.umkm-modal-actions .btn-umkm-solid { flex: 1; }

.btn-umkm-solid,
.btn-umkm-outline {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}
.btn-umkm-solid { background: var(--hijau-tua); color: var(--putih); }
.btn-umkm-solid:hover { background: var(--hijau); }
.btn-umkm-outline { background: #E7F3E9; color: var(--hijau-tua); }
.btn-umkm-outline:hover { background: #d5ebd9; }

/* -- Step 3: sukses -- */
.umkm-step-success { text-align: center; padding-top: 4px; }
.umkm-success-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #E7F3E9;
    color: var(--hijau);
    font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.umkm-step-success h4 { font-size: 1.2rem; color: var(--teks-gelap); margin-bottom: 10px; }
.umkm-step-success > p { font-size: 0.9rem; color: var(--teks-gelap); margin-bottom: 8px; max-width: 380px; margin-left: auto; margin-right: auto; }
.umkm-success-note { font-size: 0.82rem !important; color: var(--teks-abu) !important; margin-bottom: 22px !important; }

.umkm-ringkasan {
    background: #E7F3E9;
    border-radius: 12px;
    padding: 16px 18px;
    text-align: left;
    margin-bottom: 22px;
}
.umkm-ringkasan-label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; color: var(--hijau); margin-bottom: 10px; }
.umkm-ringkasan-item { display: flex; justify-content: space-between; gap: 10px; font-size: 0.84rem; color: var(--teks-gelap); padding: 5px 0; }
.umkm-ringkasan-item span:first-child { color: var(--teks-abu); }
.umkm-ringkasan-item strong { text-align: right; }

.umkm-step-success .btn-umkm-solid { width: 100%; max-width: 220px; margin: 0 auto; }

@media (max-width: 560px) {
    .umkm-step-label { display: none; }
    .umkm-modal-header h3 { font-size: 1.15rem; }
}

.umkm-upload-box {
    position: relative;
    border: 1.5px dashed #d8d0bd;
    border-radius: 10px;
    background: var(--krem-tua);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    min-height: 140px;
}
.umkm-upload-box:hover { border-color: var(--hijau); background: #eef4f0; }

.umkm-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 28px 16px;
    color: var(--teks-abu);
    text-align: center;
}
.umkm-upload-placeholder i { font-size: 1.6rem; color: var(--hijau); }
.umkm-upload-placeholder span { font-size: 0.88rem; font-weight: 600; color: var(--teks-gelap); }
.umkm-upload-placeholder small { font-size: 0.74rem; }

.umkm-upload-preview {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 9px;
    overflow: hidden;
}
.umkm-upload-preview img { width: 100%; height: 100%; object-fit: cover; }
.umkm-upload-remove {
    position: absolute; top: 8px; right: 8px;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(0,0,0,0.55); color: #fff; border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 0.8rem;
}
/* =====================  HALAMAN BERITA & PENGUMUMAN  ===================== */
.tag-ekonomi { background: #FDEFE0; color: var(--oranye-gelap); }
.tag-pendidikan { background: #E7F3E9; color: var(--hijau); }
.tag-keuangan { background: #E7F3E9; color: var(--hijau); }

.berita-utama-card {
    display: flex;
    gap: 0;
    background: var(--putih);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.berita-utama-img {
    flex: 0 0 40%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--putih);
    font-size: 2.6rem;
}

.berita-utama-body {
    flex: 1;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.berita-utama-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.berita-utama-body h3 {
    font-size: 1.3rem;
    color: var(--teks-gelap);
}

.berita-utama-body p {
    color: var(--teks-abu);
    font-size: 0.94rem;
}

.berita-utama-img img,
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.berita-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 26px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.berita-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.papan-pengumuman {
    background: var(--putih);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.papan-header {
    background: var(--oranye);
    color: var(--hijau-tua);
    font-weight: 700;
    text-align: center;
    padding: 12px;
}

.papan-body {
    padding: 6px 18px;
}

.peng-item {
    padding: 14px 0;
    border-bottom: 1px solid #EFEAE0;
}

.peng-item:last-child {
    border-bottom: none;
}

.peng-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.peng-date {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--hijau-tua);
}

.peng-title {
    font-size: 0.86rem;
    color: var(--teks-gelap);
    line-height: 1.4;
}

.peng-bantuan { background: #FBE3EA; color: #C2185B; }
.peng-pelayanan { background: #E6EEFB; color: #2F5FBF; }
.peng-umum { background: #E7F3E9; color: var(--hijau); }
.peng-lowongan { background: #EAF3EE; color: #2E7D5B; }

.kategori-berita-box {
    background: var(--putih);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
}

.kategori-berita-box h5 {
    font-size: 0.95rem;
    color: var(--teks-gelap);
    margin-bottom: 12px;
}

.kategori-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 6px;
    border-bottom: 1px solid #EFEAE0;
    color: var(--teks-gelap);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.kategori-item:last-child {
    border-bottom: none;
}

.kategori-item i {
    font-size: 0.75rem;
    color: var(--teks-abu);
}

.kategori-item:hover {
    color: var(--oranye-gelap);
}

@media (max-width: 900px) {
    .berita-utama-card { flex-direction: column; }
    .berita-utama-img { min-height: 180px; }
    .berita-layout { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .berita-sidebar { position: static; }
}

/* =====================  DETAIL ARTIKEL BERITA  ===================== */
.artikel-breadcrumb-section {
    padding: 22px 0 0;
}

.artikel-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--teks-abu);
}

.artikel-breadcrumb a { color: var(--teks-abu); }
.artikel-breadcrumb a:hover { color: var(--oranye-gelap); }
.artikel-breadcrumb i { font-size: 0.6rem; }
.artikel-breadcrumb span { color: var(--hijau-tua); font-weight: 600; }

.artikel-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.artikel-judul {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--teks-gelap);
    margin: 14px 0 16px;
    line-height: 1.3;
}

.artikel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.85rem;
    color: var(--teks-abu);
    border-bottom: 1px solid #EFEAE0;
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.artikel-meta i { margin-right: 5px; color: var(--oranye-gelap); }

.artikel-cover {
    width: 100%;
    height: 340px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--putih);
    font-size: 3.4rem;
    margin-bottom: 26px;
}

.artikel-cover.has-image {
    height: auto;
    background: none !important;
    display: block;
}
.artikel-cover.has-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    object-fit: contain;
}

.artikel-body p {
    font-size: 1rem;
    color: #3a3a34;
    margin-bottom: 18px;
    line-height: 1.8;
    text-align: justify;
}

.artikel-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 0;
    border-top: 1px solid #EFEAE0;
    margin-top: 10px;
}

.artikel-share span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--teks-gelap);
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--putih);
    font-size: 0.9rem;
}

.share-wa { background: #2FBF71; }
.share-fb { background: #2F5FBF; }
.share-copy { background: var(--teks-abu); }

.artikel-kembali {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--oranye-gelap);
    font-size: 0.92rem;
}

.artikel-kembali:hover { text-decoration: underline; }

/* =====================  MUSIC TOGGLE  ===================== */
.music-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(20, 40, 30, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 999;
    transition: background .2s ease, transform .2s ease;
}

.music-toggle:hover {
    background: rgba(20, 40, 30, 0.75);
    transform: scale(1.06);
}

.music-toggle.playing {
    animation: musicPulseSubtle 2.4s ease-in-out infinite;
}

@keyframes musicPulseSubtle {
    0%, 100% { box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
    50% { box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 0 0 6px rgba(255,255,255,0.08); }
}

@media (max-width: 640px) {
    p {
        text-align: left;
    }
}
/* =====================  INDEKS KEPUASAN PENGGUNA  ===================== */
.ikm-section {
    margin-top: 40px !important;
    display: block !important;
}

.ikm-section h5 {
    color: var(--putih);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.ikm-desc {
    font-size: 0.8rem;
    color: #b9ccc0;
    margin-bottom: 14px;
    line-height: 1.5;
}

.ikm-widget {
    display: flex;
    gap: 8px;
}

.ikm-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 12px 6px;
    cursor: pointer;
    flex: 1;
    min-width: 0;
    transition: all 0.2s ease;
    font-family: inherit;
}

.ikm-btn .ikm-emoji {
    font-size: 1.3rem;
    line-height: 1;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.2s ease;
}

.ikm-btn .ikm-label {
    font-size: 0.66rem;
    font-weight: 700;
    color: #cfe0d6;
    white-space: nowrap;
}

.ikm-btn:hover:not(:disabled) {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.ikm-btn:hover:not(:disabled) .ikm-emoji {
    filter: grayscale(0%);
    opacity: 1;
}

.ikm-btn.selected {
    background: var(--oranye);
    border-color: var(--oranye);
}

.ikm-btn.selected .ikm-emoji {
    filter: grayscale(0%);
    opacity: 1;
}

.ikm-btn.selected .ikm-label {
    color: var(--hijau-tua);
}

.ikm-btn:disabled {
    cursor: default;
}

.ikm-widget.locked .ikm-btn:not(.selected) {
    opacity: 0.35;
}

.ikm-widget.locked .ikm-btn:not(.selected):hover {
    transform: none;
    background: rgba(255,255,255,0.06);
}

.ikm-feedback {
    font-size: 0.78rem;
    color: var(--oranye);
    font-weight: 600;
    margin-top: 12px;
    line-height: 1.5;
}