* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Poppins', sans-serif; background: #f8fafc; color: #1e293b; }
        :root { --primary: #007bff; --primary-dark: #0056b3; }

        /* NAVBAR */
        .navbar { background: white; box-shadow: 0 2px 12px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
        .nav-container { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
        .logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
        .logo img { height: 40px; }
        .logo span { font-weight: 700; font-size: 1.1rem; color: #1e293b; }
        .nav-links { display: flex; gap: 1.5rem; align-items: center; }
        .nav-links a { text-decoration: none; color: #64748b; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
        .nav-links a:hover { color: var(--primary); }
        .nav-links a.active { color: var(--primary); font-weight: 600; }

        /* HERO */
        .page-hero {
            background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #003d80 100%);
            color: white;
            padding: 4rem 1.5rem 3rem;
            text-align: center;
        }
        .page-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.75rem; }
        .page-hero p { font-size: 1rem; opacity: 0.9; }

        /* FILTER TABS */
        .filter-section { background: white; border-bottom: 1px solid #e2e8f0; position: sticky; top: 65px; z-index: 90; }
        .filter-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; gap: 0.5rem; overflow-x: auto; scrollbar-width: none; }
        .filter-container::-webkit-scrollbar { display: none; }
        .filter-tab {
            display: inline-flex; align-items: center; gap: 0.4rem;
            padding: 1rem 1.25rem; border-bottom: 3px solid transparent;
            color: #64748b; font-size: 0.88rem; font-weight: 500;
            text-decoration: none; white-space: nowrap; transition: all 0.2s;
        }
        .filter-tab:hover { color: var(--primary); }
        .filter-tab.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }

        /* CONTENT */
        .container { max-width: 1200px; margin: 0 auto; padding: 2.5rem 1.5rem; }

        /* STATS */
        .result-info { color: #64748b; font-size: 0.9rem; margin-bottom: 2rem; }
        .result-info strong { color: #1e293b; }

        /* PACKAGES GRID */
        .packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

        /* PACKAGE CARD */
        .package-card {
            background: white; border-radius: 16px; overflow: hidden;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s;
            display: flex; flex-direction: column;
        }
        .package-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

        .card-image {
            height: 200px; overflow: hidden; position: relative;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex; align-items: center; justify-content: center;
        }
        .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
        .package-card:hover .card-image img { transform: scale(1.05); }
        .card-image-placeholder { color: white; font-size: 3rem; }

        .badge-popular {
            position: absolute; top: 12px; left: 12px;
            background: #f59e0b; color: white;
            padding: 0.25rem 0.75rem; border-radius: 20px;
            font-size: 0.75rem; font-weight: 600;
        }
        .badge-category {
            position: absolute; top: 12px; right: 12px;
            background: rgba(0,0,0,0.5); color: white;
            padding: 0.25rem 0.75rem; border-radius: 20px;
            font-size: 0.75rem; font-weight: 500; backdrop-filter: blur(4px);
        }

        .card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
        .card-title { font-size: 1rem; font-weight: 700; color: #1e293b; margin-bottom: 0.5rem; line-height: 1.4; }
        .card-meta { display: flex; gap: 1rem; margin-bottom: 0.75rem; }
        .card-meta span { font-size: 0.8rem; color: #64748b; display: flex; align-items: center; gap: 0.3rem; }
        .card-desc { font-size: 0.85rem; color: #64748b; line-height: 1.6; margin-bottom: 1rem; flex: 1;
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid #f1f5f9; }
        .card-price { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
        .card-price small { font-size: 0.75rem; font-weight: 400; color: #94a3b8; display: block; }

        .btn-book {
            padding: 0.6rem 1.25rem; background: var(--primary); color: white;
            border: none; border-radius: 10px; font-size: 0.85rem; font-weight: 600;
            cursor: pointer; text-decoration: none; transition: background 0.2s;
        }
        .btn-book:hover { background: var(--primary-dark); }

        /* EMPTY STATE */
        .empty-state { text-align: center; padding: 5rem 1rem; color: #94a3b8; }
        .empty-state i { font-size: 4rem; margin-bottom: 1rem; display: block; }
        .empty-state h3 { font-size: 1.3rem; color: #64748b; margin-bottom: 0.5rem; }
        .empty-state p { margin-bottom: 1.5rem; }
        .btn-back { display: inline-block; padding: 0.75rem 2rem; background: var(--primary); color: white; border-radius: 10px; text-decoration: none; font-weight: 600; }

        /* RESPONSIVE */
        html, body { overflow-x: hidden; max-width: 100%; }

        @media (max-width: 768px) {
            /* Navbar */
            .navbar { padding: 0; }
            .nav-container { padding: 0.75rem 1rem; }
            .logo img { height: 32px; }
            .logo span { font-size: 0.9rem; }
            .nav-links { display: none; }

            /* Hero */
            .page-hero { padding: 2.5rem 1rem 2rem; }
            .page-hero h1 { font-size: 1.4rem; }
            .page-hero p { font-size: 0.88rem; }

            /* Filter tabs */
            .filter-section { top: 55px; }
            .filter-container { padding: 0 0.75rem; }
            .filter-tab { padding: 0.75rem 0.85rem; font-size: 0.82rem; }

            /* Container */
            .container { padding: 1.5rem 1rem; }
            .result-info { font-size: 0.85rem; margin-bottom: 1.25rem; }

            /* Grid paket - 1 kolom di HP */
            .packages-grid { grid-template-columns: 1fr; gap: 1rem; }

            /* Card */
            .card-image { height: 170px; }
            .card-body { padding: 1rem; }
            .card-title { font-size: 0.95rem; }
            .card-meta { gap: 0.75rem; }
            .card-price { font-size: 1rem; }
            .btn-book { padding: 0.5rem 1rem; font-size: 0.82rem; }
        }

        /* Fix contact section */
.contact-grid {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    #contact {
        padding: 2.5rem 1rem !important;
    }
    #contact h2 {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 480px) {
            .page-hero h1 { font-size: 1.2rem; }
            .packages-grid { grid-template-columns: 1fr; }
            .card-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
            .btn-book { width: 100%; text-align: center; }
        }
/* Tombol kembali mobile */
.back-link-mobile {
    display: none;
    color: #007bff;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    align-items: center;
    gap: 0.4rem;
}

@media (max-width: 768px) {
    .back-link-mobile { display: flex; }
}