        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Segoe UI', sans-serif;
            background: #fff;
            color: #333;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 30px 20px;
            background: #fff;
        }

        /* ── Header ── */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }
        .section-header h2 { font-size: 22px; font-weight: 700; color: #0ea5e9; }
        .show-more { color: #555; text-decoration: none; font-size: 14px; }
        .show-more:hover { text-decoration: underline; }

        /* ── Carousel wrapper ── */
        .carousel-wrapper { position: relative; }
        .carousel-viewport { overflow: hidden; }

        .carousel-track {
            display: flex;
            transition: transform 0.4s ease;
            will-change: transform;
        }

        /*
         * Each slide = one "page".
         * Desktop: grid 3×2 (6 cards).  Mobile: single card, no grid.
         * We control this via JS by rebuilding slides on resize.
         */
        .carousel-slide {
            flex: 0 0 100%;
            /* grid set by JS */
        }

        /* ── Nav arrows ── */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px; height: 44px;
            border-radius: 50%;
            background: #fff;
            border: none;
            box-shadow: 0 2px 12px rgba(0,0,0,0.18);
            cursor: pointer;
            font-size: 24px;
            color: #333;
            display: flex; align-items: center; justify-content: center;
            z-index: 10;
            transition: background 0.2s, color 0.2s;
        }
        .carousel-btn:hover:not(:disabled) { background: #1565c0; color: #fff; }
        .carousel-btn:disabled { opacity: 0.25; cursor: default; }
        .carousel-btn.prev { left: -22px; }
        .carousel-btn.next { right: -22px; }

        /* On small screens push arrows inside */
        @media (max-width: 600px) {
            .carousel-btn.prev { left: 4px; }
            .carousel-btn.next { right: 4px; }
            .carousel-btn { width: 36px; height: 36px; font-size: 20px; }
        }

        /* ── Dots ── */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 22px;
            flex-wrap: wrap;
        }
        .dot {
            width: 9px; height: 9px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            flex-shrink: 0;
        }
        .dot.active { background: #1565c0; transform: scale(1.3); }

        /* ── Card base ── */
        .card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .card:hover {
            box-shadow: 0 6px 20px rgba(0,0,0,0.13);
            transform: translateY(-3px);
        }
        .card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 14px;
        }
        .provider-info { display: flex; align-items: center; gap: 8px; overflow: hidden; }
        .provider-avatar {
            width: 30px; height: 30px;
            border-radius: 50%; background: #ddd;
            overflow: hidden; flex-shrink: 0;
        }
        .provider-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .provider-name {
            font-size: 13px; font-weight: 600; color: #222;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .badge-gold {
            background: #f5c518; color: #000;
            font-size: 11px; font-weight: 700;
            padding: 3px 10px; border-radius: 20px;
            flex-shrink: 0; margin-left: 6px;
        }
        .image-wrap { position: relative; height: 175px; overflow: hidden; }
        .image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
        .card:hover .image-wrap img { transform: scale(1.04); }
        .tag {
            position: absolute; top: 10px; left: 10px;
            padding: 4px 12px; border-radius: 20px;
            font-size: 12px; font-weight: 600; color: #fff;
        }
        .tag-backpacker { background: #2196f3; }
        .tag-shuttle    { background: #00bcd4; }
        .wishlist-btn {
            position: absolute; top: 10px; right: 10px;
            width: 32px; height: 32px; border-radius: 50%;
            background: rgba(255,255,255,0.85);
            border: none; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px; color: #999;
            transition: color 0.2s;
        }
        .wishlist-btn:hover { color: #e53935; }
        .card-body { padding: 14px; }
        .card-title {
            font-size: 14px; font-weight: 700; color: #111;
            margin-bottom: 5px; line-height: 1.4; min-height: 38px;
        }
        .card-categories { font-size: 12px; color: #777; margin-bottom: 8px; }
        .card-no-facility { font-size: 12px; color: #999; margin-bottom: 8px; }
        .card-rating {
            display: flex; align-items: center; gap: 5px;
            font-size: 13px; color: #555; margin-bottom: 10px;
        }
        .star { color: #f5c518; font-size: 14px; }
        .card-footer {
            display: flex; align-items: center; justify-content: space-between;
            border-top: 1px solid #f0f0f0;
            padding-top: 10px; margin-top: 4px;
        }
        .price { font-size: 14px; font-weight: 700; color: #1565c0; }
        .duration { font-size: 12px; color: #888; }

        /* Mobile: image taller for single-card view */
        @media (max-width: 600px) {
            .image-wrap { height: 220px; }
            .card-title { font-size: 15px; min-height: auto; }
        }
        
        
        
        /*MAP*/
        /* ── Section wrapper ── */
.location-section {
    padding: 80px 24px;
    background: #fff;
}

/* ── Header ── */
.location-header {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.location-label {
    display: inline-block;
    background: linear-gradient(135deg, #e0f7ff 0%, #7dd3fc 50%, #0ea5e9 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.location-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 22px; 
    font-weight: 700;
    color: #0ea5e9;
    line-height: 1.15;
    margin-bottom: 12px;
}

/* Kata kedua berwarna biru laut */
.location-title span { color: #0ea5e9; }

.location-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 420px;
    line-height: 1.7;
}

/* ── Card grid ── */
.location-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10,61,98,0.15);
}

/* ══════════════════════════════════════════
   INFO PANEL (kiri)
   Gradien: biru dalam → biru laut terang
══════════════════════════════════════════ */
.location-info {
    background: linear-gradient(135deg, #e0f7ff 0%, #7dd3fc 50%, #0ea5e9 100%);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Dekorasi gelombang bulat */
.location-info::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    border: 45px solid rgba(255,255,255,0.07);
    bottom: -90px; right: -90px;
    pointer-events: none;
}

.location-info::after {
    content: '';
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    border: 30px solid rgba(6,182,212,0.15);
    top: -50px; left: -50px;
    pointer-events: none;
}

.info-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 24px;
}

.info-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 32px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.info-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.info-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: #fff;
}

.info-text-label {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.info-text-value {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.info-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 24px 0;
}

.info-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-score {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.rating-stars { color: #fbbf24; font-size: 14px; letter-spacing: 2px; }
.rating-count { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }

.info-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    align-self: flex-start;
    box-shadow: 0 4px 16px rgba(6,182,212,0.35);
}

.info-cta:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(6,182,212,0.45);
}

.location-map {
    position: relative;
    min-height: 500px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    min-height: 500px;
}

@media (max-width: 768px) {

    /* Ubah grid jadi 1 kolom */
    .location-grid {
        grid-template-columns: 1fr;
        box-shadow: 0 12px 40px rgba(10,61,98,0.12);
    }

    .location-info {
        display: none;
    }

    .location-map {
        min-height: 400px;
        border-radius: 20px; 
    }

    .location-map iframe {
        min-height: 400px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .location-section { padding: 52px 16px; }
    .location-map,
    .location-map iframe { min-height: 320px; }
}
