        :root {
            /* Palette Warna Laut Cerah & Profesional */
            --primary: #1a237e;
            --primary-dark: #0c4a6e;
            --secondary: #283593;
            --accent: #1976d2;
            --accent-dark: #1565c0;
            --success-color: #06d6a0;
            --warning-color: #ffd166;
            --danger-color: #ff6b6b;
            --light-bg: #f0f9ff;
            --white: #ffffff;
            
            --text-main: #0f172a;
            --text-sub: #475569;
            --gray-color: #666;

            --font-head: 'Outfit', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
            --font-signature: 'Satisfy', cursive;
            
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-sub);
            background-color: var(--light-bg);
            overflow-x: hidden;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        h1, h2, h3, h4, h5, .navbar-brand {
            font-family: var(--font-head);
            color: var(--text-main);
        }

        /* --- CSS untuk Slogan Signatur (Pemberdayaan Nelayan) --- */
        .slogan-signature {
            font-family: var(--font-signature);
            color: var(--primary);
            font-size: calc(2rem + 1vw); 
            font-weight: 700; 
            line-height: 1.2;
            margin-bottom: 10px;
            display: inline-block;
        }

        /* --- CSS Revisi untuk kata 'untuk' (Kecil & Bersih) --- */
        .connector-text {
            font-family: var(--font-body);
            font-size: 0.5em;
            font-weight: 400;
            font-style: italic;
            color: var(--text-sub);
            vertical-align: middle;
            margin: 0 5px;
            letter-spacing: 1px;
        }

        /* --- CSS Revisi untuk 'Situbondo Naik Kelas' (Orange) --- */
        .text-orange-gradient {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            text-shadow: 0px 4px 10px rgba(245, 158, 11, 0.2);
        }

        /* --- Navbar (Clean & Glassy) --- */
        .navbar {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .navbar-brand img {
            height: 55px; 
            width: auto;
            object-fit: contain;
            transition: transform 0.3s;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .brand-text h5 {
            font-weight: 800;
            margin: 0;
            line-height: 1;
            color: var(--primary-dark);
            letter-spacing: -0.5px;
        }
        .brand-text span {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-link {
            font-weight: 600;
            color: var(--text-main) !important;
            margin: 0 10px;
            position: relative;
            transition: 0.3s;
            padding: 8px 12px !important;
        }

        .nav-link:hover {
            color: var(--primary) !important;
        }

        .nav-link.active {
            color: var(--primary) !important;
            font-weight: 700;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 10px 30px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
            transition: 0.3s;
            min-height: 44px;
            min-width: 44px;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
            color: white;
        }

        /* --- Hero Section --- */
        .hero-section {
            min-height: 100vh;
            background: url('https://images.unsplash.com/photo-1583212292454-1fe6229603b7?q=80&w=2074&auto=format&fit=crop'); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            display: flex;
            align-items: center;
            padding-top: 140px; 
            padding-bottom: 80px;
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to right, rgba(240, 249, 255, 0.95) 0%, rgba(240, 249, 255, 0.7) 60%, rgba(255,255,255,0) 100%);
        }

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

        .hero-badge {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(5px);
            border: 1px solid var(--primary);
            color: var(--primary-dark);
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        /* --- ANIMASI TOMBOL --- */
        @keyframes pulse-glow {
            0% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(2, 132, 199, 0); }
            100% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
        }

        .btn-pulse-primary {
            animation: pulse-glow 2s infinite;
        }

        .btn-pulse-outline {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            min-height: 44px;
            min-width: 44px;
        }
        
        .btn-pulse-outline:hover {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 0 20px rgba(2, 132, 199, 0.5);
        }

        /* --- ANIMASI BARU UNTUK FOOTER --- */
        @keyframes pulse-animation {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(37, 99, 235, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
            }
        }

        @keyframes pulse-green-animation {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .pulse-animation {
            animation: pulse-animation 2s infinite;
        }

        .pulse-green-animation {
            animation: pulse-green-animation 2s infinite;
        }

        .click-feedback {
            transform: scale(0.95);
            transition: transform 0.2s ease;
        }

        /* --- Service Cards --- */
        .section-header h2 {
            font-weight: 800;
            color: var(--primary-dark);
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid rgba(2, 132, 199, 0.1); 
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            display: block;
            text-decoration: none !important;
            color: inherit;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }

        .service-card:hover {
            text-decoration: none !important;
            color: inherit;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--primary));
            transform: scaleX(0);
            transform-origin: left;
            transition: 0.4s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(2, 132, 199, 0.15);
            text-decoration: none !important;
        }

        .service-card:hover::after {
            transform: scaleX(1);
        }

        /* --- TOMBOL SHARE YANG DIPERBAIKI --- */
        .share-btn-container {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 10;
            display: flex;
            gap: 8px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .service-card:hover .share-btn-container {
            opacity: 1;
            transform: translateY(0);
        }

        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            -webkit-tap-highlight-color: transparent;
            position: relative;
        }

        .share-btn:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
        }

        .share-btn:hover::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            white-space: nowrap;
            margin-bottom: 8px;
            pointer-events: none;
        }

        .share-btn:hover::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 6px solid transparent;
            border-top-color: rgba(0, 0, 0, 0.8);
            margin-bottom: -8px;
        }

        .share-btn-copy {
            background: linear-gradient(135deg, #4CAF50, #2E7D32);
        }

        .share-btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
        }

        .share-btn-whatsapp:hover {
            background: linear-gradient(135deg, #128C7E, #25D366);
        }

        .share-btn-copy:hover {
            background: linear-gradient(135deg, #2E7D32, #4CAF50);
        }

        /* --- PERBESAR UKURAN LOGO MENU LAYANAN --- */
        .menu-logo {
            width: 200px;
            height: 200px;
            object-fit: contain;
            margin: 0 auto 25px auto;
            display: block;
            transition: transform 0.4s ease;
        }

        .service-card:hover .menu-logo {
            transform: scale(1.1);
        }

        .card-link-text {
            color: var(--primary);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: auto; 
            padding-top: 20px;
        }

        /* --- Galeri Foto Thumbnail Styles --- */
        .gallery-thumbnail-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 5px;
            margin-top: 20px;
            margin-bottom: 20px;
            height: 180px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .gallery-thumbnail-item {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            transition: transform 0.3s ease;
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
        }

        .gallery-thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-thumbnail-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(2, 132, 199, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-thumbnail-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* --- LOGO PEMBERDAYAAN NELAYAN DI INFO PANEL --- */
        .info-panel-logo {
            width: 250px;
            height: auto;
            margin: 0 auto 25px auto;
            display: block;
        }

        /* ============================================ */
        /* PERBAIKAN DESAIN PETA STATISTIK UNTUK MOBILE */
        /* ============================================ */
        
        /* Header Peta - Desain Baru */
        .peta-statistik-header {
            background: linear-gradient(135deg, #1a237e, #283593);
            color: white;
            padding: 25px 40px;
            position: relative;
            overflow: hidden;
            border-bottom: 4px solid #f59e0b;
        }
        
        .header-content {
            position: relative;
            z-index: 2;
        }
        
        .header-bg {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 40%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
            opacity: 0.5;
        }
        
        /* Judul Peta - Warna dan Font Diperbaiki */
        .peta-statistik-title {
            font-size: 2.2rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 15px;
            color: white;
            font-weight: 800;
        }
        
        .peta-statistik-title i {
            color: #f59e0b;
            font-size: 2.5rem;
            text-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
        }
        
        .peta-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 20px;
            max-width: 800px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
        }
        
        /* Metadata - Desain Baru */
        .metadata {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        
        .meta-item {
            background: rgba(255, 255, 255, 0.2);
            padding: 12px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .meta-item:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .meta-item i {
            font-size: 1.1rem;
            color: #f59e0b;
        }
        
        /* Container Utama Peta */
        .peta-statistik-container {
            max-width: 1600px;
            margin: 0 auto;
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            animation: fadeIn 0.8s ease-out;
            border: 1px solid #e2e8f0;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Sidebar - Warna Diperbaiki */
        .peta-sidebar {
            flex: 1;
            min-width: 350px;
            background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 25px;
            border-right: 1px solid #e2e8f0;
            overflow-y: auto;
            max-height: 800px;
        }
        
        /* Tab Menu - Desain Baru */
        .tabs {
            display: flex;
            border-bottom: 2px solid #e2e8f0;
            margin-bottom: 20px;
            background: white;
            border-radius: 12px 12px 0 0;
            overflow: hidden;
            padding: 5px;
        }
        
        .tab {
            padding: 12px 24px;
            cursor: pointer;
            font-weight: 700;
            color: #64748b;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
            font-size: 0.9rem;
            flex: 1;
            text-align: center;
            border-radius: 8px;
            -webkit-tap-highlight-color: transparent;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .tab.active {
            color: var(--primary);
            border-bottom: 3px solid var(--accent);
            background: rgba(25, 118, 210, 0.1);
        }
        
        .tab:hover {
            color: var(--primary);
            background: rgba(25, 118, 210, 0.05);
        }
        
        /* Kotak Statistik - Desain Baru */
        .stats-box {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid #e2e8f0;
            transition: var(--transition);
        }
        
        .stats-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .stats-title {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 12px;
            border-bottom: 2px solid #f1f5f9;
            font-weight: 700;
        }
        
        .stats-title i {
            color: #f59e0b;
        }
        
        /* Grid Statistik */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px 12px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-radius: 12px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--accent), var(--primary));
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            background: #e8eeff;
            box-shadow: 0 10px 20px rgba(25, 118, 210, 0.15);
            border-color: var(--accent);
        }
        
        .stat-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
            font-family: var(--font-head);
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: var(--gray-color);
            font-weight: 600;
        }
        
        /* Daftar Desa - Desain Baru */
        .desa-list {
            max-height: 350px;
            overflow-y: auto;
            border-radius: 12px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
            -webkit-overflow-scrolling: touch;
        }
        
        .desa-list-header {
            padding: 15px 20px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 12px 12px 0 0;
            display: flex;
            justify-content: space-between;
            font-weight: bold;
            font-size: 0.9rem;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .desa-item {
            padding: 15px 20px;
            border-bottom: 1px solid #f1f5f9;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            justify-content: space-between;
            align-items: center;
            -webkit-tap-highlight-color: transparent;
            min-height: 60px;
        }
        
        .desa-item:hover {
            background: #f8fafc;
            padding-left: 25px;
        }
        
        .desa-item.active {
            background: #e8eeff;
            border-left: 5px solid var(--accent);
        }
        
        .desa-name {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
            font-size: 0.95rem;
        }
        
        .desa-details {
            font-size: 0.8rem;
            color: var(--gray-color);
            display: flex;
            gap: 12px;
        }
        
        /* Container Peta - FIX UNTUK MOBILE */
        .peta-map-container {
            flex: 2;
            min-width: 600px;
            height: 700px;
            position: relative;
            background: #f8fafc;
        }
        
        #statistikMap {
            width: 100%;
            height: 100%;
            border-radius: 0 0 20px 0;
            z-index: 1;
        }
        
        /* Kontrol Peta - Desain Baru dengan TOMBOL BARU */
        .peta-controls {
            position: absolute;
            top: 25px;
            right: 25px;
            z-index: 1000;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }
        
        .control-btn {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 12px 18px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            transition: var(--transition);
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            min-height: 44px;
            min-width: 44px;
            -webkit-tap-highlight-color: transparent;
            text-decoration: none;
        }
        
        .control-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
            color: white;
            text-decoration: none;
        }
        
        .control-btn i {
            font-size: 1.1rem;
        }
        
        /* Tombol Khusus untuk Cek Detail Data Peta */
        .btn-detail-peta {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }
        
        .btn-detail-peta:hover {
            background: linear-gradient(135deg, #d97706, #b45309);
        }
        
        /* Tombol Khusus untuk Reload Data */
        .btn-reload-data {
            background: linear-gradient(135deg, #06d6a0, #059669);
        }
        
        .btn-reload-data:hover {
            background: linear-gradient(135deg, #059669, #047857);
        }
        
        /* Legend Peta - Desain Baru */
        .peta-legend {
            position: absolute;
            bottom: 25px;
            right: 25px;
            background: rgba(255, 255, 255, 0.95);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            max-width: 250px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .legend-title {
            font-weight: bold;
            margin-bottom: 12px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }
        
        .legend-title i {
            color: #f59e0b;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .legend-color {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin-right: 10px;
            border: 3px solid white;
            box-shadow: 0 0 8px rgba(0,0,0,0.2);
        }
        
        .legend-label {
            font-size: 0.85rem;
            color: var(--text-sub);
            font-weight: 500;
        }
        
        /* Footer Peta - DESAIN BARU DENGAN FORMAT TEKS YANG LEBIH BAIK */
        .peta-footer {
            text-align: center;
            padding: 25px;
            background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
            color: var(--text-sub);
            font-size: 0.9rem;
            border-top: 1px solid #e2e8f0;
        }
        
        .peta-footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .peta-footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: bold;
            color: var(--primary);
            font-size: 0.95rem;
            background: rgba(255, 255, 255, 0.7);
            padding: 10px 20px;
            border-radius: 50px;
            border: 1px solid rgba(25, 118, 210, 0.2);
        }
        
        .peta-footer-logo i {
            color: #f59e0b;
            font-size: 1.2rem;
        }
        
        /* PERBAIKAN FORMAT TEKS FOOTER - DESAIN BARU */
        .footer-info-item {
            background: rgba(255, 255, 255, 0.8);
            padding: 12px 20px;
            border-radius: 10px;
            border: 1px solid rgba(25, 118, 210, 0.1);
            margin: 5px 0;
            transition: var(--transition);
        }
        
        .footer-info-item:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transform: translateY(-3px);
        }
        
        /* PERBAIKAN KHUSUS UNTUK TEKS VERSI APLIKASI - MENGGANTI SIMBOL </> DENGAN ICON YANG LEBIH BAIK */
        .app-version {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .last-update {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        /* Auto Update Info */
        .auto-update-info {
            position: absolute;
            bottom: 25px;
            left: 25px;
            background: rgba(255, 255, 255, 0.95);
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            z-index: 1000;
            border: 1px solid #e2e8f0;
            font-weight: 600;
        }
        
        .auto-update-info i {
            color: #f59e0b;
        }
        
        /* Chart Container - WARNA DIPERBAIKI */
        .chart-container {
            height: 180px;
            margin-top: 15px;
            position: relative;
        }
        
        /* Search Box */
        .search-box {
            margin-bottom: 20px;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 14px 18px 14px 50px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-size: 0.95rem;
            transition: var(--transition);
            background: white;
            color: var(--text-main);
            min-height: 44px;
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.15);
        }
        
        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray-color);
            font-size: 1.1rem;
        }
        
        /* Loading Screen */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .loading.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .spinner {
            width: 70px;
            height: 70px;
            border: 6px solid #f0f0f0;
            border-top: 6px solid var(--accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Notification */
        .notification {
            position: fixed;
            top: 30px;
            right: 30px;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            z-index: 10000;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: slideInRight 0.3s ease-out;
            max-width: 400px;
            font-size: 0.9rem;
        }
        
        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        /* Detail Modal */
        .detail-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10001;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            padding: 15px;
        }
        
        .detail-modal.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .detail-modal .modal-content {
            background: white;
            border-radius: 15px;
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.3s ease-out;
            -webkit-overflow-scrolling: touch;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .detail-modal .modal-header {
            padding: 20px 25px;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .detail-modal .modal-header h3 {
            margin: 0;
            color: var(--primary);
            font-size: 1.4rem;
        }
        
        .detail-modal .modal-close {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--gray-color);
            cursor: pointer;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            min-width: 44px;
            min-height: 44px;
            -webkit-tap-highlight-color: transparent;
        }
        
        .detail-modal .modal-close:hover {
            background: #f1f5f9;
            color: var(--primary);
        }
        
        .detail-modal .modal-body {
            padding: 25px;
            -webkit-overflow-scrolling: touch;
        }
        
        .detail-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .detail-item {
            background: #f8fafc;
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid var(--accent);
        }
        
        .detail-item-title {
            font-size: 0.9rem;
            color: var(--gray-color);
            margin-bottom: 5px;
        }
        
        .detail-item-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        /* ============================================ */
        /* PERBAIKAN UTAMA UNTUK RESPONSIVE MOBILE */
        /* ============================================ */
        
        /* Layout utama untuk mobile */
        .peta-content {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
        }
        
        @media (max-width: 1200px) {
            .peta-content {
                flex-direction: column;
            }
            
            .peta-sidebar, .peta-map-container {
                min-width: 100%;
                width: 100%;
            }
            
            #statistikMap {
                border-radius: 0;
            }
            
            .peta-footer-content {
                flex-direction: column;
                text-align: center;
                gap: 25px;
            }
        }
        
        /* PERBAIKAN KHUSUS UNTUK TABLET */
        @media (max-width: 991px) {
            .peta-map-container {
                height: 500px;
                min-width: 100%;
                order: 1;
            }
            
            .peta-sidebar {
                min-width: 100%;
                max-height: 500px;
                order: 2;
            }
            
            .peta-controls {
                flex-direction: row;
                top: 15px;
                right: 15px;
                gap: 8px;
                flex-wrap: wrap;
                justify-content: flex-end;
            }
            
            .control-btn {
                padding: 10px 14px;
                font-size: 0.85rem;
                min-height: 40px;
                min-width: 40px;
            }
            
            .peta-legend {
                bottom: 15px;
                right: 15px;
                left: 15px;
                max-width: none;
                padding: 15px;
            }
            
            .auto-update-info {
                bottom: 15px;
                left: 15px;
                right: 15px;
                justify-content: center;
                text-align: center;
                padding: 10px 15px;
            }
            
            .desa-list {
                max-height: 300px;
            }
            
            /* Responsive untuk logo menu - DIPERBESAR */
            .menu-logo {
                width: 180px;
                height: 180px;
            }
            
            .info-panel-logo {
                width: 220px;
            }
            
            /* Responsive untuk tombol share yang diperbaiki */
            .share-btn-container {
                opacity: 1;
                transform: translateY(0);
            }
            
            .share-btn {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
        }
        
        /* PERBAIKAN KHUSUS UNTUK SMARTPHONE (768px ke bawah) */
        @media (max-width: 768px) {
            .peta-statistik-title {
                font-size: 1.6rem;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .peta-statistik-title i {
                font-size: 1.8rem;
            }
            
            .peta-subtitle {
                font-size: 1rem;
                line-height: 1.4;
            }
            
            .peta-statistik-header {
                padding: 20px 15px;
            }
            
            .metadata {
                flex-direction: column;
                gap: 10px;
            }
            
            .meta-item {
                width: 100%;
                justify-content: flex-start;
                padding: 10px 15px;
                font-size: 0.85rem;
            }
            
            /* Layout utama untuk mobile - sidebar di atas, peta di bawah */
            .peta-content {
                flex-direction: column;
            }
            
            .peta-map-container {
                height: 400px;
                min-height: 400px;
                order: 2;
            }
            
            .peta-sidebar {
                order: 1;
                max-height: none;
                padding: 20px 15px;
                border-right: none;
                border-bottom: 1px solid #e2e8f0;
            }
            
            #statistikMap {
                height: 400px;
                border-radius: 0;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .stat-value {
                font-size: 1.6rem;
            }
            
            .stat-label {
                font-size: 0.75rem;
            }
            
            /* Tabs untuk mobile */
            .tabs {
                flex-direction: row;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding: 5px 0;
            }
            
            .tab {
                padding: 12px 10px;
                font-size: 0.85rem;
                min-width: 100px;
                white-space: nowrap;
                flex-shrink: 0;
            }
            
            /* Kontrol peta untuk mobile */
            .peta-controls {
                top: 10px;
                right: 10px;
                left: 10px;
                flex-direction: row;
                justify-content: space-between;
                gap: 5px;
            }
            
            .control-btn {
                padding: 8px 12px;
                font-size: 0.75rem;
                flex: 1;
                min-height: 36px;
                justify-content: center;
                text-align: center;
            }
            
            .control-btn i {
                font-size: 0.9rem;
                margin-right: 4px;
            }
            
            /* Legend untuk mobile */
            .peta-legend {
                position: relative;
                bottom: auto;
                right: auto;
                left: auto;
                max-width: 100%;
                margin: 15px;
                padding: 15px;
                border-radius: 10px;
            }
            
            .auto-update-info {
                position: relative;
                bottom: auto;
                left: auto;
                right: auto;
                margin: 15px;
                justify-content: center;
            }
            
            /* Daftar desa untuk mobile */
            .desa-list {
                max-height: 250px;
            }
            
            .desa-item {
                padding: 12px 15px;
                min-height: 55px;
            }
            
            .desa-name {
                font-size: 0.9rem;
            }
            
            .desa-details {
                font-size: 0.75rem;
                flex-direction: column;
                gap: 5px;
            }
            
            /* Stats box untuk mobile */
            .stats-box {
                padding: 20px 15px;
                margin-bottom: 20px;
            }
            
            .stats-title {
                font-size: 1.1rem;
            }
            
            /* Chart untuk mobile */
            .chart-container {
                height: 150px;
            }
            
            /* Search box untuk mobile */
            .search-input {
                padding: 12px 15px 12px 45px;
                font-size: 0.9rem;
            }
            
            .search-icon {
                left: 15px;
            }
            
            /* Footer untuk mobile */
            .peta-footer {
                padding: 20px 15px;
            }
            
            .footer-info-item {
                margin: 8px 0;
                padding: 10px 15px;
                font-size: 0.85rem;
            }
            
            .app-version, .last-update {
                font-size: 0.8rem;
                padding: 6px 12px;
            }
            
            /* Detail modal untuk mobile */
            .detail-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .detail-modal .modal-content {
                width: 100%;
                margin: 0;
                max-height: 85vh;
            }
            
            .detail-modal .modal-header {
                padding: 15px 20px;
            }
            
            .detail-modal .modal-body {
                padding: 20px;
            }
            
            .detail-item {
                padding: 12px;
            }
            
            .detail-item-value {
                font-size: 1rem;
            }
            
            /* Responsive untuk logo menu - DIPERBESAR */
            .menu-logo {
                width: 160px;
                height: 160px;
            }
            
            .info-panel-logo {
                width: 200px;
            }
            
            /* Responsive untuk tombol share yang diperbaiki */
            .share-btn-container {
                top: 10px;
                right: 10px;
                gap: 6px;
            }
            
            .share-btn {
                width: 34px;
                height: 34px;
                font-size: 0.9rem;
            }
        }
        
        /* PERBAIKAN UNTUK SMARTPHONE KECIL (576px ke bawah) */
        @media (max-width: 576px) {
            .peta-statistik-title {
                font-size: 1.4rem;
            }
            
            .peta-subtitle {
                font-size: 0.95rem;
            }
            
            .peta-map-container {
                height: 350px;
                min-height: 350px;
            }
            
            #statistikMap {
                height: 350px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .stat-item {
                padding: 15px 10px;
            }
            
            .stat-value {
                font-size: 1.8rem;
            }
            
            .control-btn {
                padding: 8px 10px;
                font-size: 0.7rem;
                min-height: 34px;
            }
            
            .control-btn i {
                font-size: 0.8rem;
                margin-right: 3px;
            }
            
            .tabs {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            
            .tabs::-webkit-scrollbar {
                display: none;
            }
            
            .tab {
                padding: 10px 8px;
                font-size: 0.8rem;
                min-width: 90px;
            }
            
            .peta-controls {
                gap: 5px;
            }
            
            .desa-list {
                max-height: 200px;
            }
            
            .desa-item {
                padding: 10px 12px;
                min-height: 50px;
            }
            
            .chart-container {
                height: 130px;
            }
            
            /* Perbaikan untuk teks yang terlalu panjang */
            .desa-name, .meta-item, .footer-info-item {
                word-break: break-word;
            }
            
            /* Responsive untuk logo menu - DIPERBESAR */
            .menu-logo {
                width: 140px;
                height: 140px;
            }
            
            .info-panel-logo {
                width: 180px;
            }
        }
        
        /* PERBAIKAN UNTUK SMARTPHONE SANGAT KECIL (400px ke bawah) */
        @media (max-width: 400px) {
            .peta-map-container {
                height: 300px;
                min-height: 300px;
            }
            
            #statistikMap {
                height: 300px;
            }
            
            .peta-statistik-header {
                padding: 15px 12px;
            }
            
            .peta-statistik-title {
                font-size: 1.2rem;
            }
            
            .peta-subtitle {
                font-size: 0.9rem;
            }
            
            .meta-item {
                padding: 8px 12px;
                font-size: 0.8rem;
            }
            
            .control-btn {
                padding: 6px 8px;
                font-size: 0.65rem;
                min-height: 32px;
            }
            
            .control-btn i {
                font-size: 0.75rem;
                margin-right: 2px;
            }
            
            .tab {
                padding: 8px 6px;
                font-size: 0.75rem;
                min-width: 80px;
            }
            
            .stats-box {
                padding: 15px 12px;
            }
            
            .stats-title {
                font-size: 1rem;
            }
            
            .stat-value {
                font-size: 1.6rem;
            }
            
            .desa-list {
                max-height: 180px;
            }
            
            /* Perbaikan untuk layout vertikal pada kontrol yang sangat kecil */
            .peta-controls {
                flex-direction: column;
                align-items: flex-end;
                gap: 5px;
            }
            
            .control-btn {
                width: auto;
                min-width: 120px;
            }
            
            /* Responsive untuk logo menu - DIPERBESAR */
            .menu-logo {
                width: 120px;
                height: 120px;
            }
            
            .info-panel-logo {
                width: 150px;
            }
        }

        /* --- Form Section --- */
        .aduan-section {
            padding: 100px 0;
            background-color: white; 
            position: relative;
        }

        .form-container {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08); 
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }

        .info-panel {
            background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
            padding: 50px;
            color: white;
            position: relative;
        }

        .info-panel h3 { color: white !important; }
        .info-panel p { color: rgba(255,255,255,0.8); }

        .form-panel {
            padding: 50px;
            background-color: white;
        }

        .form-label {
            color: var(--text-main); 
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .form-control {
            background-color: #f8fafc;
            border: 2px solid #cbd5e1;
            color: #334155;
            padding: 12px 15px;
            border-radius: 10px;
            font-weight: 500;
            min-height: 44px;
        }

        .form-control:focus {
            background-color: white;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
            color: #000;
        }
        
        .form-control::placeholder {
            color: #94a3b8;
        }

        .btn-wa {
            background-color: #25D366;
            color: white;
            font-weight: 700;
            width: 100%;
            padding: 16px;
            border-radius: 10px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 1.1rem;
            transition: 0.3s;
            min-height: 44px;
        }
        .btn-wa:hover {
            background-color: #1ebc57;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
            color: white;
        }

        /* --- Peta Section --- */
        .peta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        /* --- Lightbox Modal Styles --- */
        .lightbox-modal .modal-dialog {
            max-width: 95%;
            max-height: 95vh;
            margin: 10px auto;
        }

        .lightbox-modal .modal-content {
            background: rgba(0, 0, 0, 0.9);
            border: none;
            border-radius: 10px;
            overflow: hidden;
        }

        .lightbox-modal .modal-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px 20px;
        }

        .lightbox-modal .modal-title {
            color: white;
            font-size: 1.2rem;
        }

        .lightbox-modal .btn-close {
            background-color: white;
            opacity: 1;
            padding: 8px;
            border-radius: 50%;
            min-width: 44px;
            min-height: 44px;
        }

        .lightbox-modal .modal-body {
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 60vh;
            max-height: 70vh;
            overflow: hidden;
        }

        .lightbox-modal .lightbox-image {
            max-width: 100%;
            max-height: 70vh;
            object-fit: contain;
            border-radius: 5px;
        }

        .lightbox-modal .modal-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .lightbox-nav {
            display: flex;
            gap: 10px;
        }

        .lightbox-nav-btn {
            background: rgba(255, 255,255, 0.2);
            border: none;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            min-width: 44px;
            min-height: 44px;
        }

        .lightbox-nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .lightbox-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .lightbox-zoom-controls {
            display: flex;
            gap: 10px;
        }

        .lightbox-counter {
            color: white;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

        /* --- Footer --- */
        footer {
            background-color: var(--primary-dark);
            color: #cbd5e1;
            padding-top: 0;
            position: relative;
            margin-top: 50px;
        }

        .footer-wave {
            line-height: 0;
            width: 100%;
            background-color: white; 
        }
        .footer-wave svg {
            display: block;
            width: 100%;
            height: 60px;
            fill: var(--primary-dark);
        }

        .footer-content {
            padding: 60px 0 40px;
        }

        footer h5 {
            color: white;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        footer h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 40px;
            height: 3px;
            background-color: #f59e0b;
            border-radius: 2px;
        }

        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 5px 0;
            min-height: 44px;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        /* PERBAIKAN: Kontak Item dengan Icon yang Lebih Terang */
        .contact-item {
            display: flex;
            align-items: start;
            gap: 15px;
            margin-bottom: 20px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 12px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
        }
        
        .contact-item.clickable {
            cursor: pointer;
        }
        
        /* Efek hover untuk contact item */
        .contact-item.clickable:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .contact-item.clickable:active {
            transform: scale(0.98);
        }
        
        /* Animasi getaran/pancaran untuk alamat dan whatsapp - VERSI PERBAIKAN */
        @keyframes pulse-animation-smooth {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(37, 99, 235, 0.1);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
            }
        }
        
        @keyframes pulse-green-animation-smooth {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.1);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        .contact-item.clickable.active-pulse {
            animation: pulse-animation-smooth 2s infinite;
        }
        
        .contact-item.clickable.active-pulse-green {
            animation: pulse-green-animation-smooth 2s infinite;
        }
        
        .contact-icon {
            background: rgba(255, 255, 255, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f59e0b;
            flex-shrink: 0;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid rgba(245, 158, 11, 0.3);
        }
        
        .contact-icon:hover {
            background: rgba(245, 158, 11, 0.2);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
            border-color: #f59e0b;
        }

        .contact-item-content span {
            display: block;
            color: white;
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1rem;
        }
        
        .contact-item-content small {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .copyright {
            background-color: rgba(0,0,0,0.3);
            padding: 20px 0;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }

        /* PERBAIKAN TAMBAHAN: Social Media Icons di Footer */
        .social-media-icons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        
        .social-icon {
            background: rgba(255, 255, 255, 0.1);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f59e0b;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            border: 1px solid rgba(245, 158, 11, 0.2);
        }
        
        .social-icon:hover {
            background: #f59e0b;
            color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
        }

        /* --- RESPONSIVE MEDIA QUERIES UNTUK BAGIAN LAIN --- */
        @media (max-width: 991px) {
            .hero-section {
                padding-top: 120px;
                text-align: center;
                background-position: left center;
            }
            .hero-overlay {
                background: linear-gradient(to bottom, rgba(240, 249, 255, 0.95) 0%, rgba(240, 249, 255, 0.8) 100%);
            }
            .hero-badge {
                margin: 0 auto 20px auto;
            }
            .d-flex.gap-3 {
                justify-content: center;
                flex-wrap: wrap;
            }
            .form-panel {
                padding: 30px 20px;
            }
            .info-panel {
                padding: 30px 20px;
            }
            .gallery-thumbnail-container {
                height: 150px;
            }
            .lightbox-modal .modal-dialog {
                max-width: 98%;
                margin: 5px auto;
            }
        }

        @media (max-width: 768px) {
            .gallery-thumbnail-container {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(3, 1fr);
                height: 200px;
            }
            .lightbox-modal .modal-footer {
                flex-direction: column;
                gap: 15px;
                align-items: stretch;
            }
            .lightbox-nav, .lightbox-zoom-controls {
                justify-content: center;
            }
            .peta-section {
                padding: 50px 0;
            }
        }

        @media (max-width: 576px) {
            .display-3 {
                font-size: 2.5rem; 
            }
            .slogan-signature {
                font-size: 2rem;
                margin-bottom: 15px;
            }
            .lead {
                font-size: 1rem;
            }
            .hero-section {
                padding-top: 130px; 
                padding-bottom: 50px;
            }
            .navbar-brand div h5 {
                font-size: 1rem;
            }
            .navbar-brand div span {
                font-size: 0.65rem;
            }
            .btn-cta {
                width: 100%; 
                margin-bottom: 10px;
            }
            .btn-outline-primary {
                width: 100%;
            }
            .gallery-thumbnail-container {
                height: 160px;
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(3, 1fr);
            }
            .lightbox-modal .modal-body {
                max-height: 60vh;
            }
            .service-card {
                padding: 30px 20px;
            }
            .aduan-section {
                padding: 70px 0;
            }
            .form-panel {
                padding: 25px 15px;
            }
            .info-panel {
                padding: 25px 15px;
            }
            
            /* Responsive untuk contact icon di footer */
            .contact-icon {
                width: 44px;
                height: 44px;
                font-size: 1rem;
            }
            
            .contact-item-content span {
                font-size: 0.95rem;
            }
            
            .contact-item-content small {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 400px) {
            .gallery-thumbnail-container {
                height: 140px;
            }
        }
        
        /* ============================================ */
        /* PERBAIKAN KHUSUS UNTUK TOUCH SCREEN MOBILE */
        /* ============================================ */
        
        /* Perbaikan untuk elemen yang dapat disentuh */
        .touch-friendly {
            min-height: 44px;
            min-width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Mencegah highlight biru pada tap di mobile */
        * {
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        }
        
        /* Perbaikan scroll untuk mobile */
        .mobile-scroll-fix {
            -webkit-overflow-scrolling: touch;
            overflow-y: auto;
        }
        
        /* Perbaikan untuk mencegah zoom pada input di iOS */
        @media screen and (max-width: 768px) {
            input, select, textarea {
                font-size: 16px !important;
            }
        }
        
        /* Perbaikan untuk peta Leaflet di mobile */
        .leaflet-container {
            font-family: var(--font-body) !important;
        }
        
        .leaflet-control-zoom {
            margin: 10px !important;
        }
        
        .leaflet-control-zoom a {
            width: 34px !important;
            height: 34px !important;
            line-height: 34px !important;
            font-size: 18px !important;
            min-width: 34px !important;
            min-height: 34px !important;
        }
        
        /* Perbaikan untuk marker di mobile */
        .leaflet-marker-icon {
            cursor: pointer !important;
        }
        
        /* Perbaikan untuk popup di mobile */
        .leaflet-popup-content {
            font-family: var(--font-body) !important;
            font-size: 14px !important;
            max-width: 280px !important;
        }
        
        .leaflet-popup-content-wrapper {
            border-radius: 12px !important;
        }
        
        /* Perbaikan untuk menghilangkan delay pada tap di mobile */
        a, button, .btn, .nav-link, .tab, .control-btn, .desa-item {
            touch-action: manipulation;
        }
        
        /* Perbaikan untuk mencegah text selection yang tidak diinginkan */
        .no-select {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        
        /* Animasi yang lebih smooth untuk mobile */
        .smooth-transition {
            transition: all 0.2s ease;
        }
   
