:root {
    --bg:         #ece3c6;
    --bg-soft:    #f6f0da;
    --card:       #fbf8ee;
    --ink:        #16331f;
    --ink-soft:   #55624a;
    --border:     #ddd0a3;
    --green:      #2d6b3f;
    --green-dark: #1c4a2a;
    --green-light:#6fbf73;
    --price:      #9c6b26;
    --dark:       #0e2419;
    --dark-2:     #16331f;
    --wa-green:   #25d366;
    --radius:     16px;
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(circle, rgba(28,74,42,.05) 1.4px, transparent 1.4px) 0 0 / 22px 22px,
        var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    position: relative;
}

h1, h2.section-title, .brand-name, .package-badge, .banner-badge, .partnership-eyebrow, .step-badge-title {
    font-family: 'Baloo 2', 'Poppins', sans-serif;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
}
.glow-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(111,191,115,.16), transparent 70%);
    top: -180px; right: -160px;
}
.glow-2 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(45,107,63,.14), transparent 70%);
    bottom: 10%; left: -200px;
}
.glow-3 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(213,164,74,.16), transparent 70%);
    top: 40%; right: -140px;
}

a { color: inherit; text-decoration: none; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fdf8ec;
    box-shadow: 0 8px 24px rgba(45,107,63,.35);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(22,51,31,.35);
    color: var(--ink);
}
.btn-outline:hover { background: rgba(22,51,31,.06); }
.btn-wa {
    background: var(--wa-green);
    color: #fff;
    box-shadow: 0 8px 20px rgba(37,211,102,.3);
}
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
    position: sticky; top: 0; z-index: 50;
    background: rgba(14,36,25,.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fdf8ec; }
.brand-mark { font-size: 1.6rem; }
.brand-logo { height: 38px; width: auto; border-radius: 8px; }
.brand-name { font-weight: 700; font-size: 1.15rem; letter-spacing: .3px; }

.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 500; color: #cfe0d2; font-size: .95rem; }
.nav-links a:hover { color: var(--green-light); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fdf8ec; border-radius: 2px; }

.nav-wa { padding: 10px 20px; font-size: .88rem; }

/* ---------- Hero (photo background — keep light text + strong overlay for legibility) ---------- */
.hero {
    position: relative; z-index: 1; padding: 100px 0 80px; text-align: center;
    background-color: var(--dark);
    background-image: url('../img/hero-bg-mobile-v2.jpg');
    background-size: cover;
    background-position: center 20%;
    overflow: hidden;
}
@media (min-width: 768px) {
    .hero {
        background-image: url('../img/hero-bg-desktop-v2.jpg');
        background-position: center 40%;
    }
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(180deg,
        rgba(14,36,25,.62) 0%,
        rgba(14,36,25,.8) 55%,
        var(--dark) 100%);
}
.hero .hero-inner { position: relative; z-index: 1; }
.eyebrow {
    color: #f3e3b8; font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; font-size: .8rem; margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.hero h1 {
    font-size: clamp(1.9rem, 8vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,.45);
    margin-bottom: 16px;
    line-height: 1.15;
}
.hero-tagline {
    font-size: clamp(1rem, 4vw, 1.25rem);
    font-weight: 600;
    color: #b9e8bd;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
    margin-bottom: 14px;
}
.hero-sub {
    max-width: 620px; margin: 0 auto 32px;
    color: #dce8de; font-size: clamp(.92rem, 3.6vw, 1rem); line-height: 1.65;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero .btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,.12); }

/* ---------- Sections common ---------- */
section { position: relative; z-index: 1; padding: 70px 0; }
.section-title {
    font-size: clamp(1.45rem, 5.5vw, 2.2rem); font-weight: 700; text-align: center;
    margin-bottom: 10px; color: var(--ink);
}
.section-sub {
    text-align: center; color: var(--ink-soft); max-width: 560px; margin: 0 auto 44px;
    font-size: clamp(.9rem, 3.4vw, 1rem);
}

/* ---------- Why Us ---------- */
.why-us {
    position: relative;
    background-image: url('../img/why-us-jeep.jpg');
    background-size: cover;
    background-position: center 65%;
    padding: 90px 0;
    overflow: hidden;
}
.why-us-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(14,36,25,.92) 0%, rgba(14,36,25,.82) 45%, rgba(28,74,42,.75) 100%);
}
.why-us-inner { position: relative; z-index: 1; text-align: center; }
.why-us-title, .why-us-sub { color: #fdf8ec; }
.why-us-sub { color: #dce8de; font-style: italic; max-width: 520px; }
.trust-strip {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    max-width: 780px; margin: 40px auto 0;
}
.trust-item {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    padding: 20px 10px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    color: #fdf8ec; font-size: .8rem; font-weight: 600; line-height: 1.4;
    backdrop-filter: blur(2px);
}
.trust-icon { font-size: 1.8rem; }

@media (max-width: 720px) {
    .trust-strip { grid-template-columns: repeat(2, 1fr); }
    .why-us { padding: 60px 0; }
}

/* ---------- Services ---------- */
.service-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(22,51,31,.06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    font-family: inherit;
    cursor: pointer;
    width: 100%;
    display: flex; flex-direction: column; align-items: center;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--green-light); box-shadow: 0 10px 24px rgba(22,51,31,.1); }
.service-icon { font-size: 2.4rem; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; color: var(--ink); }
.service-card p { color: var(--ink-soft); font-size: .9rem; line-height: 1.6; }
.service-cta { margin-top: 14px; color: var(--green-dark); font-weight: 700; font-size: .82rem; }

/* ---------- Banners / Paket ---------- */
.tabs {
    display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px;
}
.tab {
    padding: 9px 20px; border-radius: 999px; border: 1px solid var(--border);
    background: var(--card); color: var(--ink-soft); font-weight: 600; cursor: pointer;
    font-family: inherit; font-size: .88rem; transition: all .15s ease;
}
.tab.active, .tab:hover {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fdf8ec; border-color: transparent;
}

.banner-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.banner-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 4px 16px rgba(22,51,31,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.banner-card:hover { transform: translateY(-6px); box-shadow: 0 12px 26px rgba(22,51,31,.12); }
.banner-img {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--green), var(--dark-2));
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.banner-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14,36,25,0) 55%, rgba(14,36,25,.55) 100%);
}
.banner-placeholder, .spot-card .banner-placeholder { font-size: 2.2rem; opacity: .6; color: #fdf8ec; }
.banner-badge {
    position: absolute; top: 12px; left: 12px; z-index: 1;
    background: rgba(14,36,25,.82);
    color: #fdf8ec; font-size: .72rem; font-weight: 700;
    padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px;
}
.banner-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.banner-body h3 { font-size: clamp(1rem, 4vw, 1.1rem); color: var(--ink); }
.banner-sub { color: var(--ink-soft); font-size: clamp(.85rem, 3.4vw, .9rem); line-height: 1.5; }
.banner-price { color: var(--price); font-weight: 700; margin: 4px 0 10px; }
.banner-body .btn { margin-top: auto; }

.package-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.package-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 4px 16px rgba(22,51,31,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.package-card:hover { transform: translateY(-6px); box-shadow: 0 12px 26px rgba(22,51,31,.12); }
.package-img {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--green), var(--dark-2));
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.package-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14,36,25,0) 55%, rgba(14,36,25,.55) 100%);
}
.package-badge {
    position: absolute; top: 12px; left: 12px; z-index: 1;
    background: rgba(14,36,25,.82);
    color: #fdf8ec; font-size: .72rem; font-weight: 700;
    padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px;
}
.package-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.package-body h3 { font-size: clamp(1.05rem, 4vw, 1.25rem); color: var(--ink); margin-bottom: 4px; }
.package-include { list-style: none; display: flex; flex-direction: column; gap: 4px; margin: 4px 0; padding: 0; }
.package-include li { color: var(--ink-soft); font-size: .85rem; padding-left: 20px; position: relative; }
.package-include li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.package-itinerary { margin: 6px 0; font-size: .85rem; }
.package-itinerary summary { cursor: pointer; color: var(--green-dark); font-weight: 600; }
.package-itinerary ol {
    margin: 10px 0 0; padding: 0; list-style: none; counter-reset: itn;
    color: var(--ink-soft); display: flex; flex-direction: column; gap: 8px; line-height: 1.5;
}
.package-itinerary ol li {
    counter-increment: itn;
    padding-left: 30px; position: relative;
}
.package-itinerary ol li::before {
    content: counter(itn);
    position: absolute; left: 0; top: -1px;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--green); color: #fdf8ec;
    font-size: .68rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.package-price { color: var(--price); font-weight: 700; font-size: 1.15rem; margin: 6px 0 0; }
.package-price span { color: var(--ink-soft); font-weight: 500; font-size: .8rem; }
.package-addon { color: var(--ink-soft); font-size: .82rem; margin: -4px 0 8px; }
.package-body .btn { margin-top: auto; }

@media (max-width: 720px) {
    .package-grid { grid-template-columns: 1fr; }
}

.partnership {
    background: linear-gradient(135deg, var(--green), var(--dark-2));
}
.partnership-inner { text-align: center; max-width: 640px; }
.partnership-eyebrow {
    color: #cdeccf; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    font-size: .8rem; margin-bottom: 14px;
}
.partnership .section-title, .partnership .section-sub { color: #fdf8ec; }
.partnership .section-sub { color: #dce8de; }
.partnership-list {
    list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
    margin: 24px 0 32px; padding: 0;
}
.partnership-list li {
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
    color: #fdf8ec; padding: 9px 16px; border-radius: 999px; font-size: .85rem; font-weight: 600;
}
.partnership .btn-primary { background: #fdf8ec; color: var(--dark-2); }
.partnership .btn-primary:hover { background: #fff; }

.empty-note { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); }
.empty-note a { color: var(--green); text-decoration: underline; }

/* ---------- Trip custom ---------- */
.spot-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px;
}
.spot-card {
    display: block; cursor: pointer;
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(22,51,31,.06);
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.spot-card:hover { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(22,51,31,.1); }
.spot-card input { display: none; }
.spot-img {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--green-light), var(--green));
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.spot-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14,36,25,0) 60%, rgba(14,36,25,.5) 100%);
}
.spot-check {
    position: absolute; top: 10px; right: 10px; z-index: 1;
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: 1.5px solid rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .8rem; opacity: 0; transform: scale(.7);
    transition: all .15s ease;
}
.spot-card input:checked ~ .spot-img .spot-check,
.spot-card input:checked + .spot-img .spot-check {
    opacity: 1; transform: scale(1);
    background: var(--green); border-color: var(--green);
}
.spot-card:has(input:checked) {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(45,107,63,.22);
}
.spot-info { padding: 16px; }
.spot-info h4 { font-size: 1rem; margin-bottom: 6px; color: var(--ink); }
.spot-info p { color: var(--ink-soft); font-size: .85rem; line-height: 1.5; margin-bottom: 10px; }
.spot-meta { display: flex; gap: 14px; font-size: .8rem; color: var(--green-dark); font-weight: 600; }

/* ---------- Route summary / cost calculator ---------- */
.route-summary {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin-bottom: 24px;
}
.route-summary-empty { color: var(--ink-soft); font-size: .9rem; text-align: center; margin: 0; }
.route-summary-content h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 14px; }
.route-order { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.route-order li {
    display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
    padding-bottom: 10px; border-bottom: 1px dashed var(--border); font-size: .9rem;
}
.route-order li:last-child { border-bottom: none; padding-bottom: 0; }
.route-order-name { color: var(--ink); font-weight: 600; }
.route-order-meta { color: var(--ink-soft); font-size: .82rem; white-space: nowrap; }
.route-totals { border-top: 1.5px solid var(--border); padding-top: 14px; }
.route-total-row {
    display: flex; justify-content: space-between; font-size: .9rem; color: var(--ink-soft);
    padding: 4px 0;
}
.route-total-row strong { color: var(--ink); font-weight: 600; }
.route-total-grand {
    margin-top: 6px; padding-top: 10px; border-top: 1px solid var(--border);
    font-size: 1.05rem;
}
.route-total-grand span, .route-total-grand strong { color: var(--price); font-weight: 700; }

.trip-consult-note {
    text-align: center; margin-top: 14px; font-size: .88rem; color: var(--ink-soft);
}
.trip-consult-note a { color: var(--green); font-weight: 600; text-decoration: underline; }

.trip-form-fields {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 24px;
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.field input, .field textarea {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--ink);
    font-family: inherit; font-size: .95rem;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa68c; }
.field input:focus, .field textarea:focus {
    outline: none; border-color: var(--green);
}
.form-error {
    color: #b3261e; text-align: center; margin-bottom: 14px; font-size: .9rem; min-height: 1.2em;
}

/* ---------- Booking modal ---------- */
.modal-overlay {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(14,36,25,.55);
    display: flex; align-items: flex-end; justify-content: center;
    padding: 0;
}
.modal-overlay[hidden] { display: none; }
.modal-dialog {
    background: var(--card);
    border-radius: 20px 20px 0 0;
    padding: 26px 22px calc(22px + env(safe-area-inset-bottom));
    width: 100%; max-width: 520px;
    max-height: 88vh; overflow-y: auto;
    position: relative;
    box-shadow: 0 -10px 40px rgba(0,0,0,.25);
}
.modal-dialog h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 4px; }
.modal-dialog .muted { color: var(--ink-soft); font-size: .88rem; margin-bottom: 18px; }
.modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 34px; height: 34px; border-radius: 50%;
    border: none; background: var(--bg-soft); color: var(--ink);
    font-size: 1.3rem; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.modal-dialog .field { margin-bottom: 14px; }
.modal-dialog .field[hidden] { display: none; }
.modal-desc {
    background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px;
    padding: 12px 14px; font-size: .83rem; color: var(--ink-soft); line-height: 1.55;
    margin-bottom: 18px;
}
.modal-desc:empty { display: none; }
.field-hint { display: block; margin-top: 5px; font-size: .76rem; line-height: 1.4; }
#bookingSuccess { text-align: center; padding: 6px 0 2px; }
#bookingSuccess .booking-success-icon { font-size: 2.4rem; margin-bottom: 6px; }
#bookingSuccess h4 { font-size: 1.1rem; color: var(--ink); margin-bottom: 10px; }
#bookingSuccess .modal-desc { text-align: left; margin-bottom: 20px; }
#bookingSuccess .btn { margin-bottom: 10px; }
#bookingSuccess .btn:last-child { margin-bottom: 0; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* Each row always has exactly 2 fields, so if one is hidden the other should take full width */
.form-row-2:has(.field[hidden]) { grid-template-columns: 1fr; }

@media (min-width: 640px) {
    .modal-overlay { align-items: center; }
    .modal-dialog { border-radius: 20px; }
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    color: #dce8de;
    padding: 56px 0 24px;
}
.footer-inner {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px;
    margin-bottom: 30px;
}
.footer-brand .brand-name { color: #fdf8ec; }
.footer-brand p { color: #a6c2ab; margin-top: 8px; max-width: 320px; }
.footer-contact p { margin-bottom: 8px; color: #a6c2ab; }
.footer-contact a:hover { color: var(--green-light); }
.footer-copy {
    text-align: center; color: #7d9683; font-size: .82rem;
    border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px;
}
.footer-copy .hidden-link { color: inherit; text-decoration: none; }

/* ---------- Floating WA ---------- */
.wa-float {
    position: fixed; bottom: 26px; right: 26px; z-index: 60;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--wa-green); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,.45);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,.45); }
    50% { box-shadow: 0 10px 30px rgba(37,211,102,.75), 0 0 0 10px rgba(37,211,102,.12); }
}

/* ---------- Mobile sticky bottom bar ---------- */
.mobile-bar { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .banner-grid { grid-template-columns: repeat(2, 1fr); }
    .spot-grid { grid-template-columns: repeat(2, 1fr); }
    .trip-form-fields { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .nav-links {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--dark-2);
        flex-direction: column; padding: 20px 24px; gap: 18px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        transform: translateY(-130%); transition: transform .25s ease;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .nav-wa { display: none; }
    .footer-inner { flex-direction: column; }

    /* Tighter rhythm on small screens */
    .container { padding: 0 20px; }
    .hero { padding: 64px 0 44px; }
    section { padding: 44px 0; }
    .section-sub { margin-bottom: 30px; }

    /* Compact 2x2 grid for Layanan Kami on mobile */
    .service-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .service-card { padding: 16px 10px; }
    .service-icon { font-size: 1.7rem; margin-bottom: 8px; }
    .service-card h3 { font-size: .9rem; margin-bottom: 4px; }
    .service-card p { font-size: .76rem; line-height: 1.4; }

    /* Swipeable horizontal cards — smaller + breathing room so it doesn't feel packed */
    .banner-grid, .spot-grid {
        display: flex; grid-template-columns: none;
        overflow-x: auto; scroll-snap-type: x mandatory;
        gap: 16px; margin: 0 -20px 36px; padding: 8px 20px 18px;
        -webkit-overflow-scrolling: touch;
    }
    .banner-grid { margin-bottom: 0; }
    .banner-card, .spot-card {
        flex: 0 0 68%; width: 68%; min-width: 0;
        scroll-snap-align: center;
    }
    .banner-body, .spot-info { padding: 16px; }

    .route-summary { padding: 16px 18px; }
    .route-order-name { font-size: .88rem; }

    /* Sticky WA bar replaces the floating round button on mobile */
    .wa-float { display: none; }
    .mobile-bar {
        display: flex; gap: 10px;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        background: var(--dark);
        box-shadow: 0 -6px 24px rgba(0,0,0,.25);
    }
    .mobile-bar .btn { flex: 1; padding: 12px 16px; font-size: .9rem; }
    .mobile-bar .btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }
    body { padding-bottom: 70px; }
}
