:root {
    --forest:    #1a2e1a;
    --moss:      #2d4a2d;
    --sage:      #4a7c59;
    --lime:      #7ab648;
    --gold:      #c9a84c;
    --cream:     #f5f0e8;
    --fog:       #e8e4dc;
    --charcoal:  #1c1c1c;
    --text:      #2a2a2a;
    --muted:     #6b7163;
    --white:     #ffffff;
    --bg:        #f4f7f4;
    --red:       #c0392b;
    --green:     #27ae60;

    --safe-top:    env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left:   env(safe-area-inset-left, 0px);
    --safe-right:  env(safe-area-inset-right, 0px);
    --nav-h: 64px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

/* ============================================================
   3. NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 6%;
    padding-top: calc(16px + var(--safe-top));
    background: rgba(26, 46, 26, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
    background: rgba(26, 46, 26, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-mobile {
    padding: 13px 5%;
    padding-top: calc(13px + var(--safe-top));
}

.navbar-height { height: calc(56px + var(--safe-top)); }

/* ── Brand ── */
.brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 60px);
}
.brand span { color: var(--gold); }

.brand-logo {
    width: 42px !important;
    height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255,255,255,0.25);
    flex-shrink: 0;
}

/* ── Desktop nav links ── */
.nav-links {
    display: flex;
    gap: 28px;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ── Auth buttons ── */
.nav-auth,
.nav-desktop-auth {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-regis {
    background: transparent;
    color: var(--white);
    padding: 8px 18px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.25s;
    cursor: pointer;
    white-space: nowrap;
}
.btn-regis:hover { border-color: var(--gold); color: var(--gold); }

.btn-login {
    background: var(--gold);
    color: var(--forest);
    padding: 8px 18px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: all 0.25s;
    white-space: nowrap;
    cursor: pointer;
}
.btn-login:hover { background: #b8943f; }

.btn-profil {
    background: var(--sage);
    color: white;
    padding: 8px 18px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}
.btn-profil:hover { background: var(--moss); color: white; }

.btn-logout {
    background: transparent;
    color: rgba(255,255,255,0.7);
    padding: 8px 14px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.25s;
    white-space: nowrap;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}
.btn-logout:hover { color: white; border-color: white; }

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 1100;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu (slide-down) ── */
.mobile-menu,
.nav-drawer {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    background: rgba(26,46,26,0.98);
    padding-top: calc(72px + var(--safe-top));
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    flex-direction: column;
    gap: 0;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.mobile-menu.open,
.nav-drawer.open { transform: translateY(0); }

.mobile-menu a,
.nav-drawer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
}
.mobile-menu a:last-of-type,
.nav-drawer-links a:last-child { border-bottom: none; }
.mobile-menu a i,
.nav-drawer-links a i { color: var(--gold); width: 18px; }
.mobile-menu a:hover,
.mobile-menu a.active,
.nav-drawer-links a:hover { color: var(--gold); }

.mobile-menu-auth,
.nav-drawer-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.mobile-menu-auth a {
    flex: 1;
    justify-content: center;
    border-bottom: none !important;
    padding: 12px !important;
    border-radius: 4px;
    font-size: 0.875rem !important;
}
.mob-btn-regis  { border: 1px solid rgba(255,255,255,0.4); color: white !important; }
.mob-btn-login  { background: var(--gold); color: var(--forest) !important; }
.mob-btn-profil { background: var(--sage); color: white !important; }
.mob-btn-logout { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.7) !important; }

/* Overlay behind mobile menu */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.overlay.visible { opacity: 1; pointer-events: auto; }

/* ============================================================
   4. HERO SECTIONS
   ============================================================ */

/* ── Main Hero (index.php) ── */
.hero-main {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-main::before {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,20,10,0.55) 0%, rgba(20,40,20,0.3) 50%, rgba(10,20,10,0.75) 100%),
        url('../foto/basecamp.jpeg') center/cover no-repeat;
    transform: scale(1.05);
    animation: slowZoom 12s ease-in-out infinite alternate;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 24px;
    max-width: 720px;
    width: 100%;
}
.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 10vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 440px;
    margin: 0 auto 28px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}
.btn-booking {
    background: var(--gold);
    color: var(--forest);
    padding: 14px 32px;
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
    touch-action: manipulation;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}
.btn-booking:hover { background: #b8943f; transform: translateY(-2px); }
.btn-ghost {
    border: 1px solid rgba(255,255,255,0.6);
    color: white;
    padding: 14px 32px;
    border-radius: 3px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: calc(68px + var(--safe-bottom));
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}
.scroll-hint i { font-size: 0.9rem; }

/* ── STATS BAR ── */
.stats-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: #4a7c59;
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: stretch;
    z-index: 3;
    padding-bottom: var(--safe-bottom);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
}
.stats-bar::-webkit-scrollbar { display: none; }
.stat-item {
    flex: 1;
    min-width: 70px;
    padding: 14px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    background: transparent;
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    display: block;
}
.stat-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

/* ── Page Hero (internal pages) ── */
.page-hero {
    background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 60%, #4a7c59 100%);
    padding: 40px 6% 32px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.page-hero h1 i { color: var(--gold); font-size: 1.3rem; }
.page-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 6px;
    position: relative;
    letter-spacing: 0.3px;
}
.gold-line {
    width: 48px; height: 2px;
    background: var(--gold);
    margin: 12px 0 6px;
    position: relative;
}

/* Profile hero & edit hero */
.page-hero.with-image {
    height: 220px;
    margin-top: calc(56px + var(--safe-top));
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: none;
}
.page-hero.with-image::before {
    background:
        linear-gradient(to bottom, rgba(10,20,10,0.45) 0%, rgba(10,20,10,0.8) 100%),
        url('../foto/basecamp.jpeg') center/cover no-repeat;
    animation: slowZoom 14s ease-in-out infinite alternate;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 6% 28px;
    width: 100%;
}
.page-hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.page-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.breadcrumb-back {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.2s;
}
.breadcrumb-back:hover { color: var(--gold); }

/* ── Hero (peraturan.php) ── */
.hero {
    height: 260px;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.6)),
                url('../foto/basecamp.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero-fallback {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 60%, #4a7c59 100%);
    z-index: 0;
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.hero-sub {
    margin-top: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.hero-sub i { color: var(--gold); }

/* ============================================================
   5. BREADCRUMB BAR
   ============================================================ */
.breadcrumb,
.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid #eef2ee;
    padding: 10px 6%;
    font-size: 0.76rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 7px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.breadcrumb::-webkit-scrollbar,
.breadcrumb-bar::-webkit-scrollbar { display: none; }
.breadcrumb a,
.breadcrumb-bar a { color: var(--sage); text-decoration: none; }
.breadcrumb a:hover,
.breadcrumb-bar a:hover { color: var(--forest); }
.breadcrumb i,
.breadcrumb-bar i { font-size: 0.55rem; color: #ccc; }

/* ============================================================
   6. SECTION TITLES & TAGS
   ============================================================ */
.section-tag {
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 2.6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 32px;
}
.section-header { text-align: center; margin-bottom: 50px; }

/* ============================================================
   7. ABOUT SECTION
   ============================================================ */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.about-image { position: relative; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.about-image:hover img { transform: scale(1.04); }
.about-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,46,26,0.3), transparent);
}
.about-text {
    background: var(--forest);
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.fact-item { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 12px; }
.fact-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}
.fact-desc { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }

/* ============================================================
   8. JALUR SECTION
   ============================================================ */
.jalur-section { padding: 80px 6%; background: var(--cream); }
.jalur-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
    gap: 24px;
}
.jalur-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.jalur-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.jalur-img { height: 240px; position: relative; overflow: hidden; }
.jalur-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.jalur-card:hover .jalur-img img { transform: scale(1.06); }
.jalur-badge {
    position: absolute;
    top: 12px; right: 12px;
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.badge-resmi { background: var(--sage); color: white; }
.jalur-body { padding: 24px 28px; }
.jalur-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 8px;
}
.jalur-body p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.jalur-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.jalur-meta span { font-size: 0.8rem; color: var(--muted); }
.jalur-meta i { color: var(--sage); margin-right: 4px; }

/* ============================================================
   9. INFO SECTION
   ============================================================ */
.info-section { background: var(--forest); padding: 70px 6%; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.info-card {
    text-align: center;
    padding: 28px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    transition: background 0.3s;
}
.info-card:hover { background: rgba(255,255,255,0.04); }
.info-icon {
    width: 52px; height: 52px;
    background: rgba(201,168,76,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.info-icon i { font-size: 1.3rem; color: var(--gold); }
.info-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}
.info-card p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ============================================================
   10. GALLERY SECTION
   ============================================================ */
.gallery-section { padding: 80px 6%; background: var(--fog); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 10px;
    margin-top: 44px;
}
.gallery-item { overflow: hidden; border-radius: 3px; position: relative; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,46,26,0.4), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ============================================================
   11. PREPARATION SECTION
   ============================================================ */
.persiapan-section { padding: 80px 6%; background: var(--cream); }
.persiapan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.persiapan-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.persiapan-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
}
.persiapan-item h4 { font-weight: 600; color: var(--forest); margin-bottom: 4px; }
.persiapan-item p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }
.persiapan-visual { position: relative; height: 500px; }
.persiapan-visual .img-main {
    position: absolute;
    top: 0; right: 0;
    width: 85%; height: 85%;
    object-fit: cover; border-radius: 4px;
    max-width: 100%;
}
.persiapan-visual .img-accent {
    position: absolute;
    bottom: 0; left: 0;
    width: 52%; height: 52%;
    object-fit: cover; border-radius: 4px;
    border: 5px solid var(--cream);
    max-width: 100%;
}

/* ============================================================
   11b. MAPS SECTION
   ============================================================ */
.maps-section { padding: 60px 6%; background: #f5f8f5; }
.maps-section .section-header { margin-bottom: 32px; }
.maps-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(26,46,26,0.15);
    border: 3px solid #d4e8d4;
}
.maps-wrapper iframe { width: 100%; height: 420px; display: block; border: none; }
.maps-info-row {
    display: flex;
    gap: 16px;
    max-width: 1100px;
    margin: 20px auto 0;
    flex-wrap: wrap;
}
.maps-info-card {
    flex: 1;
    min-width: 200px;
    background: var(--white);
    border-radius: 10px;
    padding: 14px 18px;
    border: 1px solid #d4e8d4;
    display: flex;
    align-items: center;
    gap: 12px;
}
.maps-info-card i { font-size: 1.3rem; color: var(--forest); width: 28px; text-align: center; }
.maps-info-card strong { display: block; font-size: 0.78rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.maps-info-card span { font-size: 0.9rem; font-weight: 600; color: var(--forest); }
.maps-info-card a { color: var(--sage); font-weight: 700; text-decoration: none; }
.maps-info-card a:hover { text-decoration: underline; }

/* ============================================================
   12. CTA SECTION
   ============================================================ */
.cta-section {
    position: relative;
    padding: 100px 6%;
    overflow: hidden;
    text-align: center;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(rgba(10,25,10,0.78), rgba(10,25,10,0.78)),
        url('../foto/basecamp.jpeg') center/cover;
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 18px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub {
    color: rgba(255,255,255,0.65);
    max-width: 440px;
    margin: 0 auto 36px;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================================
   13. FOOTER — FIXED
   ============================================================ */
.footer-info {
    background: var(--charcoal);
    padding: 60px 6% 28px;
    padding-bottom: calc(28px + var(--safe-bottom));
    overflow: hidden;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.8fr;
    gap: 32px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    align-items: start;
}
.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-brand span { color: var(--gold); }
.footer-desc {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin-bottom: 20px;
}
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    transition: all 0.25s;
    flex-shrink: 0;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-box h4 {
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.footer-box ul { list-style: none; }
.footer-box li {
    margin-bottom: 9px;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    /* FIX: removed white-space: nowrap so text wraps on mobile */
    white-space: normal;
    word-break: break-word;
}
.footer-box li i { color: var(--gold); margin-right: 7px; width: 13px; flex-shrink: 0; }
.footer-box li a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-box li a:hover { color: var(--gold); }
/* FIX: footer iframe responsive */
.footer-box iframe {
    width: 100% !important;
    max-width: 350px;
    height: 200px;
    display: block;
    border: none;
    filter: grayscale(20%);
}
.footer-bottom {
    text-align: center;
    padding-top: 26px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
}
.footer-mini-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}
.page-footer {
    text-align: center;
    padding: 24px 20px;
    padding-bottom: calc(24px + var(--safe-bottom));
    font-size: 0.75rem;
    color: #aab4a4;
    letter-spacing: 0.3px;
}

/* ============================================================
   14. MODAL
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    overflow: hidden;
    animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    margin: auto;
}
.modal-header {
    padding: 20px 24px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--forest);
    flex-shrink: 0;
}
.modal-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--white);
}
.btn-close {
    background: none; border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.4rem;
    cursor: pointer; line-height: 1;
    transition: color 0.2s;
    min-width: 32px; min-height: 32px;
    display: flex; align-items: center; justify-content: center;
}
.btn-close:hover { color: var(--white); }
.form-body {
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    max-height: 60vh;
    -webkit-overflow-scrolling: touch;
}
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block; margin-bottom: 5px;
    font-weight: 500; font-size: 0.82rem;
    color: var(--text); letter-spacing: 0.3px;
}
.form-group input,
.input-group select,
.input-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    transition: border-color 0.2s;
    background: #fafafa;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:focus,
.input-group select:focus { outline: none; border-color: var(--sage); }
.input-group { margin-bottom: 14px; }
.input-group label {
    display: block; margin-bottom: 5px;
    font-weight: 500; font-size: 0.82rem; color: var(--text);
}
.switch-modal { font-size: 0.83rem; color: var(--muted); margin-top: 4px; }
.switch-modal a { color: var(--sage); text-decoration: none; font-weight: 600; }
.switch-modal a:hover { text-decoration: underline; }
.modal-footer {
    padding: 14px 24px;
    padding-bottom: calc(14px + var(--safe-bottom));
    background: #f7f7f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--fog);
    flex-shrink: 0;
}
.btn-submit-green {
    background: var(--sage); color: white;
    border: none; padding: 12px 24px;
    border-radius: 6px; cursor: pointer;
    font-weight: 600; font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px; transition: background 0.2s;
    min-height: 44px;
}
.btn-submit-green:hover { background: var(--moss); }
.btn-submit-gold {
    background: var(--gold); color: var(--forest);
    border: none; padding: 12px 24px;
    border-radius: 6px; cursor: pointer;
    font-weight: 700; font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px; transition: background 0.2s;
    min-height: 44px;
}
.btn-submit-gold:hover { background: #b8943f; }
.btn-lupa-wa {
    color: var(--muted); text-decoration: none;
    font-size: 0.8rem; transition: color 0.2s;
}
.btn-lupa-wa:hover { color: var(--forest); }
.btn-cancel {
    background: none; border: none;
    color: var(--muted); cursor: pointer;
    font-size: 0.85rem; font-family: 'Outfit', sans-serif;
    min-height: 44px; padding: 0 8px;
}

/* ============================================================
   15. PWA INSTALL BANNER
   ============================================================ */
#pwa-banner,
.pwa-banner {
    display: none;
    position: fixed;
    bottom: calc(20px + var(--safe-bottom));
    left: 14px; right: 14px;
    z-index: 1200;
    background: var(--forest);
    color: white;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    flex-direction: row;
    align-items: center;
    gap: 12px;
    animation: slideUp 0.4s ease-out;
}
#pwa-banner.show,
.pwa-banner.visible { display: flex; }
.pwa-icon {
    width: 42px; height: 42px;
    background: var(--sage);
    border-radius: 10px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: white;
}
.pwa-text { flex: 1; min-width: 0; }
.pwa-text strong { display: block; font-size: 0.85rem; margin-bottom: 1px; color: white; }
.pwa-text span { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.pwa-actions { display: flex; gap: 7px; flex-shrink: 0; }
.pwa-install,
.pwa-btn-install {
    background: var(--gold); color: var(--forest);
    border: none; padding: 7px 13px; border-radius: 6px;
    font-size: 0.76rem; font-weight: 700; cursor: pointer;
    font-family: 'Outfit', sans-serif;
}
.pwa-dismiss,
.pwa-btn-dismiss {
    background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
    border: none; padding: 7px 10px; border-radius: 6px;
    font-size: 0.76rem; cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

/* ============================================================
   16. TOAST NOTIFICATION
   ============================================================ */
.toast,
.toast-msg,
.toast-notif {
    position: fixed;
    bottom: calc(80px + var(--safe-bottom));
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: rgba(26,46,26,0.97);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.83rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    border-left: 3px solid var(--gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.toast.show,
.toast-msg.show,
.toast-notif.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.toast.success { border-left-color: var(--lime); }
.toast.error   { border-left-color: #e74c3c; }

/* ============================================================
   17. CEK KUOTA PAGE
   ============================================================ */
.container-kuota {
    max-width: 960px;
    margin: 28px auto 60px;
    padding: 0 20px;
}
.card-filter {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    padding: 24px 26px;
    margin-bottom: 20px;
    border-top: 3px solid var(--sage);
}
.card-filter h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--forest);
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-filter h3 i { color: var(--sage); font-size: 0.9rem; }
.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}
.filter-item label {
    display: block;
    font-size: 0.68rem;
    color: var(--muted);
    margin-bottom: 7px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}
.filter-item select,
.filter-item input[type="month"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dde4d9;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: #fafcfa;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}
.filter-item select:focus,
.filter-item input[type="month"]:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
    font-size: 16px;
}
.btn-search-submit {
    background: var(--sage);
    color: var(--white);
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 7px;
    height: 46px;
}
.btn-search-submit:hover {
    background: var(--moss);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(26,46,26,0.25);
}
.summary-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.badge-card {
    background: var(--white);
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--sage);
}
.badge-card.warning { border-left-color: var(--gold); }
.badge-card.danger  { border-left-color: #e74c3c; }
.badge-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: rgba(74,124,89,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--sage);
    flex-shrink: 0;
}
.badge-card.warning .badge-icon { background: rgba(201,168,76,0.1); color: var(--gold); }
.badge-card.danger  .badge-icon { background: rgba(231,76,60,0.1);  color: #e74c3c; }
.badge-info small {
    display: block;
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-bottom: 2px;
}
.badge-info strong {
    font-size: 1.5rem;
    color: var(--forest);
    font-weight: 700;
    line-height: 1;
}
.card-table {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    overflow: hidden;
}
.card-table-header {
    padding: 18px 22px;
    border-bottom: 1px solid #eef2ee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-table-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--forest);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-table-header h3 i { color: var(--sage); font-size: 0.9rem; }
.badge-bulan {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--sage);
    background: rgba(74,124,89,0.1);
    padding: 5px 12px;
    border-radius: 20px;
}
.table-kuota { width: 100%; border-collapse: collapse; }
.table-kuota th {
    background: var(--forest);
    color: rgba(255,255,255,0.85);
    padding: 13px 22px;
    text-align: left;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
}
.table-kuota td {
    padding: 13px 22px;
    border-bottom: 1px solid #f0f4f0;
    font-size: 0.875rem;
    color: var(--text);
    vertical-align: middle;
}
.table-kuota tr:last-child td { border-bottom: none; }
.table-kuota tr:hover td { background: #f7fbf7; }
.row-minggu td { background: #fffdf5; }
.row-minggu:hover td { background: #fff8e6; }
.mobile-list { display: none; }
.day-row {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #f0f4f0;
    gap: 12px;
    transition: background 0.15s;
}
.day-row:last-child { border-bottom: none; }
.day-row.is-minggu { background: #fffdf5; }
.day-row-left { flex: 1; min-width: 0; }
.day-row-date {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}
.day-row-date.is-minggu { color: #c0392b; }
.day-row-sub { font-size: 0.72rem; color: var(--muted); margin-top: 3px; }
.day-row-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}
.day-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 3px;
    background: #eef2ee;
    color: var(--muted);
}
.day-badge.minggu { background: #fdecea; color: #c0392b; }
.day-badge.sabtu  { background: #fef9ec; color: #a07a1e; }
.kuota-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    min-width: 70px;
    justify-content: center;
}
.kuota-aman  { background: #eafaf1; color: #1e8449; }
.kuota-tipis { background: #fef9ec; color: #9a6c00; }
.kuota-habis { background: #fdecea; color: #c0392b; }
.progress-wrap { display: flex; align-items: center; gap: 10px; }
.progress-bar {
    flex: 1;
    height: 5px;
    background: #e8ede8;
    border-radius: 3px;
    overflow: hidden;
    min-width: 60px;
    max-width: 100px;
}
.progress-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--lime);
    transition: width 0.4s ease;
}
.progress-fill.tipis { background: var(--gold); }
.progress-fill.habis { background: #e74c3c; }
.tgl-label { font-weight: 600; color: var(--text); }
.tgl-minggu { color: #c0392b; }
.pct-label { font-size: 0.72rem; color: var(--muted); white-space: nowrap; }
.footer-info-note {
    background: #f7fbf7;
    padding: 14px 22px;
    font-size: 0.78rem;
    color: var(--muted);
    border-top: 1px solid #eef2ee;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}
.footer-info-note i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   18. CUACA PAGE
   ============================================================ */
.container-cuaca {
    max-width: 960px;
    margin: 28px auto 60px;
    padding: 0 20px;
}
.status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 18px 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 3px solid var(--sage);
    text-align: center;
    transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-card i { font-size: 1.5rem; color: var(--sage); margin-bottom: 8px; display: block; }
.stat-card .stat-val { font-size: 1.1rem; font-weight: 700; color: var(--forest); line-height: 1; }
.stat-card .stat-lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--muted);
    margin-top: 5px;
    font-weight: 600;
}
.alert-card {
    background: linear-gradient(135deg, #fff8e7, #fffdf4);
    border: 1px solid #f0d98a;
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.alert-card i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.alert-card strong { display: block; font-size: 0.85rem; font-weight: 700; color: #7a5a00; margin-bottom: 4px; }
.alert-card p { font-size: 0.8rem; color: #9a7800; line-height: 1.6; }
.card-widget {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    margin-bottom: 20px;
}
.card-widget-header {
    padding: 18px 22px;
    border-bottom: 1px solid #eef2ee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.card-widget-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--forest);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-widget-header h3 i { color: var(--sage); font-size: 0.9rem; }
.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #1e8449;
    background: #eafaf1;
    padding: 5px 12px;
    border-radius: 20px;
    flex-shrink: 0;
}
.live-dot {
    width: 7px; height: 7px;
    background: #27ae60;
    border-radius: 50%;
    animation: pulse 1.4s infinite;
}
.widget-body { padding: 20px; overflow: hidden; }
.card-tips {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    margin-bottom: 20px;
}
.card-tips-header { padding: 18px 22px; border-bottom: 1px solid #eef2ee; }
.card-tips-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--forest);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-tips-header h3 i { color: var(--gold); font-size: 0.9rem; }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.tip-card {
    padding: 22px;
    border-right: 1px solid #f0f4f0;
    border-bottom: 1px solid #f0f4f0;
    transition: background 0.2s;
}
.tip-card:nth-child(3n) { border-right: none; }
.tip-card:nth-last-child(-n+3) { border-bottom: none; }
.tip-card:hover { background: #f7fbf7; }
.tip-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    margin-bottom: 12px;
}
.tip-icon.blue   { background: rgba(52,152,219,0.1); color: #2980b9; }
.tip-icon.teal   { background: rgba(26,188,156,0.1); color: #16a085; }
.tip-icon.orange { background: rgba(230,126,34,0.1); color: #d35400; }
.tip-icon.red    { background: rgba(231,76,60,0.1);  color: #c0392b; }
.tip-icon.purple { background: rgba(155,89,182,0.1); color: #8e44ad; }
.tip-icon.green  { background: rgba(39,174,96,0.1);  color: #1e8449; }
.tip-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--forest); margin-bottom: 7px; }
.tip-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   19. DESTINASI PAGE
   ============================================================ */
.container-destinasi { max-width: 1100px; margin: 0 auto; }
.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px;
}
.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 20px; }
.card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 8px;
}
.card-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.btn-action {
    display: inline-block;
    background: var(--sage);
    color: white;
    padding: 9px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.btn-action:hover { background: var(--moss); }

/* ============================================================
   20. PERATURAN PAGE
   ============================================================ */
.container-detail {
    max-width: 900px;
    margin: 16px auto;
    padding: 0 14px;
    padding-bottom: calc(24px + var(--safe-bottom));
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.steps-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 18px 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.step-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
}
.step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-dot {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 700;
}
.step-dot.done    { background: var(--sage); color: var(--white); }
.step-dot.active  { background: var(--gold); color: var(--white); box-shadow: 0 0 0 4px rgba(201,168,76,0.2); }
.step-dot.inactive{ background: #dde4d9; color: var(--muted); }
.step-lbl {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--muted);
    white-space: nowrap;
    text-align: center;
}
.step-line { flex: 1; height: 2px; background: #dde4d9; min-width: 30px; max-width: 50px; margin-bottom: 20px; }
.step-line.done { background: var(--sage); }
.tarif-header { text-align: center; padding: 20px 18px 0; }
.tarif-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600; color: var(--forest);
}
.tarif-header p { font-size: 0.75rem; color: var(--muted); margin-top: 4px; }
.price-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px 18px 20px;
}
.price-card {
    border: 1px solid #e8f0e8;
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.price-card.local::before   { background: var(--sage); }
.price-card.foreign::before { background: #2980b9; }
.price-card-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
    font-size: 0.85rem;
}
.price-card.local .price-card-icon   { background: rgba(74,124,89,0.12); color: var(--sage); }
.price-card.foreign .price-card-icon { background: rgba(52,152,219,0.12); color: #2980b9; }
.price-card-label {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--muted); margin-bottom: 10px;
}
.price-item {
    background: #f7fbf7;
    border-radius: 6px;
    padding: 8px 6px;
    margin-bottom: 6px;
}
.price-item-type { font-size: 0.62rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.price-item-type i { color: var(--gold); margin-right: 3px; }
.price-amount { font-size: 0.9rem; font-weight: 700; color: var(--sage); }
.price-card.foreign .price-amount { color: #2471a3; }
.price-table-wrap { display: none; }
.list-custom { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.list-custom li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--text);
    line-height: 1.6;
}
.list-custom li .bullet {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(74,124,89,0.12);
    color: var(--sage);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.55rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.list-custom li strong { color: var(--forest); }
.agree-card {
    background: linear-gradient(135deg, #f7fbf7, #f0f7f1);
    border: 1px solid #d4e8d4;
    border-left: 4px solid var(--sage);
    border-radius: 12px;
    padding: 20px;
}
.agree-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--forest);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.agree-title i { color: var(--sage); font-size: 0.9rem; }
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s;
}
.checkbox-row input[type="checkbox"] {
    width: 20px; height: 20px;
    accent-color: var(--sage);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 1px;
}
.checkbox-row label { font-size: 0.84rem; color: var(--text); line-height: 1.6; cursor: pointer; }
.divider { height: 1px; background: #d4e8d4; margin: 18px 0; }
.btn-booking-submit {
    width: 100%;
    padding: 18px;
    background: var(--sage);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
}
.btn-booking-submit:active:not(:disabled) { background: var(--moss); transform: scale(0.98); }
.btn-booking-submit:disabled { background: #c5cfc5; cursor: not-allowed; opacity: 0.7; }

/* ============================================================
   21. BOOKING PAGE
   ============================================================ */
.booking-wrap {
    max-width: 1100px;
    margin: 16px auto;
    padding: 0 14px;
    padding-bottom: calc(24px + var(--safe-bottom));
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.b-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
}
.b-card-header {
    padding: 15px 18px;
    border-bottom: 1px solid #eef2ee;
    display: flex; align-items: center; gap: 10px;
    background: #fafcfa;
}
.b-card-header .step-num {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--sage); color: var(--white);
    font-size: 0.75rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.b-card-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--forest); margin: 0;
}
.b-card-header i { color: var(--gold); font-size: 0.9rem; }
.b-card-body { padding: 18px; }
.form-label {
    font-size: 0.72rem !important; font-weight: 600 !important;
    color: var(--muted) !important; text-transform: uppercase;
    letter-spacing: 0.6px; margin-bottom: 5px !important; display: block;
}
.form-control, .form-select {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.875rem !important;
    border: 1px solid #dde4d9 !important;
    border-radius: 8px !important; padding: 11px 14px !important;
    color: var(--text) !important; background: #fafcfa !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    min-height: 46px; width: 100%;
}
.form-control:focus, .form-select:focus {
    border-color: var(--sage) !important;
    box-shadow: 0 0 0 3px rgba(74,124,89,0.12) !important;
    outline: none !important; background: white !important;
}
textarea.form-control { resize: vertical; min-height: 80px; }
.btn-tambah-anggota {
    background: var(--sage) !important; border: none !important;
    color: white !important; padding: 12px 18px !important;
    border-radius: 8px !important; font-weight: 600 !important;
    font-size: 0.85rem !important; font-family: 'Outfit', sans-serif;
    width: 100%; text-align: center; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; margin-bottom: 14px !important;
}
.summary-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    margin-bottom: 18px;
}
.summary-header {
    background: var(--forest);
    padding: 14px 18px;
    display: flex; align-items: center; gap: 8px;
}
.summary-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem; font-weight: 600;
    color: var(--white); margin: 0;
}
.summary-header i { color: var(--gold); font-size: 0.9rem; }
.summary-body { padding: 16px; }
.summary-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f0f4f0;
    font-size: 0.82rem;
}
.summary-row-item:last-child { border-bottom: none; }
.summary-row-item .s-label { color: var(--muted); font-weight: 500; }
.summary-row-item .s-value { color: var(--forest); font-weight: 600; text-align: right; }
.total-banner {
    background: linear-gradient(135deg, var(--forest), var(--moss));
    border-radius: 8px; padding: 14px 16px; margin-top: 12px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
}
.total-banner .t-label { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; }
.total-banner .t-value { font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.total-banner .t-sub   { font-size: 0.64rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.metode-list { border: 1px solid #dde4d9; border-radius: 8px; overflow: hidden; }
.metode-row {
    display: flex; align-items: center; gap: 12px;
    padding: 14px; cursor: pointer;
    border-bottom: 1px solid #eef2ee;
    background: var(--white); transition: background 0.15s;
    margin: 0; min-height: 52px;
}
.metode-row:last-child { border-bottom: none; }
.metode-row.selected  { background: #f0f7f1; }
.metode-row input[type="radio"] { display: none; }
.metode-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.metode-row.selected .metode-dot { border-color: var(--sage); background: var(--sage); box-shadow: inset 0 0 0 3px white; }
.metode-icon {
    width: 34px; height: 34px;
    border-radius: 6px; background: #f0f4f0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--sage); flex-shrink: 0;
}
.metode-row-label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.metode-row.selected .metode-row-label { color: var(--sage); }
.agree-box {
    display: flex; align-items: flex-start; gap: 12px;
    background: #f7fbf7; border: 1px solid #d4e8d4;
    border-left: 3px solid var(--sage); border-radius: 8px;
    padding: 14px; margin: 14px 0;
}
.agree-box input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--sage); flex-shrink: 0; margin-top: 1px; cursor: pointer; }
.agree-box label { font-size: 0.82rem; color: var(--muted); line-height: 1.65; cursor: pointer; margin: 0; }
.agree-box label a { color: var(--sage); font-weight: 600; text-decoration: underline; }
.mobile-summary-bar {
    position: sticky;
    top: calc(54px + var(--safe-top));
    z-index: 100;
    background: var(--forest);
    padding: 10px 5%;
    display: flex; align-items: center;
    justify-content: space-between; gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.msb-left { display: flex; flex-direction: column; gap: 1px; }
.msb-label { font-size: 0.6rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.5px; }
.msb-total { font-size: 1.1rem; font-weight: 800; color: var(--gold); }
.msb-detail { font-size: 0.65rem; color: rgba(255,255,255,0.5); }
.msb-btn {
    background: var(--sage); color: white; border: none;
    border-radius: 6px; padding: 8px 14px;
    font-size: 0.75rem; font-weight: 600;
    font-family: 'Outfit', sans-serif; cursor: pointer;
    white-space: nowrap;
}

/* ============================================================
   22. PEMBAYARAN PAGE
   ============================================================ */
.page-body {
    margin-top: calc(var(--nav-h) + var(--safe-top));
    padding-bottom: calc(32px + var(--safe-bottom));
}
.page-wrapper {
    max-width: 960px;
    margin: 28px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 22px;
    align-items: start;
}
.booking-badge {
    display: inline-flex;
    align-items: center; gap: 7px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px; padding: 7px 14px;
    font-size: 0.76rem; font-weight: 700;
    letter-spacing: 1.5px; color: var(--gold);
    text-transform: uppercase; white-space: nowrap;
    align-self: center;
}
.status-bar {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; border-radius: 10px;
    margin-bottom: 18px; font-size: 0.875rem;
}
.status-bar .s-icon { font-size: 1.4rem; flex-shrink: 0; }
.status-bar .s-title { font-weight: 700; font-size: 0.88rem; margin-bottom: 2px; }
.status-bar .s-sub { font-size: 0.76rem; opacity: 0.8; }
.status-bar.menunggu { background: #fff8e1; border: 1.5px solid #f5c518; color: #856404; }
.status-bar.lunas    { background: #eafaf1; border: 1.5px solid var(--sage); color: #1e5c38; }
.status-bar.ditolak  { background: #fdecea; border: 1.5px solid #e74c3c; color: #922b21; }
.rincian-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #eef2ee;
    border-radius: 8px; overflow: hidden; margin-bottom: 18px;
}
.rc { padding: 12px 14px; border-bottom: 1px solid #f0f4f0; border-right: 1px solid #f0f4f0; }
.rc:nth-child(even) { border-right: none; }
.rc:nth-last-child(-n+2) { border-bottom: none; }
.rc-label { font-size: 0.65rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 4px; }
.rc-value { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.rc-value.red { color: #c0392b; }
.countdown-box {
    display: flex; align-items: center; gap: 12px;
    background: #fff8e1; border: 1px solid #f5c518;
    border-radius: 8px; padding: 12px 14px;
    margin-bottom: 18px; font-size: 0.8rem; color: #856404;
}
.countdown-box.expired { background: #fdecea; border-color: #e74c3c; color: #922b21; }
.countdown-box i { font-size: 1rem; flex-shrink: 0; }
#countdown, #countdown-bar {
    font-size: 1.2rem; font-weight: 800; color: #c0392b;
    letter-spacing: 2px; font-family: monospace;
}
.metode-box {
    display: flex; align-items: center; gap: 12px;
    border: 1.5px solid #d4e8d4; background: #f7fbf7;
    border-radius: 10px; padding: 14px 16px; margin-bottom: 18px;
}
.metode-name { font-weight: 700; font-size: 0.88rem; color: var(--forest); }
.metode-desc { font-size: 0.73rem; color: var(--muted); margin-top: 2px; }
.metode-check { margin-left: auto; color: var(--sage); font-size: 1.1rem; flex-shrink: 0; }
.va-box {
    background: #fafcfa; border: 1px solid #dde4d9;
    border-radius: 10px; padding: 16px 18px; margin-bottom: 16px;
}
.va-label { font-size: 0.65rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 8px; }
.va-number-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.va-number { font-size: clamp(1.2rem, 4vw, 1.5rem); font-weight: 800; color: var(--forest); letter-spacing: 3px; font-family: monospace; }
.va-note { font-size: 0.73rem; color: var(--muted); margin-top: 8px; }
.btn-copy {
    font-size: 0.75rem; padding: 8px 14px;
    border-radius: 6px; border: 1.5px solid var(--sage);
    color: var(--sage); background: white;
    cursor: pointer; font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s; white-space: nowrap; min-height: 36px;
}
.btn-copy:hover, .btn-copy.copied { background: var(--sage); color: white; }
.qris-wrap { text-align: center; padding: 14px 0; }
.qris-title { font-size: 0.875rem; font-weight: 600; color: var(--forest); margin-bottom: 14px; }
.qris-box {
    display: inline-block; border: 2px solid #dde4d9;
    border-radius: 12px; padding: 16px; background: white;
}
.qris-box img { width: min(200px, 70vw); height: min(200px, 70vw); display: block; }
.qris-nmid { margin-top: 10px; font-size: 0.73rem; color: var(--muted); font-weight: 600; }
.panduan-list { list-style: none; padding: 0; margin: 14px 0 0; }
.panduan-list li {
    display: flex; gap: 12px; padding: 10px 0;
    border-bottom: 1px solid #f0f4f0;
    font-size: 0.82rem; color: var(--text); line-height: 1.55;
}
.panduan-list li:last-child { border-bottom: none; }
.p-num {
    width: 22px; height: 22px; min-width: 22px;
    background: var(--sage); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.68rem; font-weight: 700;
    margin-top: 1px; flex-shrink: 0;
}
.upload-zone {
    border: 2px dashed #c8e6c9; border-radius: 12px;
    padding: 28px 20px; text-align: center;
    background: #fafffe; cursor: pointer; transition: all 0.2s;
    margin-bottom: 14px;
}
.upload-zone:hover { border-color: var(--sage); background: #f0f7f1; }
.upload-zone .uz-icon { font-size: 2rem; color: var(--sage); margin-bottom: 10px; }
.upload-zone .uz-text { font-size: 0.85rem; color: var(--muted); }
.upload-zone .uz-text span { color: var(--sage); font-weight: 600; text-decoration: underline; }
.upload-zone .uz-hint { font-size: 0.7rem; color: #bbb; margin-top: 4px; }
.btn-kirim {
    width: 100%; padding: 14px; background: var(--sage);
    color: white; border: none; border-radius: 8px;
    font-size: 0.9rem; font-weight: 700;
    font-family: 'Outfit', sans-serif; letter-spacing: 0.5px;
    cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
    gap: 8px; min-height: 48px;
}
.btn-kirim:hover { background: var(--moss); }
.btn-kirim:disabled { background: #c5cfc5; cursor: not-allowed; }
.sidebar-sticky { position: sticky; top: calc(var(--nav-h) + var(--safe-top) + 16px); }
.side-card {
    background: var(--white); border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    overflow: hidden; margin-bottom: 16px;
}
.side-header {
    background: var(--forest); padding: 14px 18px;
    display: flex; align-items: center; gap: 8px;
}
.side-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 600; color: var(--white); margin: 0;
}
.side-header i { color: var(--gold); font-size: 0.9rem; }
.side-body { padding: 16px 18px; }
.side-row {
    display: flex; justify-content: space-between;
    align-items: flex-start; padding: 9px 0;
    border-bottom: 1px solid #f0f4f0;
    font-size: 0.8rem; gap: 8px;
}
.side-row:last-child { border-bottom: none; }
.side-row .sr-lbl { color: var(--muted); flex-shrink: 0; }
.side-row .sr-val { color: var(--forest); font-weight: 600; text-align: right; }
.lunas-banner { text-align: center; padding: 28px 20px; }
.lunas-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, var(--sage), var(--moss));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: white;
    margin: 0 auto 14px;
    box-shadow: 0 6px 20px rgba(74,124,89,0.35);
}
.lunas-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.lunas-banner p  { font-size: 0.83rem; color: var(--muted); margin-bottom: 20px; }
.btn-tiket {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; background: var(--sage); color: white;
    border-radius: 8px; font-weight: 700; font-size: 0.875rem;
    font-family: 'Outfit', sans-serif; text-decoration: none;
    letter-spacing: 0.5px; transition: all 0.2s; min-height: 46px;
}
.btn-tiket:hover { background: var(--moss); color: white; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(26,46,26,0.3); }
.mobile-pay-bar {
    display: none; position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 800; background: rgba(26,46,26,0.97);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px; padding-bottom: calc(12px + var(--safe-bottom));
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-direction: column; gap: 6px;
}
.mobile-pay-bar .pay-total { display: flex; justify-content: space-between; align-items: center; }
.mobile-pay-bar .pay-total-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.5px; }
.mobile-pay-bar .pay-total-val   { font-size: 1.1rem; font-weight: 800; color: var(--gold); }

/* ============================================================
   23. PROFIL PAGE
   ============================================================ */
.profil-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 52px 24px 80px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}
.profil-card-left {
    background: var(--forest);
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 8px 32px rgba(26,46,26,0.18);
    animation: fadeUp 0.6s 0.1s both;
}
.profil-avatar-wrap {
    background: var(--moss); padding: 36px 24px 28px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.profil-avatar-icon {
    width: 90px; height: 90px;
    background: rgba(201,168,76,0.15);
    border: 2px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; overflow: hidden;
}
.profil-avatar-icon i { font-size: 2.4rem; color: var(--gold); }
.profil-avatar-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profil-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.profil-username { font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 1px; }
.profil-badge-list { padding: 20px 20px 8px; }
.profil-badge {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.profil-badge:last-child { border-bottom: none; }
.profil-badge i {
    width: 28px; height: 28px;
    background: rgba(201,168,76,0.12); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; color: var(--gold); flex-shrink: 0;
}
.profil-badge span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.profil-badge strong { display: block; font-size: 0.85rem; color: var(--white); font-weight: 500; }
.profil-card-right { display: flex; flex-direction: column; gap: 24px; animation: fadeUp 0.6s 0.25s both; }
.profil-section-block {
    background: var(--white); border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06); overflow: hidden;
}
.block-header { background: var(--forest); padding: 14px 22px; display: flex; align-items: center; gap: 10px; }
.block-header i { color: var(--gold); font-size: 0.85rem; }
.block-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 600; color: var(--white); letter-spacing: 0.5px;
}
.block-body { padding: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-row { display: flex; flex-direction: column; gap: 4px; }
.info-row label { font-size: 0.67rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.info-row .val {
    background: var(--cream); border: 1px solid var(--fog);
    border-radius: 5px; padding: 10px 14px;
    font-size: 0.9rem; color: var(--text); font-weight: 500;
}
.profil-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-back {
    flex: 1; min-width: 130px; padding: 13px 20px;
    border-radius: 4px; font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.8px; text-transform: uppercase;
    text-decoration: none; text-align: center;
    border: 1px solid rgba(26,46,26,0.3);
    color: var(--forest); background: transparent;
    transition: all 0.25s; font-family: 'Outfit', sans-serif;
}
.btn-back:hover { background: var(--forest); color: white; }
.btn-edit-profil {
    flex: 1; min-width: 130px; padding: 13px 20px;
    border-radius: 4px; font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.8px; text-transform: uppercase;
    text-decoration: none; text-align: center;
    border: 1px solid var(--sage); color: var(--sage);
    background: transparent; transition: all 0.25s;
    font-family: 'Outfit', sans-serif; display: inline-block;
}
.btn-edit-profil:hover { background: var(--sage); color: white; }
.btn-booking-link {
    flex: 1; min-width: 130px; padding: 13px 20px;
    border-radius: 4px; font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase;
    text-decoration: none; text-align: center;
    background: var(--gold); color: var(--forest);
    border: 1px solid var(--gold); transition: all 0.25s;
}
.btn-booking-link:hover { background: #b8943f; }

/* ============================================================
   24. EDIT PROFIL PAGE
   ============================================================ */
.edit-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 44px 24px 80px;
    animation: fadeUp 0.55s 0.1s both;
}
.foto-section {
    background: var(--forest); border-radius: 10px;
    padding: 32px; margin-bottom: 24px;
    display: flex; align-items: center; gap: 28px;
    box-shadow: 0 6px 24px rgba(26,46,26,0.18);
}
.foto-preview-wrap { position: relative; flex-shrink: 0; }
.foto-preview {
    width: 100px; height: 100px; border-radius: 50%;
    border: 2.5px solid var(--gold); object-fit: cover;
    display: block; background: var(--moss);
}
.foto-placeholder {
    width: 100px; height: 100px; border-radius: 50%;
    border: 2.5px solid var(--gold);
    background: rgba(201,168,76,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 2.2rem;
}
.foto-change-btn {
    position: absolute; bottom: 2px; right: 2px;
    width: 30px; height: 30px; background: var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s;
    border: 2px solid var(--forest);
}
.foto-change-btn:hover { background: #b8943f; }
.foto-change-btn i { font-size: 0.7rem; color: var(--forest); }
.foto-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 5px; }
.foto-info p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.foto-name-preview { margin-top: 8px; font-size: 0.75rem; color: var(--gold); display: none; }
.form-card {
    background: var(--white); border-radius: 10px;
    overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    margin-bottom: 20px;
}
.card-header { background: var(--forest); padding: 14px 22px; display: flex; align-items: center; gap: 10px; }
.card-header i { color: var(--gold); font-size: 0.85rem; }
.card-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 600; color: var(--white); letter-spacing: 0.5px;
}
.card-body { padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.card-body.single-col { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.67rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.form-group input {
    padding: 11px 14px; border: 1.5px solid var(--fog);
    border-radius: 6px; font-size: 0.9rem;
    font-family: 'Outfit', sans-serif; color: var(--text);
    background: #fafaf8; transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none; width: 100%;
}
.form-group input:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(74,124,89,0.12); }
.form-group input[readonly] { background: var(--fog); color: var(--muted); cursor: not-allowed; border-color: var(--fog); }
.form-group .hint { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cancel-link {
    flex: 1; min-width: 130px; padding: 13px 20px;
    border-radius: 5px; font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.8px; text-transform: uppercase;
    text-decoration: none; text-align: center;
    border: 1.5px solid rgba(26,46,26,0.25);
    color: var(--forest); background: transparent;
    transition: all 0.25s; font-family: 'Outfit', sans-serif;
}
.btn-cancel-link:hover { background: var(--forest); color: white; }
.btn-save {
    flex: 2; min-width: 180px; padding: 13px 28px;
    border-radius: 5px; font-size: 0.85rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; border: none;
    background: var(--gold); color: var(--forest);
    transition: all 0.25s; font-family: 'Outfit', sans-serif;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-save:hover { background: #b8943f; transform: translateY(-1px); }
.toast.success { background: var(--green); color: white; }
.toast.error   { background: var(--red);   color: white; }

/* ============================================================
   25. ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slowZoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.3); }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   26. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid    { grid-template-columns: 1fr 1fr; }
    .info-grid      { grid-template-columns: repeat(2, 1fr); }
    .about-text     { padding: 60px 48px; }
    .nav-links      { gap: 20px; }
    .tips-grid      { grid-template-columns: repeat(2, 1fr); }
    .tip-card:nth-child(3n)        { border-right: 1px solid #f0f4f0; }
    .tip-card:nth-child(2n)        { border-right: none; }
    .tip-card:nth-last-child(-n+3) { border-bottom: 1px solid #f0f4f0; }
    .tip-card:nth-last-child(-n+2) { border-bottom: none; }
    .page-wrapper   { grid-template-columns: 1fr 260px; }
    .status-grid    { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   27. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root { --nav-h: 56px; }

    .nav-links  { display: none; }
    .nav-auth   { display: none; }
    .hamburger  { display: flex; }
    .navbar     { padding: 13px 5%; padding-top: calc(13px + var(--safe-top)); }

    .hero-main  { height: 100svh; }
    .page-hero  { padding: 28px 5% 22px; }
    .page-hero h1 { font-size: 1.4rem; }
    .hero       { height: 280px; }
    .hero h1    { font-size: 1.6rem; }
    .scroll-hint{ bottom: calc(60px + var(--safe-bottom)); }

    .about-section  { grid-template-columns: 1fr; }
    .about-image    { height: 260px; }
    .about-text     { padding: 44px 24px; }
    .section-title  { font-size: 2rem; }
    .facts-grid     { gap: 14px; }
    .jalur-section  { padding: 60px 5%; }
    .jalur-grid     { max-width: 100%; }
    .jalur-img      { height: 200px; }
    .jalur-body     { padding: 20px; }
    .info-section   { padding: 50px 5%; }
    .info-grid      { grid-template-columns: 1fr 1fr; gap: 16px; }
    .info-card      { padding: 22px 12px; }
    .gallery-section{ padding: 60px 5%; }
    .gallery-grid   {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item:first-child { grid-column: span 2; height: 200px; }
    .gallery-item   { height: 140px; }
    .persiapan-section { padding: 60px 5%; }
    .persiapan-grid { grid-template-columns: 1fr; gap: 32px; }
    .persiapan-visual { height: 260px; }
    .cta-section    { padding: 80px 5%; }

    /* FOOTER — fully single column on mobile */
    .footer-info    { padding: 40px 5% 20px; }
    .footer-grid    {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .footer-box iframe {
        width: 100% !important;
        max-width: 100% !important;
        height: 180px;
    }

    .maps-section   { padding: 40px 5%; }
    .maps-wrapper iframe { height: 280px; }
    .maps-info-row  { flex-direction: column; gap: 10px; }
    .maps-info-card { min-width: unset; }

    .modal-overlay  { padding: 10px; }
    .form-body      { max-height: 55vh; }

    .filter-grid    { grid-template-columns: 1fr; gap: 12px; }
    .btn-search-submit { width: 100%; justify-content: center; height: 46px; }
    .summary-row    { gap: 8px; }
    .badge-card     { padding: 14px 10px; gap: 8px; }
    .badge-icon     { width: 34px; height: 34px; font-size: 0.85rem; }
    .badge-info strong { font-size: 1.2rem; }
    .badge-info small  { font-size: 0.6rem; }
    .table-kuota    { display: none; }
    .mobile-list    { display: block; }
    .card-filter    { padding: 18px 16px; }
    .container-kuota{ padding: 0 14px; margin-top: 20px; margin-bottom: 40px; }

    .container-cuaca{ padding: 0 14px; margin-top: 20px; margin-bottom: 40px; }
    .status-grid    { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-card      { padding: 16px 10px; }
    .stat-card i    { font-size: 1.3rem; }
    .stat-card .stat-val { font-size: 1rem; }
    .tips-grid      { grid-template-columns: 1fr; }
    .tip-card       { border-right: none !important; border-bottom: 1px solid #f0f4f0; padding: 18px; }
    .tip-card:last-child { border-bottom: none; }

    .price-cards    { display: grid !important; }
    .price-table-wrap { display: none !important; }

    .booking-wrap   { padding: 0 14px; margin-top: 20px; }

    .page-wrapper   { grid-template-columns: 1fr; padding: 0 14px; margin-top: 20px; }
    .sidebar-sticky { position: static; order: -1; }
    .page-hero      { padding: 20px 5% 18px; }
    .mobile-pay-bar { display: flex; }
    .page-body      { padding-bottom: calc(80px + var(--safe-bottom)); }
    .breadcrumb-bar { padding: 9px 5%; }

    .profil-wrapper { grid-template-columns: 1fr; padding: 32px 16px 60px; gap: 20px; }
    .block-body     { grid-template-columns: 1fr; gap: 14px; }
    .profil-actions { flex-direction: column; }
    .btn-back, .btn-booking-link, .btn-edit-profil { flex: unset; width: 100%; }

    .edit-wrapper   { padding: 28px 16px 60px; }
    .foto-section   { flex-direction: column; text-align: center; gap: 18px; padding: 24px; }
    .card-body      { grid-template-columns: 1fr; gap: 14px; }
    .form-actions   { flex-direction: column; }
    .btn-cancel-link, .btn-save { flex: unset; width: 100%; }
}

/* ============================================================
   28. RESPONSIVE — SMALL PHONE (≤ 390px)
   ============================================================ */
@media (max-width: 390px) {
    .hero-title     { font-size: 2.4rem; }
    .hero-actions   { flex-direction: column; align-items: stretch; }
    .btn-booking, .btn-ghost { text-align: center; }
    .brand          { font-size: 1.1rem; }
    .brand-logo     { width: 32px !important; height: 32px !important; max-width: 32px !important; max-height: 32px !important; }
    .info-card h4   { font-size: 1rem; }
    .info-card p    { font-size: 0.78rem; }
    .stat-item      { padding: 10px 12px; }
    .stat-num       { font-size: 1.3rem; }
    .summary-row    { grid-template-columns: 1fr; }
    .page-hero h1   { font-size: 1.2rem; }
    .total-banner   { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-grid    { gap: 20px !important; }
}