 .hero-title {
            display: inline-block;
            font-size: 4rem;
            /* ukuran bebas */
            font-weight: bold;
            height: 5rem;
            /* kunci tinggi agar tidak "naik turun" */
            line-height: 2.5rem;
            /* sejajarkan teks secara vertikal */
            vertical-align: middle;
            overflow: hidden;
            /* pastikan tidak overflow */
            white-space: nowrap;
            /* teks tidak membungkus */
        }

        /* Tombol Wilayah Stylish */
        .wilayah-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            overflow-x: auto;
            padding: 10px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        /* 🔹 Container tombol wilayah */
        .wilayah-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
            overflow-x: auto;
            padding: 8px 5px;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }

        /* 🔹 Tombol wilayah */
        .wilayah-btn {
            white-space: nowrap;
            border: none;
            background: linear-gradient(145deg, #ffffff, #e2e8f0);
            color: #0d6efd;
            padding: 10px 25px;
            font-weight: 600;
            font-size: 15px;
            border-radius: 50px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.25s ease;
            flex-shrink: 0;
        }

        /* 🔹 Efek hover */
        .wilayah-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(13, 110, 253, 0.25);
        }

        /* 🔹 Tombol aktif */
        .wilayah-btn.active {
            background: linear-gradient(135deg, #0d6efd, #007bff);
            color: #fff;
            box-shadow: 0 5px 20px rgba(13, 110, 253, 0.35);
            transform: translateY(-2px);
        }

        /* 🔹 Hilangkan scrollbar di semua perangkat */
        .wilayah-buttons::-webkit-scrollbar {
            display: none;
        }

        .wilayah-buttons {
            -ms-overflow-style: none;
            /* IE dan Edge */
            scrollbar-width: none;
            /* Firefox */
        }

        /* 🔹 Alert wilayah */
        .alert[data-wilayah] {
            display: none;
        }

        .alert[data-wilayah].show {
            display: block;
            animation: fadeIn 0.4s ease-in-out;
        }

        /* 🔹 Animasi muncul lembut */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-6px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 🔹 Responsif di layar kecil */
        @media (max-width: 576px) {
            .wilayah-buttons {
                justify-content: flex-start;
                gap: 8px;
            }

            .wilayah-btn {
                font-size: 14px;
                padding: 8px 18px;
            }
        }

        .partner-logo {
            background: #ffffff;
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .partner-logo img {
            max-height: 60px;
            filter: grayscale(100%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .partner-logo:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        #map {
            width: 100%;
            height: 450px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }

        /* 🔧 Biar tombol zoom & layer selector tidak offside */
        .leaflet-top,
        .leaflet-bottom {
            z-index: 999 !important;
        }

        .leaflet-control-zoom {
            margin: 15px !important;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .leaflet-control-zoom a {
            background-color: #ffffff !important;
            color: #333 !important;
            border: none !important;
        }

        /* 🧭 Tombol pilih layer (warna/satelit) */
        .leaflet-control-layers {
            background: #fff !important;
            border-radius: 10px !important;
            padding: 6px 10px !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
            margin-top: 15px !important;
            margin-right: 15px !important;
        }

        .leaflet-control-layers label {
            font-size: 13px;
            color: #333;
            font-weight: 500;
        }

        .footer-main {

            color: #021839ff;
            padding: 60px 0;
        }

        .footer-main .sitename {
            color: #021839ff;
            letter-spacing: 1px;
        }

        .footer-main .brand-description {
            font-size: 15px;
            line-height: 1.6;
        }

        .footer-main .contact-item i {
            color: #0d6efd;
            font-size: 1.2rem;
        }

        .footer-main .contact-info {
            font-size: 15px;
        }

        .footer-main .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
        }