/* ============================================================
   LuxBookingPro — Premium Stylesheet
   Mobile First | No Framework | Pure CSS
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --gold:         #C9A84C;
  --gold-dark:    #A8852C;
  --gold-light:   #F5E9CA;
  --gold-glow:    rgba(201,168,76,.18);

  /* Neutrals */
  --ink:          #0F0F1A;
  --ink-80:       #2D2D3A;
  --ink-60:       #555566;
  --ink-40:       #8A8A9A;
  --ink-10:       #F0F0F5;
  --white:        #FFFFFF;
  --surface:      #FAFAFA;
  --border:       #EAEDF0;

  /* Accents */
  --wa-green:     #25D366;
  --wa-dark:      #1DA851;
  --success:      #10B981;
  --error:        #EF4444;
  --warning:      #F59E0B;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow-md:    0 6px 20px rgba(0,0,0,.09);
  --shadow-lg:    0 16px 40px rgba(0,0,0,.12);
  --shadow-gold:  0 8px 24px rgba(201,168,76,.28);

  /* Spacing & Shape */
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;

  /* Typography */
  --font-head:    'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; }

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

/* ── UTILITY ──────────────────────────────────────────────── */
.hidden   { display: none !important; }
.mt-sm    { margin-top: 10px; }
.mt-md    { margin-top: 16px; }
.btn-full { width: 100%; justify-content: center; }


/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  line-height: 1;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}

.btn:active { transform: scale(.97); }

/* Primary — Gold */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 10px 28px rgba(201,168,76,.36);
}
.btn-primary:disabled {
  background: var(--ink-10);
  border-color: var(--ink-10);
  color: var(--ink-40);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--ink-60);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--ink-10); }

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--ink-80);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--ink-40); background: var(--ink-10); }

/* Nav */
.btn-nav {
  font-size: 13px;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  border-radius: 8px;
}
.btn-nav:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* WhatsApp */
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
  box-shadow: 0 6px 18px rgba(37,211,102,.3);
}
.btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); }

/* Large */
.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: var(--radius-md); }


/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.brand-dot { color: var(--gold); font-size: 12px; }


/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0F0F1A 0%, #1E1B2E 55%, #2A1F0A 100%);
  padding: 120px 0 72px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 20px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(14px, 4vw, 18px);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: .01em;
}

.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-item { flex: 1; text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}


/* ── SECTION BASE ─────────────────────────────────────────── */
.section {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: 14px;
  color: var(--ink-60);
}


/* ── MANFAAT ──────────────────────────────────────────────── */
.section-manfaat {
  background: var(--ink);
  padding: 48px 0;
}
.manfaat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.manfaat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.manfaat-card:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-2px);
}
.manfaat-icon { font-size: 32px; margin-bottom: 14px; }
.manfaat-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.manfaat-card p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }


/* ── JAM OPERASIONAL ──────────────────────────────────────── */
.section-jam { background: var(--surface); padding: 48px 0; }

.jam-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.jam-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.jam-icon { font-size: 28px; }
.jam-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.jam-subtitle { font-size: 13px; color: var(--ink-40); margin-top: 2px; }

.jam-grid { display: flex; flex-direction: column; gap: 0; }

.jam-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-10);
  font-size: 14px;
}
.jam-row:last-child { border-bottom: none; }

.jam-hari {
  font-weight: 500;
  color: var(--ink-80);
  width: 90px;
}
.jam-hari.today { color: var(--gold); font-weight: 600; }

.jam-waktu { color: var(--ink-60); font-size: 13px; }
.jam-libur {
  color: var(--error);
  font-size: 12px;
  font-weight: 600;
  background: #FEE2E2;
  padding: 2px 10px;
  border-radius: 20px;
}
.jam-open {
  font-size: 11px;
  font-weight: 600;
  background: #DCFCE7;
  color: #166534;
  padding: 2px 10px;
  border-radius: 20px;
}


/* ── LAYANAN ──────────────────────────────────────────────── */
.layanan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.layanan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.layanan-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--gold-glow);
  transform: translateY(-1px);
}
.layanan-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.layanan-body { flex: 1; min-width: 0; }
.layanan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.layanan-nama {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.layanan-populer {
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.layanan-desc { font-size: 12px; color: var(--ink-60); margin-bottom: 12px; line-height: 1.5; }

.layanan-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.layanan-meta { display: flex; gap: 12px; align-items: center; }
.layanan-harga {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-dark);
}
.layanan-durasi { font-size: 12px; color: var(--ink-40); }

.btn-pilih-layanan {
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  background: var(--gold-light);
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  transition: all .18s;
  white-space: nowrap;
}
.btn-pilih-layanan:hover,
.btn-pilih-layanan.aktif {
  background: var(--gold);
  color: var(--white);
}


/* ── BOOKING SECTION ──────────────────────────────────────── */
.section-booking {
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

/* STEP BAR */
.step-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
  padding: 0 4px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--ink-40);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.step.active .step-circle {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 12px var(--gold-glow);
}
.step.done .step-circle {
  background: var(--success);
  color: var(--white);
}
.step-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-40);
  white-space: nowrap;
}
.step.active .step-label { color: var(--gold); }
.step.done .step-label  { color: var(--success); }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  max-width: 44px;
  margin-bottom: 18px;
  transition: background .3s;
}
.step-line.done { background: var(--success); }

/* BOOKING CARD */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  min-height: 300px;
}

.booking-step {}

.step-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.step-hint { font-size: 13px; color: var(--ink-60); margin-bottom: 20px; }

/* STEP 1 — Layanan list (inside booking card) */
.step-layanan-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 20px;
  padding-right: 4px;
}
.step-layanan-list::-webkit-scrollbar { width: 4px; }
.step-layanan-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.sl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .18s;
  -webkit-tap-highlight-color: transparent;
}
.sl-item:hover    { border-color: var(--gold); background: rgba(201,168,76,.04); }
.sl-item.selected { border-color: var(--gold); background: var(--gold-light); }

.sl-ikon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  background: var(--ink-10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}
.sl-item.selected .sl-ikon { background: rgba(201,168,76,.25); }

.sl-body { flex: 1; min-width: 0; }
.sl-nama { font-size: 14px; font-weight: 600; color: var(--ink); }
.sl-harga { font-size: 13px; color: var(--gold-dark); font-weight: 600; }
.sl-durasi { font-size: 11px; color: var(--ink-40); }

.sl-check {
  width: 22px; height: 22px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  transition: all .18s;
}
.sl-item.selected .sl-check {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* PREVIEW STRIP */
.selected-preview {
  background: var(--ink-10);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--ink-60);
  min-height: 40px;
  display: flex;
  align-items: center;
}
.preview-empty { color: var(--ink-40); font-style: italic; }
.preview-filled { color: var(--ink-80); font-weight: 500; }

/* STEP FOOTER & NAV */
.step-footer { margin-top: 8px; }
.step-nav { display: flex; gap: 10px; }
.step-nav .btn { flex: 1; justify-content: center; }

/* CALENDAR */
.calendar-section {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cal-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 18px;
  color: var(--ink-60);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.cal-btn:hover { border-color: var(--gold); color: var(--gold); }

.cal-month {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-40);
  padding: 4px 0;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-80);
  cursor: pointer;
  transition: all .15s;
  -webkit-tap-highlight-color: transparent;
}
.cal-day:hover:not(.disabled):not(.empty) { background: var(--gold-light); color: var(--gold-dark); }
.cal-day.today { font-weight: 700; color: var(--gold-dark); }
.cal-day.selected { background: var(--gold); color: var(--white); box-shadow: 0 3px 10px var(--gold-glow); }
.cal-day.disabled { color: var(--ink-10); cursor: not-allowed; background: none; }
.cal-day.closed   { color: var(--error); text-decoration: line-through; cursor: not-allowed; }
.cal-day.empty    { cursor: default; }

/* SLOT GRID */
.slot-section { margin-bottom: 16px; }
.slot-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-80);
  margin-bottom: 12px;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.slot-btn {
  padding: 10px 4px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--ink-80);
  cursor: pointer;
  transition: all .15s;
  -webkit-tap-highlight-color: transparent;
}
.slot-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold-dark); background: var(--gold-light); }
.slot-btn.selected { background: var(--gold); border-color: var(--gold); color: var(--white); }
.slot-btn:disabled { background: var(--ink-10); color: var(--ink-10); border-color: var(--ink-10); cursor: not-allowed; }
.slot-btn.penuh    { background: var(--ink-10); color: var(--ink-40); border-color: var(--border); cursor: not-allowed; text-decoration: line-through; }

.empty-state-sm {
  font-size: 13px;
  color: var(--ink-40);
  font-style: italic;
  grid-column: 1 / -1;
  text-align: center;
  padding: 16px 0;
}


/* ── FORM ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-80);
  margin-bottom: 6px;
}
.required { color: var(--error); }

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  outline: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--ink-40); }
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form-input.error { border-color: var(--error); }
.form-input.error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.12); }

.form-textarea { resize: vertical; min-height: 80px; }

.input-prefix-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}
.input-prefix-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.input-prefix {
  background: var(--ink-10);
  color: var(--ink-60);
  padding: 12px 12px;
  font-size: 13px;
  font-weight: 600;
  border-right: 1.5px solid var(--border);
  white-space: nowrap;
}
.form-input.with-prefix {
  border: none;
  border-radius: 0;
  box-shadow: none !important;
}

.form-error {
  display: block;
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
  min-height: 16px;
}

/* BOOKING SUMMARY */
.booking-summary {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 4px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}
.bs-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-40);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.bs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.bs-row:last-child { border-bottom: none; }
.bs-key { color: var(--ink-60); }
.bs-val { font-weight: 600; color: var(--ink); }
.bs-total .bs-key { font-weight: 700; color: var(--ink); font-size: 14px; }
.bs-total .bs-val { font-size: 16px; color: var(--gold-dark); }


/* ── CONFIRM STEP ─────────────────────────────────────────── */
.confirm-header { text-align: center; margin-bottom: 20px; }
.confirm-icon { font-size: 36px; margin-bottom: 8px; }

.confirm-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.cc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.cc-row:last-child { border-bottom: none; }
.cc-key { color: var(--ink-60); display: flex; align-items: center; gap: 8px; }
.cc-val { font-weight: 600; color: var(--ink); text-align: right; max-width: 55%; }
.cc-highlight { background: var(--gold-light); }
.cc-highlight .cc-val { color: var(--gold-dark); font-size: 16px; }

.confirm-info {
  display: flex;
  gap: 10px;
  background: #EFF6FF;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #1D4ED8;
  line-height: 1.5;
}
.info-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.btn-wa .wa-icon { display: flex; }


/* ── SUCCESS ──────────────────────────────────────────────── */
.success-container { text-align: center; padding: 12px 0; }

.success-animation { margin-bottom: 20px; }
.success-circle {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(16,185,129,.35);
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.success-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.success-desc {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.6;
  margin-bottom: 24px;
}
.success-next {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.success-next-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-40);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.success-steps { display: flex; flex-direction: column; gap: 10px; }
.success-step-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-80);
}
.ss-num {
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.success-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }


/* ── GALERI ───────────────────────────────────────────────── */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.galeri-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.galeri-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform .3s;
}
.galeri-item:hover img { transform: scale(1.04); }

.galeri-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
}
.galeri-empty p { font-size: 14px; color: var(--ink-40); }
.galeri-empty span { font-size: 36px; display: block; margin-bottom: 10px; }


/* ── TESTIMONI ────────────────────────────────────────────── */
.section-testi { background: var(--surface); }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testi-quote {
  font-size: 36px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.testi-text {
  font-size: 14px;
  color: var(--ink-80);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.testi-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testi-nama {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}
.testi-layanan {
  font-size: 11px;
  color: var(--ink-40);
  margin-top: 2px;
}
.testi-stars { color: var(--gold); font-size: 13px; }
.testi-waktu {
  font-size: 11px;
  color: var(--ink-40);
}


/* ── LOKASI ───────────────────────────────────────────────── */
.lokasi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.maps-wrap { background: var(--ink-10); }
.maps-wrap iframe { display: block; }
.lokasi-info { padding: 20px; }
.lokasi-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-80);
}
.lokasi-row:last-of-type { border-bottom: none; }
.lokasi-ico { flex-shrink: 0; font-size: 16px; margin-top: 1px; }
.lokasi-link { color: var(--gold-dark); font-weight: 600; }


/* ── CTA AKHIR ────────────────────────────────────────────── */
.section-cta-akhir { background: var(--ink); padding: 64px 0; }
.cta-akhir-card { text-align: center; }
.cta-akhir-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.cta-akhir-desc {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.cta-akhir-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #08080F;
  padding: 40px 0 28px;
}
.footer-top {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-brand-name { color: var(--white); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.35); }

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color .18s;
}
.footer-links a:hover { color: var(--gold); }
.footer-admin-link { color: rgba(201,168,76,.5) !important; }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .18s;
  cursor: pointer;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-bottom {
  font-size: 12px;
  color: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-sep { opacity: .4; }


/* ── TOAST ────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  z-index: 9999;
  opacity: 0;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}


/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (min-width: 480px) {
  .manfaat-grid { grid-template-columns: repeat(3, 1fr); }
  .layanan-grid { grid-template-columns: repeat(2, 1fr); }
  .slot-grid    { grid-template-columns: repeat(4, 1fr); }
  .galeri-grid  { grid-template-columns: repeat(3, 1fr); }
  .testi-grid   { grid-template-columns: repeat(2, 1fr); }
  .galeri-item img { height: 180px; }
}

@media (min-width: 640px) {
  .booking-card { padding: 36px 32px; }
  .testi-grid   { grid-template-columns: repeat(3, 1fr); }
}

/* 320px safety */
@media (max-width: 360px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .step-line { max-width: 28px; }
  .step-label { font-size: 9px; }
}
