/* ================================================= */
/*                     BASE                          */
/* ================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    animation: fadeIn 0.7s ease-in-out;
}

.hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================= */
/*                 GLOBAL COMPONENTS                 */
/* ================================================= */

/* --- SECTION TITLES --- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title span {
    color: #2E7D32;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section-title h2 {
    font-size: 42px;
    color: #222;
    margin: 15px 0;
    font-weight: 700;
}
.section-title p {
    width: 70%;
    margin: auto;
    color: #666;
    line-height: 30px;
}

/* --- BUTTONS --- */
.btn {
    background: #2E7D32;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: .35s;
}
.btn:hover {
    background: #1B5E20;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(46,125,50,.3);
}

.btn2 {
    border: 2px solid white;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: .35s;
}
.btn2:hover {
    background: white;
    color: #2E7D32;
    transform: translateY(-5px);
}

.active {
    background: #2E7D32;
    color: white !important;
    padding: 10px 18px;
    border-radius: 30px;
}
.active::after {
    display: none;
}

/* ================================================= */
/*                    HEADER                         */
/* ================================================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    transition: .4s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,.1);
}

header.scrolled {
    padding: 12px 80px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2E7D32;
    font-weight: bold;
}
.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: .3s;
}
.logo img:hover {
    transform: rotate(10deg) scale(1.1);
}
.logo h2 {
    color: #2E7D32;
    font-size: 28px;
    margin: 0;
}

nav a {
    position: relative;
    text-decoration: none;
    color: black;
    margin-left: 20px;
    font-weight: bold;
    transition: 0.3s;
    padding: 10px 15px;
    border-radius: 30px;
}
nav a:hover {
    background: #E8F5E9;
    color: #2E7D32;
}
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}
nav a:hover::after {
    width: 100%;
}

/* ================================================= */
/*                     HERO                          */
/* ================================================= */

.hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)), url("images/hero.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: heroZoom 15s ease-in-out infinite alternate;
}
.hero-content {
    width: 850px;
    color: white;
    animation: fadeUp 1.2s ease;
}
.hero-subtitle {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 16px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.hero-content h1 {
    font-size: 80px;
    margin-bottom: 20px;
}
.hero-content p {
    width: 80%;
    margin: auto;
    line-height: 34px;
    font-size: 19px;
    margin-bottom: 45px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ================================================= */
/*                   STATISTIK                       */
/* ================================================= */

.statistik {
    width: 85%;
    margin: -70px auto 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 99;
}
.box {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: .35s;
}
.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
}
.box i {
    font-size: 45px;
    color: #2E7D32;
    margin-bottom: 18px;
    transition: .35s;
}
.box:hover i {
    transform: scale(1.2);
}
.box h2 {
    font-size: 38px;
    color: #2E7D32;
    margin-bottom: 10px;
}
.box p {
    color: #777;
    line-height: 28px;
}

/* ================================================= */
/*                 VIDEO PROFIL                      */
/* ================================================= */

.video-section {
    width: 85%;
    margin: 100px auto;
}
.profil-video {
    flex: 1;
    max-width: 480px;
    position: relative;
}
.profil-video video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.sound-btn {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #2E7D32;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
}
.sound-btn:hover {
    background: #1B5E20;
    transform: scale(1.08);
}
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.video-popup video {
    width: 80%;
    max-width: 900px;
    border-radius: 15px;
}
.video-popup span {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 45px;
    cursor: pointer;
}

/* ================================================= */
/*                 TENTANG DESA                      */
/* ================================================= */

.about-home {
    width: 85%;
    margin: 90px auto;
}
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.about-image {
    width: 45%;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transition: .35s;
}
.about-image img:hover {
    transform: scale(1.03);
}
.about-text {
    flex: 1;
}
.section-subtitle {
    display: inline-block;
    color: #2E7D32;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}
.about-text h2 {
    font-size: 42px;
    color: #222;
    margin-bottom: 20px;
}
.about-text p {
    color: #666;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 18px;
}

/* ================================================= */
/*               HALAMAN PROFIL DESA                 */
/* ================================================= */

.profil-hero {
    width: 100%;
    height: 220px;
    background: linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)), url("images/desa.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.overlay h1 {
    color: #fff;
    font-size: 55px;
    margin-bottom: 15px;
}
.overlay p {
    color: #fff;
    font-size: 18px;
}
.overlay i {
    margin: 0 10px;
}

.tentang-desa {
    width: 85%;
    margin: 90px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.tentang-kiri {
    flex: 1;
}
.tentang-kiri img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transition: .4s;
}
.tentang-kiri img:hover {
    transform: scale(1.03);
}
.tentang-kanan {
    flex: 1;
}
.judul-kecil {
    color: #2E7D32;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.tentang-kanan h2 {
    font-size: 42px;
    color: #2E7D32;
    margin: 15px 0 25px;
}
.tentang-kanan p {
    color: #555;
    line-height: 32px;
    text-align: justify;
    margin-bottom: 18px;
}

/* --- VISI MISI --- */
.visi-misi {
    width: 85%;
    margin: 20px auto 90px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}
.visi-card, .misi-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .35s;
    border-top: 5px solid #2E7D32;
}
.visi-card:hover, .misi-card:hover {
    transform: translateY(-10px);
}
.visi-card i, .misi-card i {
    width: 70px;
    height: 70px;
    background: #2E7D32;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 20px;
}
.visi-card h2, .misi-card h2 {
    color: #2E7D32;
    margin-bottom: 20px;
}
.visi-card p {
    line-height: 30px;
    color: #555;
}
.misi-card ul {
    margin-left: 18px;
    line-height: 32px;
    color: #555;
}

/* --- WILAYAH DESA --- */
.wilayah {
    width: 85%;
    margin: 90px auto;
}
.dusun-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}
.dusun-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    transition: .35s;
}
.dusun-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,.18);
}
.dusun-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .4s;
}
.dusun-card:hover img {
    transform: scale(1.08);
}
.dusun-content {
    padding: 30px;
}
.dusun-content h3 {
    color: #2E7D32;
    font-size: 28px;
    margin-bottom: 15px;
}
.dusun-content p {
    color: #666;
    line-height: 28px;
    margin-bottom: 25px;
}
.dusun-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.dusun-info div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #444;
    font-weight: 500;
}
.dusun-info i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #E8F5E9;
    color: #2E7D32;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

/* --- INFORMASI DESA --- */
.info-desa {
    width: 85%;
    margin: 100px auto;
}
.info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.info-card {
    background: #fff;
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
    transition: .35s;
}
.info-card:hover {
    transform: translateY(-10px);
    background: #2E7D32;
}
.info-card i {
    font-size: 45px;
    color: #2E7D32;
    margin-bottom: 20px;
    transition: .35s;
}
.info-card h3 {
    color: #2E7D32;
    font-size: 34px;
    margin-bottom: 10px;
    transition: .35s;
}
.info-card p {
    color: #666;
    transition: .35s;
}
.info-card:hover i, .info-card:hover h3, .info-card:hover p {
    color: #fff;
}

/* ================================================= */
/*              HALAMAN POTENSI DESA                 */
/* ================================================= */

.potensi-hero {
    width: 100%;
    height: 280px;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url("images/kopi.jpg") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.potensi-hero .overlay {
    animation: fadeUp .8s ease;
}
.potensi-hero h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 12px;
}
.potensi-hero p {
    color: #fff;
    font-size: 17px;
    letter-spacing: .5px;
}
.potensi-hero i {
    margin: 0 10px;
}

.potensi-desa {
    width: 85%;
    margin: 90px auto;
}
.potensi-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}
.potensi-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .35s;
    cursor: pointer;
    border: 1px solid rgba(46,125,50,.08);
}
.potensi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,.15);
}
.potensi-image {
    overflow: hidden;
}
.potensi-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: .4s;
    display: block;
}
.potensi-card:hover .potensi-image img {
    transform: scale(1.08);
}
.potensi-content {
    padding: 30px;
    text-align: center;
}
.potensi-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #EAF7EC;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto auto 20px;
    transition: .3s;
}
.potensi-icon i {
    color: #2E7D32;
    font-size: 28px;
}
.potensi-card:hover .potensi-icon {
    background: #2E7D32;
}
.potensi-card:hover .potensi-icon i {
    color: #fff;
}
.potensi-content h3 {
    color: #2E7D32;
    font-size: 28px;
    margin-bottom: 15px;
}
.potensi-content p {
    color: #666;
    line-height: 28px;
    font-size: 16px;
    text-align: left;
}

/* ================================================= */
/*                  UMKM PILIHAN & HALAMAN UMKM      */
/* ================================================= */

.umkm-section {
    width: 85%;
    margin: 100px auto;
}
.umkm {
    padding: 120px 0 80px;
    background: #f8faf8;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.section-header {
    text-align: center;
    margin-bottom: 45px;
}
.section-header h2 {
    font-size: 38px;
    color: #2E7D32;
    margin-bottom: 12px;
}
.section-header p {
    color: #666;
    font-size: 16px;
}

.search-box {
    width: 100%;
    max-width: 650px;
    margin: 0 auto 35px;
    position: relative;
}
.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 17px;
}
.search-box input {
    width: 100%;
    height: 55px;
    padding: 0 20px 0 50px;
    border: 1px solid #ddd;
    border-radius: 50px;
    outline: none;
    font-size: 15px;
    transition: .3s;
}
.search-box input:focus {
    border-color: #2E7D32;
    box-shadow: 0 0 10px rgba(46,125,50,.15);
}

.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}
.filter-btn {
    border: none;
    background: white;
    color: #555;
    padding: 12px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.06);
}
.filter-btn:hover, .filter-btn.active {
    background: #2E7D32;
    color: white;
}

.umkm-container, .umkm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.umkm-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s ease;
    cursor: pointer;
    border: 1px solid rgba(46,125,50,.08);
    animation: fadeUp .7s ease;
    width: 100%;
    min-width: 0;
}
.umkm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,.15);
}
.umkm-card img, .umkm-card > img, .umkm-card .no-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: .4s;
    display: block;
}
.umkm-card:hover img {
    transform: scale(1.05);
}
.umkm-content, .umkm-card .card-body {
    padding: 25px;
}
.kategori {
    display: inline-block;
    padding: 6px 14px;
    background: #EAF7EC;
    color: #2E7D32;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}
.umkm-content h3, .umkm-card .card-body h3 {
    color: #2E7D32;
    font-size: 24px;
    margin-bottom: 18px;
}
.umkm-content p, .umkm-card .card-body p {
    color: #666;
    margin-bottom: 12px;
    line-height: 28px;
    text-align: left;
}
.card-body p i {
    color: #2E7D32;
    width: 18px;
}
.umkm-content strong {
    color: #222;
}
.umkm-content ul li:last-child {
    margin-bottom: 0;
}
.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.product-list span {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 13px;
}
.product-list .more {
    background: #2E7D32;
    color: white;
}

.lihat-semua {
    text-align: center;
    margin-top: 55px;
}
.lihat-semua .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
}
.lihat-semua .btn i {
    transition: .3s;
}
.lihat-semua .btn:hover i {
    transform: translateX(5px);
}

/* ================================================= */
/*               MODALS (UMKM PUBLIK & HALAMAN)      */
/* ================================================= */

#umkmModal, .umkm-modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
    z-index: 9999;
}

#umkmModal .modal-content {
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
}
.umkm-modal .modal-content {
    background: white;
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

#umkmModal .close-modal, .umkm-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #555;
    cursor: pointer;
    z-index: 10;
}
#umkmModal .close-modal:hover, .umkm-modal .close-modal:hover {
    color: #2e7d32;
}

#umkmModal .modal-content > img {
    width: 220px !important;
    height: 160px !important;
    max-width: 220px !important;
    max-height: 160px !important;
    min-width: 220px !important;
    min-height: 160px !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto 20px auto !important;
    border-radius: 12px !important;
}
#umkmModal .modal-content img {
    box-sizing: border-box;
}
.umkm-modal .modal-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#umkmModal .modal-no-image {
    width: 100%;
    height: 220px;
    background: #e8f5e9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-size: 60px;
    margin-bottom: 25px;
}

#umkmModal .modal-info h2, .umkm-modal .modal-info h2 {
    color: #2e7d32;
    margin-bottom: 25px;
}
#umkmModal .modal-info p, .umkm-modal .modal-info p {
    margin: 12px 0 18px 0;
    color: #555;
    line-height: 1.6;
}
#umkmModal .modal-info p i, .umkm-modal .modal-info p i {
    width: 25px;
    color: #2e7d32;
    margin-right: 10px;
}
#umkmModal .modal-info h3, .umkm-modal .modal-info h3 {
    margin: 30px 0 15px;
    color: #2e7d32;
}

#umkmModal .modal-info ul, .umkm-modal .modal-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#umkmModal .modal-info li, .umkm-modal .modal-info li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #f5f9f5;
    border-radius: 10px;
    border-bottom: 1px solid #eee;
}
#umkmModal .product-name {
    font-weight: 600;
}
#umkmModal .product-category, .umkm-modal .modal-info li span {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
}
#umkmModal .modal-content::-webkit-scrollbar {
    width: 6px;
}
#umkmModal .modal-content::-webkit-scrollbar-thumb {
    background: #2e7d32;
    border-radius: 10px;
}

/* ================================================= */
/*               HALAMAN GALERI DESA                 */
/* ================================================= */

.galeri-hero {
    width: 100%;
    height: 220px;
    background: linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)), url("images/galeri-banner.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.galeri-hero h1 {
    color: #fff;
    font-size: 52px;
    margin-bottom: 12px;
}
.galeri-hero p {
    color: #fff;
    font-size: 17px;
}
.galeri-hero i {
    margin: 0 10px;
}

.galeri-section {
    width: 85%;
    margin: 90px auto;
}
.galeri-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.galeri-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
    animation: fadeUp .7s ease;
    border: 1px solid rgba(46,125,50,.08);
}
.galeri-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,.15);
}
.galeri-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: .4s ease;
}
.galeri-card:hover img {
    transform: scale(1.08);
}
.galeri-container img {
    cursor: pointer;
    transition: all 0.3s ease;
}
.galeri-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.galeri-content {
    padding: 22px;
}
.galeri-content h3 {
    color: #2E7D32;
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 30px;
    font-weight: 600;
}
.galeri-content p {
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin: 0;
}
.galeri-content p i {
    color: #2E7D32;
    font-size: 16px;
}

.lihat-galeri {
    text-align: center;
    margin-top: 60px;
}
.lihat-galeri .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    background: #2E7D32;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    min-width: 250px;
}
.lihat-galeri .btn:hover {
    background: #256628;
    transform: translateY(-3px);
}
.lihat-galeri .btn i {
    font-size: 18px;
}

/* ================================================= */
/*                HALAMAN BERITA DESA                */
/* ================================================= */

.berita-hero {
    width: 100%;
    height: 220px;
    background: linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)), url("images/berita.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.berita-hero h1 {
    color: #fff;
    font-size: 55px;
    margin-bottom: 15px;
}
.berita-hero p {
    color: #fff;
    font-size: 18px;
}
.berita-hero i {
    margin: 0 10px;
}

.berita-section {
    width: 85%;
    margin: 100px auto;
}

.headline-news {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    margin-bottom: 60px;
}
.headline-news img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.headline-content {
    flex: 1;
    padding: 40px;
}
.headline-content span {
    color: #2E7D32;
    font-weight: 600;
    font-size: 14px;
}
.headline-content h2 {
    margin: 20px 0;
    color: #2E7D32;
    font-size: 32px;
    line-height: 42px;
}
.headline-content p {
    color: #666666;
    line-height: 28px;
    margin-bottom: 30px;
}
.headline-content a {
    text-decoration: none;
    color: #2E7D32;
    font-weight: bold;
    transition: 0.3s;
}
.headline-content a:hover {
    letter-spacing: 1px;
}

.berita-container, .berita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.berita-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    transition: 0.35s;
}
.berita-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}
.berita-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: 0.35s;
}
.berita-card:hover img {
    transform: scale(1.05);
}
.berita-content {
    padding: 25px;
}
.berita-content span {
    color: #2E7D32;
    font-size: 14px;
    font-weight: 600;
}
.berita-content h3 {
    color: #2E7D32;
    margin: 18px 0;
    line-height: 30px;
    font-size: 22px;
}
.berita-content a {
    text-decoration: none;
    color: #2E7D32;
    font-weight: bold;
    transition: 0.3s;
}
.berita-content a:hover {
    letter-spacing: 1px;
}

/* ================================================= */
/*            DETAIL BERITA KKN                       */
/* ================================================= */

.berita-detail-hero {
    width: 100%;
    height: 400px;
    background: linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)), url("images/kkn.jpg") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.berita-detail-hero h1 {
    color: #fff;
    font-size: 55px;
    margin-bottom: 15px;
}
.berita-detail-hero p {
    color: #fff;
    font-size: 18px;
}

.artikel {
    width: 75%;
    margin: 80px auto;
}
.artikel-cover {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.tanggal {
    color: #2E7D32;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}
.artikel h1 {
    color: #2E7D32;
    font-size: 42px;
    line-height: 58px;
    margin-bottom: 35px;
}
.artikel p {
    color: #555;
    font-size: 18px;
    line-height: 34px;
    text-align: justify;
    margin-bottom: 25px;
}
.artikel h2 {
    color: #2E7D32;
    margin-top: 60px;
    margin-bottom: 25px;
    font-size: 32px;
}

.timeline {
    border-left: 4px solid #2E7D32;
    padding-left: 30px;
}
.timeline-item {
    margin-bottom: 35px;
    position: relative;
}
.timeline-item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: #2E7D32;
    border-radius: 50%;
    left: -39px;
    top: 8px;
}
.timeline-item h3 {
    color: #2E7D32;
    margin-bottom: 10px;
}
.timeline-item p {
    margin: 0;
}

.back-berita {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 12px 20px;
    background: #2E7D32;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}
.back-berita:hover {
    background: #1B5E20;
    transform: translateY(-2px);
}

/* 1. Background Overlay Gelap */
.popup-image {
    position: fixed; /* Mengunci pop-up agar melayang menutupi layar */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85); /* Latar belakang hitam transparan */
    display: none; /* Disembunyikan secara default, diubah jadi 'flex' oleh JS */
    justify-content: center;
    align-items: center;
    z-index: 999999; /* Memastikan pop-up berada paling depan */
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(5px); /* Efek blur pada background web */
}

/* 2. Gambar di dalam Pop-up */
.popup-image img {
    max-width: 90%;
    max-height: 85vh; /* Membatasi tinggi gambar maksimal 85% dari layar */
    object-fit: contain; /* Memastikan rasio gambar tidak peyang/distorsi */
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    animation: zoomInPopup 0.3s ease-out forwards; /* Animasi membesar saat diklik */
}

/* 3. Tombol Close (X) */
.popup-image span {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    z-index: 1000000;
    transition: all 0.3s ease;
    line-height: 1;
}

.popup-image span:hover {
    color: #ff4d4d; /* Berubah warna jadi kemerahan saat cursor diarahkan */
    transform: scale(1.15);
}

/* 4. Animasi Pop-up */
@keyframes zoomInPopup {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 5. Penyesuaian untuk HP (Responsif) */
@media (max-width: 768px) {
    .popup-image span {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
    .popup-image img {
        max-width: 100%;
        max-height: 75vh;
        border-radius: 8px;
    }
}
.dokumentasi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.dokumentasi img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.dokumentasi img:hover {
    transform: scale(1.05);
}

.kembali {
    text-align: center;
    margin-top: 60px;
}
.kembali a {
    display: inline-block;
    padding: 15px 35px;
    background: #2E7D32;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: .3s;
}
.kembali a:hover {
    background: #256428;
}

/* ================================================= */
/*               HALAMAN KONTAK DESA                 */
/* ================================================= */

.kontak-hero {
    width: 100%;
    height: 220px;
    background: linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)), url("images/balai-desa.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.kontak-hero h1 {
    color: #fff;
    font-size: 55px;
    margin-bottom: 15px;
}
.kontak-hero p {
    color: #fff;
    font-size: 18px;
}
.kontak-hero i {
    margin: 0 10px;
}

.kontak-info {
    width: 85%;
    margin: 100px auto 60px;
}

.maps-section {
    width: 85%;
    margin: 20px auto 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.map-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
}
.map-card h3 {
    background: #2E7D32;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.map-card iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 15px;
}

.hubungi {
    width: 85%;
    margin: 0 auto 100px;
}
.hubungi-form {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.10);
}
.hubungi-form h2 {
    color: #2E7D32;
    margin-bottom: 30px;
}
.hubungi-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hubungi-form input, .hubungi-form textarea {
    padding: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}
.hubungi-form input:focus, .hubungi-form textarea:focus {
    border-color: #2E7D32;
}
.hubungi-form button {
    background: #2E7D32;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 17px;
    cursor: pointer;
    transition: .3s;
}
.hubungi-form button:hover {
    background: #256428;
}

/* ================================================= */
/*                    FOOTER                         */
/* ================================================= */

.footer {
    background: #2E7D32;
    color: white;
    padding: 50px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
.footer-box {
    width: 30%;
}
.footer-box h3 {
    margin-bottom: 20px;
}
.footer-box p {
    margin-bottom: 10px;
}
.footer hr {
    margin-top: 30px;
    margin-bottom: 20px;
}
.copyright {
    text-align: center;
}

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2E7D32;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    transform: translateY(-5px);
}

.scroll-indicator {
    margin-top: 50px;
    color: white;
    font-size: 18px;
    animation: bounce 2s infinite;
}
.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-media a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    color: #2E7D32;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
}
.social-media a:hover {
    background: #2E7D32;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

/* ================================================= */
/*                  LOADING SCREEN                   */
/* ================================================= */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg,#2E7D32,#4CAF50);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity .8s ease, visibility .8s ease;
}
#loader.hide {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
}
.loader-content img {
    width: 120px;
    margin-bottom: 20px;
    animation: logo 2s infinite;
}
.loader-content h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.loader-content p {
    color: white;
    margin-bottom: 35px;
    font-size: 18px;
}
.loading {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.loading span {
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    animation: bounceLoading .8s infinite alternate;
}
.loading span:nth-child(2) { animation-delay: .2s; }
.loading span:nth-child(3) { animation-delay: .4s; }

/* ================================================= */
/*      JS SNIPPET REMOVED FROM CSS                  */
/* ================================================= */
/* 
const counters = document.querySelectorAll(".counter");
counters.forEach(counter => { ... });
*/

/* ================================================= */
/*                  ANIMATIONS                       */
/* ================================================= */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-80px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes heroZoom {
    from { background-size: 100%; }
    to { background-size: 110%; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

@keyframes bounceLoading {
    from { transform: translateY(0); opacity: .4; }
    to { transform: translateY(-15px); opacity: 1; }
}

@keyframes logo {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* ================================================= */
/*                  RESPONSIVE                       */
/* ================================================= */

@media (max-width: 992px) {
    .tentang-desa { flex-direction: column; }
    .visi-misi { grid-template-columns: 1fr; }
    .dusun-container { grid-template-columns: 1fr; }
    .info-container { grid-template-columns: repeat(2, 1fr); }
    .potensi-container { grid-template-columns: 1fr; gap: 30px; }
    .umkm-container { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .potensi-desa .section-title p, .umkm-section .section-title p, .galeri-section .section-title p { width: 90%; }
    .galeri-section { width: 90%; }
    .galeri-container { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .headline-news { flex-direction: column; gap: 0; }
    .headline-news img { width: 100%; height: 260px; }
    .headline-content { width: 100%; padding: 30px; box-sizing: border-box; }
    .headline-content h2 { font-size: 28px; line-height: 38px; }
    .berita-container, .berita-grid { grid-template-columns: repeat(2, 1fr); }
    .maps-section { grid-template-columns: 1fr; }
    .artikel { width: 90%; }
    .dokumentasi { grid-template-columns: repeat(2, 1fr); }
    
    /* PERBAIKAN STATISTIK & FOOTER (TABLET) */
    .statistik { grid-template-columns: repeat(2, 1fr); }
    .footer-container { flex-wrap: wrap; justify-content: center; }
    .footer-box { width: 45%; text-align: center; }
    .social-media { justify-content: center; }
}

@media (max-width: 768px) {
    header { flex-direction: column; padding: 20px; }
    nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 15px; }
    nav a { margin: 0; display: inline-block; }
    .hero { height: auto; padding: 80px 20px; text-align: center; justify-content: center; }
    .hero-text { width: 100%; }
    .hero-text h1 { font-size: 40px; }
    .hero-text h4 { font-size: 22px; }
    .hero-text p { font-size: 16px; line-height: 28px; }
    .btn, .btn2 { display: inline-block; margin: 10px 5px; }
    
    /* PERBAIKAN STATISTIK (HP) */
    .statistik { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
    
    .box { width: 100%; box-sizing: border-box; }
    .profil { flex-direction: column; }
    .profil-img, .profil-text { width: 100%; }
    .card-container { flex-direction: column; }
    .profil-hero, .berita-hero, .kontak-hero { height: 300px; }
    .overlay h1 { font-size: 36px; }
    .tentang-kanan h2 { font-size: 32px; }
    .section-title h2, .section-header h2 { font-size: 30px; }
    .section-title p { width: 100%; }
    .info-container { grid-template-columns: 1fr; }
    .potensi-hero, .galeri-hero { height: 220px; }
    .potensi-hero h1, .galeri-hero h1, .berita-hero h1, .kontak-hero h1 { font-size: 38px; }
    .potensi-hero p, .galeri-hero p { font-size: 15px; }
    .potensi-desa, .umkm-section, .galeri-section { width: 90%; }
    .galeri-section { margin: 70px auto; }
    .potensi-container, .umkm-container, .galeri-container, .umkm-grid { grid-template-columns: 1fr; gap: 25px; }
    .potensi-image img, .umkm-card img { height: 220px; }
    .galeri-card img { height: 230px; }
    .potensi-content, .umkm-content, .galeri-content { padding: 20px; }
    .potensi-content h3, .umkm-content h3 { font-size: 24px; }
    .headline-news { border-radius: 15px; }
    .headline-news img { width: 100%; height: 200px; }
    .headline-content { padding: 25px; }
    .headline-content h2 { font-size: 26px; line-height: 36px; margin: 15px 0; }
    .headline-content p { line-height: 25px; margin-bottom: 20px; }
    .berita-container, .berita-grid { grid-template-columns: 1fr; gap: 20px; }
    .berita-card img { height: 200px; }
    .berita-content { padding: 20px; }
    .berita-content h3 { font-size: 20px; line-height: 28px; }
    .maps-section { flex-direction: column; }
    .map-box, .info-box { width: 100%; }
    .map-box iframe { height: 250px; }
    .berita-detail-hero { height: 280px; }
    .berita-detail-hero h1 { font-size: 36px; }
    .artikel-cover { height: 260px; }
    .artikel h1 { font-size: 30px; line-height: 42px; }
    .dokumentasi { grid-template-columns: 1fr; }
    .umkm-modal .modal-content { grid-template-columns: 1fr; }
    .umkm-modal .modal-content img { height: 250px; }
    
    .about-container {
        flex-direction: column; 
        gap: 30px;
    }
    .about-text, .profil-video {
        width: 100%;
        max-width: 100%; 
    }
    
    /* PERBAIKAN FOOTER (HP) */
    .footer-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 30px; 
    }
    .footer-box { 
        width: 100%; 
        box-sizing: border-box; 
    }
    .social-media { 
        justify-content: center; 
        flex-wrap: wrap; 
    }
    .social-media a { 
        flex-shrink: 0; 
    }
}

@media (max-width: 600px) {
    #umkmModal { padding: 15px; }
    #umkmModal .modal-content { width: 100%; padding: 25px 20px; }
    #umkmModal .modal-content > img { height: 180px; }
    #umkmModal .modal-info li { flex-direction: column; align-items: flex-start; }
    .umkm-modal .modal-content { padding: 20px 15px !important; }
    .umkm-modal .modal-content img { max-width: 100% !important; height: auto !important; object-fit: cover !important; }
    .umkm-modal .modal-content > img, .umkm-modal .modal-umkm-photo img { width: 100% !important; max-width: 100% !important; height: 200px !important; }
}

@media (max-width: 480px) {
    .potensi-hero, .galeri-hero { height: 200px; }
    .potensi-hero h1, .hero-content h1 { font-size: 32px !important; }
    .galeri-hero h1 { font-size: 30px; }
    .potensi-desa, .umkm-section { margin: 70px auto; }
    .headline-news { flex-direction: column; }
    .headline-news img { width: 100% !important; height: 220px !important; }
    .headline-content { padding: 20px !important; }
    .headline-content h2 { font-size: 23px; line-height: 32px; }
    .berita-card img { height: 180px; }
    .berita-container, .berita-grid, .umkm-grid, .galeri-container { grid-template-columns: 1fr; }
}

/* =====================================================
   APARATUR DESA
===================================================== */

.aparatur-section {
    width: 100%;
    padding: 60px 5%;
    background: #ffffff;
    box-sizing: border-box;
}

/* =====================================================
   JUDUL
===================================================== */

.aparatur-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.aparatur-title-icon {
    width: 42px;
    height: 42px;
    background: #65b32e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
}

.aparatur-title h2 {
    margin: 0;
    color: #222222;
    font-size: 26px;
    font-weight: 700;
}

/* =====================================================
   WRAPPER
===================================================== */

.aparatur-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* =====================================================
   SLIDER CONTAINER
===================================================== */

.aparatur-container {
    display: flex;
    gap: 14px;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

/* =====================================================
   CARD
===================================================== */

.aparatur-card {
    position: relative;
    flex: 0 0 calc((100% - 42px) / 4);
    height: 350px;
    border: 6px solid #31c45a;
    border-radius: 6px;
    overflow: hidden;
    background: #eeeeee;
    box-sizing: border-box;
}

/* =====================================================
   FOTO
===================================================== */

.aparatur-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* =====================================================
   INFORMASI FOTO
===================================================== */

.aparatur-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 45px 8px 8px;
    text-align: center;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 0, 0, 0.95)
    );
    box-sizing: border-box;
}

/* =====================================================
   JABATAN
===================================================== */

.aparatur-jabatan {
    color: #ffe600;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    padding-bottom: 7px;
    border-bottom: 1px solid #ffe600;
}

/* =====================================================
   NAMA
===================================================== */

.aparatur-nama {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    padding-top: 6px;
    text-transform: uppercase;
}

/* =====================================================
   TOMBOL SLIDER
===================================================== */

.aparatur-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.aparatur-btn:hover {
    background: #2e7d32;
}

/* KIRI */
.aparatur-prev {
    left: 8px;
}

/* KANAN */
.aparatur-next {
    right: 8px;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 992px) {
    .aparatur-card {
        flex: 0 0 calc((100% - 14px) / 2);
        height: 350px;
    }
}

/* =====================================================
   HP
===================================================== */

@media (max-width: 600px) {
    .aparatur-section {
        padding: 45px 20px;
    }
    .aparatur-title h2 {
        font-size: 22px;
    }
    .aparatur-card {
        flex: 0 0 100%;
        height: 390px;
    }
    .aparatur-jabatan {
        font-size: 16px;
    }
    .aparatur-nama {
        font-size: 16px;
    }
    .aparatur-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* =====================================================
   ANIMASI SLIDER APARATUR
===================================================== */

.aparatur-container {
    transition:
        opacity 0.25s ease,
        transform 0.35s ease;
}

/* Saat sedang bergeser */
.aparatur-container.aparatur-sliding {
    transform: scale(0.985);
    opacity: 0.92;
}