:root {
            --primary: #e63946;
            --secondary: #552a2a;
            --success: #e76f51;
            --danger: #e63946;
            --warning: #f4a261;
            --dark: #2b2d42;
            --light: #fff5f5;
            --gray-soft: #f0c0c0;
            --text-muted: #b87373;
            --sidebar-width-desktop: 360px;
            --sidebar-width-tablet: 320px;
            --header-height: 70px;
            --footer-padding: 40px;

            /* Palet Utama Warna Kategori Destinasi Wisata */
            --color-alam: #1f9236;
            --color-kuliner: #e76f51;
            --color-budaya: #3ebdac;
            --color-religi: #e9c46a;
            --color-buatan: #457b9d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            margin: 0;
            background-color: #f5f7fb;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* KONSISTEN SEMUA LAYAR */
        header {
            position: sticky;
            top: 0;
            background: white;
            z-index: 1100 !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0 24px;
            min-height: var(--header-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 16px;
            flex: 1;
            min-width: 0;
        }

        .logo-img {
            height: 45px;
            width: auto;
            flex-shrink: 0;
            object-fit: contain;
        }

        .header-left h1 {
            font-size: 1rem;
            color: var(--secondary);
            margin: 0;
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        nav {
            flex-shrink: 0;
        }

        .admin-link {
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 8px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
        }
        
        .text-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: none;
            padding: 0;
            color: #552a2a;
            text-decoration: none;
            font-weight: 500;
            box-shadow: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .text-link:hover {
            color: #552a2a;
            text-decoration: underline;
            transform: translateX(3px);
        }

        /* Variasi untuk teks peta dengan ikon */
        .text-link.peta-link i,
        .text-link i.fa-map,
        .text-link i.fa-map-marker-alt {
            transition: transform 0.3s ease;
        }

        .text-link.peta-link:hover i,
        .text-link:hover i.fa-map,
        .text-link:hover i.fa-map-marker-alt {
            transform: scale(1.1);
        }


            /* ============ HERO SECTION ============ */
            .hero {
                background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
                padding: 60px 24px;
                text-align: center;
                color: white;
                position: relative;
                overflow: hidden;
            }

            .hero::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: url('https://www.transparenttextures.com/patterns/asanoha-400px.png');
                opacity: 0.1;
                pointer-events: none;
            }

            .hero-content {
                max-width: 800px;
                margin: 0 auto;
                position: relative;
                z-index: 1;
            }

            .hero-content h2 {
                font-size: 2rem;
                margin-bottom: 16px;
                font-weight: 700;
            }

            .hero-content p {
                font-size: 1.1rem;
                line-height: 1.6;
                opacity: 0.95;
            }

            /* ============ CONTAINER TENTANG ============ */
            .container-tentang {
                flex: 1;
                max-width: 1200px;
                margin: 0 auto;
                padding: 48px 24px;
            }

            .section-title {
                text-align: center;
                margin-bottom: 48px;
            }

            .section-title h2 {
                font-size: 2rem;
                color: var(--dark);
                position: relative;
                display: inline-block;
                padding-bottom: 12px;
                margin-bottom: 16px;
            }

            .section-title h2::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 3px;
                background: var(--primary);
                border-radius: 2px;
            }

            .section-title p {
                color: #666;
                font-size: 1rem;
            }

            /* Info Grid */
            .info-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
                margin-bottom: 60px;
            }

            .info-card {
                background: white;
                border-radius: 16px;
                padding: 30px 24px;
                text-align: center;
                transition: all 0.3s ease;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            }

            .info-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 24px rgba(230, 57, 70, 0.15);
            }

            .info-icon {
                width: 70px;
                height: 70px;
                background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 20px auto;
            }

            .info-icon i {
                font-size: 32px;
                color: white;
            }

            .info-card h3 {
                font-size: 1.3rem;
                color: var(--dark);
                margin-bottom: 16px;
            }

            .info-card p {
                color: #666;
                line-height: 1.6;
                font-size: 0.95rem;
            }

            /* Visi Misi */
            .visi-misi {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 30px;
                margin-top: 20px;
            }

            .vm-card {
                background: white;
                border-radius: 16px;
                padding: 30px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
                transition: all 0.3s ease;
            }

            .vm-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            }

            .vm-card h3 {
                font-size: 1.4rem;
                color: var(--primary);
                margin-bottom: 20px;
                padding-bottom: 12px;
                border-bottom: 2px solid var(--primary);
                display: inline-block;
            }

            .vm-card p {
                color: #555;
                line-height: 1.7;
                font-size: 1rem;
            }

            .vm-card ul {
                list-style: none;
                padding: 0;
            }

            .vm-card ul li {
                color: #555;
                line-height: 1.7;
                margin-bottom: 12px;
                padding-left: 24px;
                position: relative;
            }

            .vm-card ul li::before {
                content: '✓';
                position: absolute;
                left: 0;
                color: var(--primary);
                font-weight: bold;
            }

        /* ==================== FOOTER DENGAN ANIMASI MASUK & KELUAR ==================== */
        .site-footer {
            background-color: #3d2a2a;
            color: #bdc3c7;
            border-top: 4px solid var(--primary);
            padding-top: 40px;
            z-index: 1050;

            /* Animasi awal - tersembunyi */
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        /* Class saat footer terlihat */
        .site-footer.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        /* Class saat footer sedang menghilang */
        .site-footer.hiding {
            opacity: 0;
            transform: translateY(50px);
            pointer-events: none;
        }

        /* Animasi untuk setiap kolom footer (stagger effect) */
        .footer-column {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .site-footer.visible .footer-column {
            opacity: 1;
            transform: translateY(0);
        }

        .site-footer.hiding .footer-column {
            opacity: 0;
            transform: translateY(30px);
        }

        /* Stagger delay untuk setiap kolom saat masuk */
        .site-footer.visible .footer-column:nth-child(1) {
            transition-delay: 0.1s;
        }

        .site-footer.visible .footer-column:nth-child(2) {
            transition-delay: 0.2s;
        }

        .site-footer.visible .footer-column:nth-child(3) {
            transition-delay: 0.3s;
        }

        .site-footer.visible .footer-column:nth-child(4) {
            transition-delay: 0.4s;
        }

        /* Stagger delay untuk setiap kolom saat keluar (lebih cepat) */
        .site-footer.hiding .footer-column:nth-child(1) {
            transition-delay: 0s;
        }

        .site-footer.hiding .footer-column:nth-child(2) {
            transition-delay: 0.05s;
        }

        .site-footer.hiding .footer-column:nth-child(3) {
            transition-delay: 0.1s;
        }

        .site-footer.hiding .footer-column:nth-child(4) {
            transition-delay: 0.15s;
        }

        /* Animasi untuk footer bottom */
        .footer-bottom {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transition-delay: 0.5s;
        }

        .site-footer.visible .footer-bottom {
            opacity: 1;
            transform: translateY(0);
        }

        .site-footer.hiding .footer-bottom {
            opacity: 0;
            transform: translateY(20px);
            transition-delay: 0.1s;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }

        .footer-column h3 {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
            font-weight: 600;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }

        .site-footer.visible .footer-column h3::after {
            transform: scaleX(1);
        }

        .site-footer.hiding .footer-column h3::after {
            transform: scaleX(0);
        }

        .footer-column p {
            font-size: 0.85rem;
            line-height: 1.6;
            margin: 0 0 15px 0;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
            font-size: 0.85rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .site-footer.visible .footer-column ul li {
            opacity: 1;
            transform: translateX(0);
        }

        .site-footer.hiding .footer-column ul li {
            opacity: 0;
            transform: translateX(-10px);
        }

        /* Stagger delay untuk setiap list item saat masuk */
        .site-footer.visible .footer-column:nth-child(1) ul li:nth-child(1) {
            transition-delay: 0.15s;
        }

        .site-footer.visible .footer-column:nth-child(1) ul li:nth-child(2) {
            transition-delay: 0.2s;
        }

        .site-footer.visible .footer-column:nth-child(1) ul li:nth-child(3) {
            transition-delay: 0.25s;
        }

        .site-footer.visible .footer-column:nth-child(1) ul li:nth-child(4) {
            transition-delay: 0.3s;
        }

        .site-footer.visible .footer-column:nth-child(2) ul li:nth-child(1) {
            transition-delay: 0.25s;
        }

        .site-footer.visible .footer-column:nth-child(2) ul li:nth-child(2) {
            transition-delay: 0.3s;
        }

        .site-footer.visible .footer-column:nth-child(2) ul li:nth-child(3) {
            transition-delay: 0.35s;
        }

        .site-footer.visible .footer-column:nth-child(2) ul li:nth-child(4) {
            transition-delay: 0.4s;
        }

        .site-footer.visible .footer-column:nth-child(3) ul li:nth-child(1) {
            transition-delay: 0.35s;
        }

        .site-footer.visible .footer-column:nth-child(3) ul li:nth-child(2) {
            transition-delay: 0.4s;
        }

        .site-footer.visible .footer-column:nth-child(3) ul li:nth-child(3) {
            transition-delay: 0.45s;
        }

        .site-footer.visible .footer-column:nth-child(3) ul li:nth-child(4) {
            transition-delay: 0.5s;
        }

        .site-footer.visible .footer-column:nth-child(4) ul li:nth-child(1) {
            transition-delay: 0.45s;
        }

        .site-footer.visible .footer-column:nth-child(4) ul li:nth-child(2) {
            transition-delay: 0.5s;
        }

        .site-footer.visible .footer-column:nth-child(4) ul li:nth-child(3) {
            transition-delay: 0.55s;
        }

        /* Stagger delay untuk list item saat keluar (lebih cepat) */
        .site-footer.hiding .footer-column ul li {
            transition-delay: 0s !important;
        }

        .footer-column ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-column ul li a:hover {
            color: #ffffff;
            transform: translateX(5px);
        }

        .footer-column ul li i {
            margin-right: 8px;
            color: var(--primary);
            font-size: 0.8rem;
        }

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            background-color: #961e20;
            color: #ffffff;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            font-size: 0.9rem;
            opacity: 0;
            transform: scale(0);
        }

        .site-footer.visible .social-links a {
            opacity: 1;
            transform: scale(1);
        }

        .site-footer.hiding .social-links a {
            opacity: 0;
            transform: scale(0);
        }

        /* Stagger delay untuk social links saat masuk */
        .site-footer.visible .social-links a:nth-child(1) {
            transition-delay: 0.2s;
        }

        .site-footer.visible .social-links a:nth-child(2) {
            transition-delay: 0.3s;
        }

        .site-footer.visible .social-links a:nth-child(3) {
            transition-delay: 0.4s;
        }

        .site-footer.visible .social-links a:nth-child(4) {
            transition-delay: 0.5s;
        }

        /* Stagger delay untuk social links saat keluar */
        .site-footer.hiding .social-links a {
            transition-delay: 0s;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px) scale(1.05);
        }

        .footer-bottom {
            background-color: #412b2b;
            padding: 20px 20px;
            margin-top: 40px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.8rem;
        }

        .footer-bottom p {
            margin: 5px 0;
        }

        .footer-bottom a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
        }

        .footer-bottom a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        /* ==================== RESPONSIVE BREAKPOINTS ==================== */

        @media (max-width: 1024px) {
            :root {
                --sidebar-width-desktop: var(--sidebar-width-tablet);
            }

            .logo-img {
                height: 42px;
            }

            .header-left h1 {
                font-size: 0.9rem;
            }

            .admin-link {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 0 16px;
                min-height: 60px;
                gap: 12px;
            }

            .logo-img {
                height: 38px;
            }

            .header-left {
                gap: 12px;
            }

            .header-left h1 {
                font-size: 0.8rem;
                white-space: normal;
                line-height: 1.2;
                display: -webkit-box;
              
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .admin-link {
                padding: 6px 14px;
                font-size: 0.8rem;
            }

            .container {
                flex-direction: column;
            }

            .map-container {
                min-height: 400px;
                height: 50vh;
            }

            #map {
                position: relative;
                min-height: 400px;
                height: 100%;
            }

            .sidebar {
                width: 100%;
                position: relative;
                top: 0;
                max-height: none;
                border-left: none;
                border-top: 1px solid #e0e0e0;
            }

            .routing-controls {
                left: 16px;
                right: 16px;
                bottom: 16px;
            }

            .map-controls {
                bottom: 16px;
                right: 16px;
            }

            .map-btn {
                padding: 8px 12px;
                font-size: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 0 12px;
                min-height: 55px;
                gap: 8px;
            }

            .logo-img {
                height: 32px;
            }

            .header-left {
                gap: 8px;
            }

            .header-left h1 {
                font-size: 0.7rem;
            
            }

            .admin-link {
                padding: 5px 10px;
                font-size: 0.75rem;
            }

            .admin-link span {
                display: none;
            }

            .admin-link i {
                font-size: 1rem;
            }

            .map-container {
                min-height: 350px;
                height: 45vh;
            }

            .form-buttons {
                flex-direction: column;
            }

            .btn {
                justify-content: center;
                width: 100%;
            }

            .facility-card {
                padding: 12px;
            }

            .facility-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 360px) {
            .logo-img {
                height: 28px;
            }

            .header-left h1 {
                font-size: 0.65rem;
            }

            .admin-link {
                padding: 4px 8px;
            }

            .map-container {
                min-height: 300px;
                height: 40vh;
            }
        }

        .leaflet-popup-content-wrapper {
            width: 260px;
            border-radius: 8px;
            padding: 2px;
        }

        .leaflet-popup-content {
            width: 240px !important;
            margin: 12px !important;
        }

        .small-icon {
            font-size: 0.8rem;
        }

        /* Desain Scrollbar Kustom untuk Kotak Rincian Pop-up */
        .popup-scroll-area::-webkit-scrollbar {
            width: 4px;
        }

        .popup-scroll-area::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 4px;
        }

        .popup-scroll-area::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 4px;
        }

        .popup-scroll-area::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }
        /* =========================
        STRUKTUR ORGANISASI
        ========================= */

        .struktur-wrapper{
            width: 100%;
            margin-top: 20px;
            text-align: center;
        }

        .struktur-img{
            width: 85%;
            max-width: 750px;
            border-radius: 16px;
            object-fit: contain;
            box-shadow: none;
        }

    /* =========================
   ANIMASI HALUS WEBSITE
========================= */

/* HERO ANIMATION */
.hero-content{
    animation: fadeHero 1s ease;
}

.hero-content h2{
    animation: slideDown 0.9s ease;
}

.hero-content p{
    animation: fadeUp 1.2s ease;
}

/* CARD ANIMATION */
.info-card,
.vm-card{
    animation: fadeCard 0.8s ease;
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Hover card */
.info-card:hover,
.vm-card:hover{
    transform: translateY(-6px);
}

/* Header link */
.text-link,
.admin-link{
    transition: 
        transform 0.25s ease,
        opacity 0.25s ease,
        background 0.25s ease;
}

.text-link:hover{
    transform: translateY(-1px);
}

.admin-link:hover{
    transform: translateY(-2px);
}

/* Klik */
.text-link:active,
.admin-link:active,
.info-card:active,
.vm-card:active{
    transform: scale(0.98);
}

/* Logo */
.logo-img{
    transition: transform 0.3s ease;
}

.logo-img:hover{
    transform: rotate(-3deg) scale(1.03);
}

/* Section title */
.section-title{
    animation: fadeUp 0.9s ease;
}

/* Struktur organisasi */
.struktur-img{
    opacity: 0;
    transform: translateY(20px) scale(0.97);

    animation: fadeStruktur 0.9s ease forwards;

    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.struktur-img:hover{
    transform: scale(1.02);
    filter: brightness(1.02);
}

.struktur-img:active{
    transform: scale(0.98);
}

/* =========================
   KEYFRAMES
========================= */

@keyframes fadeHero{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

@keyframes slideDown{
    from{
        opacity: 0;
        transform: translateY(-25px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(25px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeCard{
    from{
        opacity: 0;
        transform: translateY(18px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeStruktur{
    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================
   GLOBAL SECTION
========================= */

.section{
    padding:70px 24px;
}

.container{
    max-width:1200px;
    margin:0 auto;
}

/* =========================
   SECTION HEADER
========================= */

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2{
    font-size:2.2rem;
    color:var(--secondary);
    margin-bottom:12px;
    font-weight:700;
}

.section-header p{
    color:#666;
    font-size:1rem;
    line-height:1.7;
}

/* =========================
   SECTION TENTANG
========================= */

.tentang-grid{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    background:
        linear-gradient(
            135deg,
            #021b3a 0%,
            #01264d 100%
        );
    border-radius:28px;
    padding:65px 55px;
    overflow:hidden;
    position:relative;
    flex-wrap:wrap;
}

.tentang-grid::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,0.03);
    top:-120px;
    right:-120px;
}

.tentang-grid::after{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,0.03);
    bottom:-100px;
    left:-80px;
}

.tentang-content{
    flex:1;
    min-width:320px;
    position:relative;
    z-index:2;
}

.tentang-content h2{
    font-size:3rem;
    color:white;
    margin-bottom:30px;
    line-height:1.2;
}

.tentang-content p{
    color:#e2e8f0;
    line-height:2;
    font-size:1.05rem;
    margin-bottom:24px;
    max-width:650px;
}

/* =========================
   STATS
========================= */

.stats{
    display:flex;
    gap:22px;
    margin-top:40px;
    flex-wrap:wrap;
}

.stat-item{
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(10px);
    border-radius:22px;
    padding:28px 24px;
    min-width:170px;
    text-align:center;
    transition:0.3s ease;
}

.stat-item:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,0.1);
}

.stat-item i{
    font-size:2rem;
    color:#7dd3fc;
    margin-bottom:18px;
}

.stat-item h4{
    font-size:2rem;
    color:white;
    margin-bottom:10px;
    font-weight:700;
}

.stat-item p{
    color:#dbeafe;
    margin:0;
    line-height:1.6;
    font-size:0.95rem;
}

/* =========================
   IMAGE SECTION
========================= */

.tentang-image{
    flex:1;
    min-width:320px;
    display:flex;
    justify-content:center;
    position:relative;
    z-index:2;
}

.tentang-image img{
    width:100%;
    max-width:650px;
    border-radius:24px;
    object-fit:cover;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.35),
        0 0 0 3px rgba(255,255,255,0.05);

    transition:0.35s ease;
}

.tentang-image img:hover{
    transform:scale(1.02);
}

/* =========================
   VISI MISI
========================= */

.visi-misi{
    background:#f8fafc;
}

.visi-misi-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.visi-card,
.misi-card{
    background:white;
    border-radius:24px;
    padding:35px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.visi-card:hover,
.misi-card:hover{
    transform:translateY(-6px);
}

.card-icon{
    width:75px;
    height:75px;
    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:24px;
}

.card-icon i{
    font-size:2rem;
    color:white;
}

.visi-card h3,
.misi-card h3{
    font-size:1.7rem;
    color:var(--secondary);
    margin-bottom:20px;
}

.visi-card p,
.misi-card ul li{
    color:#555;
    line-height:1.9;
}

.misi-card ul{
    padding-left:20px;
}

/* =========================
   TUJUAN
========================= */

.tujuan-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.tujuan-item{
    background:white;
    border-radius:22px;
    padding:35px 28px;
    text-align:center;
    box-shadow:0 6px 20px rgba(0,0,0,0.07);
    transition:0.3s ease;
}

.tujuan-item:hover{
    transform:translateY(-6px);
}

.tujuan-item i{
    font-size:2.3rem;
    color:var(--primary);
    margin-bottom:18px;
}

.tujuan-item h4{
    font-size:1.3rem;
    color:var(--secondary);
    margin-bottom:14px;
}

.tujuan-item p{
    color:#666;
    line-height:1.8;
}

/* =========================
   TUGAS POKOK
========================= */

.tugas-fungsi{
    background:#f8fafc;
}

.tugas-grid{
    display:flex;
    justify-content:center;
}

.tugas-card{
    background:white;
    width:100%;
    max-width:950px;
    border-radius:24px;
    padding:45px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.tugas-card h2{
    color:var(--secondary);
    font-size:2rem;
    margin-bottom:18px;
}

.tugas-card h2 i{
    margin-right:10px;
}

.tugas-card p{
    color:#666;
    margin-bottom:24px;
    line-height:1.8;
}

.tugas-card ul{
    padding-left:22px;
}

.tugas-card ul li{
    margin-bottom:16px;
    color:#444;
    line-height:1.8;
}

/* =========================
   STRUKTUR
========================= */

.struktur{
    padding-bottom:100px;
}

.struktur-img{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    margin:0 auto;
}

.struktur-img img{
    display:block;
    width:100%;
    max-width:950px;
    margin:0 auto;
    border-radius:24px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.12);

    transition:0.3s ease;
}

.struktur-img img:hover{
    transform:scale(1.01);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .tentang-grid{
        flex-direction:column;
        text-align:center;
        padding:50px 35px;
        gap:50px;
    }

    .tentang-content p{
        max-width:100%;
    }

    .stats{
        justify-content:center;
    }

}

@media(max-width:768px){

    .section{
        padding:60px 18px;
    }

    .tentang-grid{
        padding:40px 24px;
        border-radius:22px;
    }

    .tentang-content h2{
        font-size:2.2rem;
    }

    .tentang-content p{
        font-size:1rem;
        line-height:1.9;
    }

    .section-header h2{
        font-size:2rem;
    }

    .stat-item{
        min-width:140px;
        padding:22px;
    }

    .stat-item h4{
        font-size:1.7rem;
    }

    .visi-card,
    .misi-card,
    .tugas-card{
        padding:28px 24px;
    }

}

/* =========================
   BOX PUTIH TENTANG
========================= */

.tentang-grid{
    background:#ffffff !important;

    border-radius:32px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.08);

    padding:65px 55px;
}

/* TEXT */
.tentang-content h2{
    color:var(--secondary) !important;
}

.tentang-content p{
    color:#4b5563 !important;
}

/* STATS */
.stat-item{
    background:#f8fafc !important;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.05);
}

.stat-item h4{
    color:var(--secondary) !important;
}

.stat-item p{
    color:#64748b !important;
}