		* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navbar + Search + Logo */
        .navbar {
            background: #006666;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
        
        .logo-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-brand img {
            width: 70px;
            height: 50px;
            object-fit: contain;
            border-radius: 8px;
        }
        
        .logo-text {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
        }
        
        .search-box {
            flex: 1;
            max-width: 500px;
            position: relative;
        }
        
        .search-box input {
            width: 100%;
            padding: 10px 40px 10px 15px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            outline: none;
        }
        
        .search-box .icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('../images/Alunalunbatu.jpeg') center/cover;
            color: white;
            padding: 80px 20px 60px;
            text-align: left;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .hero p {
            max-width: 800px;
            font-size: 1rem;
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 8px;
        }
        
        .section-title {
            text-align: center;
            margin: 60px 0 40px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: #008080;
            font-weight: 700;
        }
        
        /* Jawa Timur Park Section */
        .jtp-section {
            display: flex;
            background: #008080;
            color: white;
            margin-bottom: 40px;
        }
        
        .jtp-left {
            flex: 1;
            padding: 40px;
            background: #006666;
        }
        
        .jtp-left h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .jtp-right {
            flex: 2;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 40px;
        }
        
        .card {
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            transition: 0.3s;
        }
        
        .card.hide {
            display: none;
        }
        
        .card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        
        .card h4 {
            padding: 10px;
            background: #006666;
            font-size: 1rem;
        }
        
        .card p {
            padding: 15px;
            font-size: 0.85rem;
            text-align: left;
        }
        
        .map-btn {
            display: inline-block;
            background: #fff;
            color: #008080;
            padding: 8px 15px;
            margin: 0 15px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            transition: 0.3s;
        }
        
        .map-btn:hover {
            background: #00b894;
            color: white;
        }
        
        /* Destinasi Lainnya */
        .destinasi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }
        
        .destinasi-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: 0.3s;
        }
        
        .destinasi-card.hide {
            display: none;
        }
        
        .destinasi-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .destinasi-content {
            padding: 15px;
        }
        
        .destinasi-content h4 {
            color: #008080;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .destinasi-content p {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 15px;
        }
        
        .destinasi-content .map-btn {
            background: #008080;
            color: white;
            margin: 0;
        }
        
        /* Wisata Pemkot */
        .pemkot-section {
            display: flex;
            background: #008080;
            color: white;
        }
        
        .pemkot-left {
            flex: 1;
            padding: 40px;
            background: #006666;
        }
        
        .pemkot-left h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .pemkot-right {
            flex: 2;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 40px;
        }
        
        .no-result {
            text-align: center;
            padding: 40px;
            color: #666;
            font-size: 1.1rem;
            display: none;
        }
        
        /* Tombol WhatsApp Floating */
        .wa-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: #25D366;
            color: white;
            border-radius: 50px;
            padding: 12px 20px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }
        
        .wa-float:hover {
            background: #128C7E;
            transform: scale(1.05);
        }
        
        /* Responsive */
        @media (max-width: 900px) {
            .jtp-section, .pemkot-section {
                flex-direction: column;
            }
            .jtp-right, .pemkot-right {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .nav-content {
                flex-direction: column;
            }
            .search-box {
                max-width: 100%;
            }
            .wa-float span {
                display: none;
            }
            .wa-float {
                padding: 15px;
                border-radius: 50%;
            }
            .logo-text {
                font-size: 1.1rem;
            }
        }