/* ==========================================================================
   RIHLAH BAROKAH — Travel Umroh & Wisata Halal
   Design System: "Lingkaran Kepercayaan" (Circle of Trust)
   Palet terinspirasi marmer Masjidil Haram, benang emas Kiswah, dan
   kedalaman zamrud malam Tanah Suci.
   ========================================================================== */

/* -------------------- 1. DESIGN TOKENS -------------------- */
:root {
  /* Warna utama */
  --ink: #12241C;              /* hijau tua nyaris hitam — teks & bidang gelap */
  --ink-soft: #1C332A;
  --canvas: #F6F1E7;           /* ivory marmer — latar utama */
  --canvas-alt: #EEE5D2;       /* ivory lebih gelap — latar section selang-seling */
  --card: #FFFFFF;
  --primary: #1F5C43;          /* zamrud — aksi utama, kepercayaan */
  --primary-dark: #143C2C;
  --primary-soft: #E4EDE7;
  --gold: #A9812E;             /* benang emas — aksen signature, dipakai hemat */
  --gold-soft: #E7DAB6;
  --text: #221F19;
  --text-muted: #6A6659;
  --text-on-dark: #F3EFE4;
  --text-muted-on-dark: #B9C4BC;
  --border: rgba(18, 36, 28, 0.12);
  --border-on-dark: rgba(243, 239, 228, 0.16);
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --danger: #A6362C;
  --danger-soft: #F6E7E5;
  --success-soft: #E4EDE7;

  /* Radius & bayangan */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(18, 36, 28, 0.07);
  --shadow-md: 0 10px 30px rgba(18, 36, 28, 0.10);
  --shadow-lg: 0 20px 48px rgba(18, 36, 28, 0.16);

  /* Tipografi */
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1140px;
  --container-narrow: 760px;
  --gutter: 20px;
}

/* -------------------- 2. RESET & BASE -------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--canvas);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.22;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--text-muted); }

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

button { font-family: inherit; cursor: pointer; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: 64px 0; position: relative; }
.section-alt { background: var(--canvas-alt); }
.section-dark {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--text-on-dark);
}
.section-dark p { color: var(--text-muted-on-dark); }
.section-dark h2, .section-dark h3 { color: var(--text-on-dark); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -------------------- 3. TYPOGRAPHY HELPERS -------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

.section-head {
  max-width: 620px;
  margin: 0 0 40px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h2.section-title { font-size: clamp(26px, 4.5vw, 36px); }
.section-lead { font-size: 16.5px; }

.text-center { text-align: center; }

/* -------------------- 4. BUTTONS -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  min-height: 48px;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-md); }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: #93701F; }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-outline-light {
  background: transparent;
  border-color: var(--border-on-dark);
  color: var(--text-on-dark);
}
.btn-outline-light:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.32);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* -------------------- 5. HEADER -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.brand-text-full { display: inline; }
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 18px; font-size: 13.5px; }

.quick-nav {
  display: flex;
  overflow-x: auto;
  padding: 0 var(--gutter) 12px;
  scrollbar-width: none;
}
.quick-nav::-webkit-scrollbar { display: none; }
.quick-nav-track {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  /* margin-auto menengahkan baris menu saat muat di layar; begitu tidak
     muat (overflow), margin otomatis mengecil ke 0 sehingga menu tetap
     rata kiri dan bisa digeser dengan rapi -- tanpa perlu breakpoint. */
  margin: 0 auto;
}
.quick-nav a {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.18s ease;
}
.quick-nav a:hover, .quick-nav a.is-active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

/* -------------------- 6. HERO -------------------- */
.hero {
  padding: 44px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--gold-soft);
  color: var(--ink);
  padding: 8px 14px 8px 8px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.legal-badge .ring-icon { width: 22px; height: 22px; }

.hero h1 {
  font-size: clamp(30px, 6.5vw, 48px);
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}
.hero-lead {
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--ink);
}
.hero-stat-label {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3.4;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 20%, rgba(169,129,46,0.35), transparent 55%),
    linear-gradient(155deg, var(--ink) 0%, var(--primary-dark) 55%, var(--primary) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .ring-icon-large {
  width: 62%;
  height: 62%;
  opacity: 0.92;
}
.hero-visual-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  background: rgba(18, 36, 28, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(243, 239, 228, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-on-dark);
  font-size: 12.5px;
  font-weight: 500;
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .hero { padding: 64px 0 90px; }
}

/* -------------------- 7. TRUST RING (signature SVG) --------------------
   Catatan teknis: warna elemen di dalam <symbol> TIDAK BISA ditarget lewat
   selector CSS biasa (mis. ".ring-icon-large circle.ring-track") karena
   konten yang digandakan oleh <use> berada di luar jangkauan selector
   turunan biasa. Warna harus dikirim lewat CSS custom property yang
   memang diwariskan (inherited), lalu dibaca via var() langsung di
   atribut fill/stroke pada <symbol> (lihat index.html). Jangan kembalikan
   ke pola selector lama, karena akan membuat ikon tampil sebagai kotak
   hitam polos seperti sebelumnya. */
.ring-icon {
  --ring-track-color: var(--gold-soft);
  --ring-dash-color: var(--gold);
  --ring-core-color: var(--primary);
  --ring-dot-color: var(--gold);
}
.ring-icon-large {
  --ring-track-color: rgba(243,239,228,0.25);
  --ring-dash-color: var(--gold);
  --ring-core-color: rgba(243,239,228,0.9);
  --ring-dot-color: var(--gold);
}

.ring-spin { animation: ring-rotate 26s linear infinite; transform-origin: center; }
@keyframes ring-rotate { to { transform: rotate(360deg); } }

/* -------------------- 8. MANFAAT (BENEFIT CARDS) -------------------- */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-icon svg { width: 24px; height: 24px; color: var(--primary); }
.benefit-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.benefit-card p { font-size: 14.5px; margin-bottom: 0; }

@media (min-width: 760px) {
  .benefit-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* -------------------- 9. CTA STRIP -------------------- */
.cta-strip {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.cta-strip h3 { color: #fff; font-size: 20px; margin-bottom: 6px; }
.cta-strip p { color: rgba(255,255,255,0.82); margin-bottom: 0; font-size: 14.5px; }
@media (min-width: 700px) {
  .cta-strip { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* -------------------- 10. KATALOG PAKET -------------------- */
.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 28px;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--card);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: all 0.18s ease;
}
.filter-tab.is-active, .filter-tab:hover {
  background: var(--ink);
  color: var(--text-on-dark);
  border-color: var(--ink);
}

.paket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .paket-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px) {
  .paket-grid { grid-template-columns: repeat(3, 1fr); }
}

.paket-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.paket-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.paket-media {
  height: 132px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--primary) 100%);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px;
}
.paket-badge {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
}
.paket-media .ring-icon { width: 30px; height: 30px; }
.paket-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.paket-body h3 { font-size: 18.5px; margin-bottom: 0; }
.paket-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}
.paket-price span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  color: var(--text-muted);
  display: block;
}
.paket-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 14px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.paket-facts li { display: flex; align-items: center; gap: 6px; }
.paket-facts svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.paket-features { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; }
.paket-features li { display: flex; gap: 8px; align-items: flex-start; }
.paket-features svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.paket-actions { margin-top: auto; display: flex; flex-direction: column; gap: 8px; padding-top: 6px; }

.empty-state {
  text-align: center;
  padding: 48px 24px;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 14.5px;
}
.empty-state svg { width: 34px; height: 34px; color: var(--gold); margin: 0 auto 12px; }

/* -------------------- 11. JADWAL KEBERANGKATAN -------------------- */
.jadwal-list { display: flex; flex-direction: column; gap: 14px; }
.jadwal-month-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 22px 0 10px;
}
.jadwal-month-label:first-child { margin-top: 0; }
.jadwal-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.jadwal-date {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.jadwal-date .d { font-family: var(--font-heading); font-weight: 700; font-size: 19px; color: var(--ink); line-height: 1; }
.jadwal-date .m { font-size: 10.5px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.jadwal-info { flex: 1; min-width: 0; }
.jadwal-info h4 { font-family: var(--font-heading); font-weight: 600; font-size: 15px; margin: 0 0 3px; color: var(--ink); }
.jadwal-info p { font-size: 13px; margin: 0; }
.jadwal-status {
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.status-tersedia { background: var(--success-soft); color: var(--primary-dark); }
.status-terbatas { background: #FBF0DD; color: #8A5A0E; }
.status-penuh { background: #EDEAE2; color: #8B8778; }
.jadwal-item.is-full { opacity: 0.65; }
.jadwal-cta { display: flex; flex-shrink: 0; }
.jadwal-cta .btn { padding: 9px 14px; font-size: 12.5px; }

/* Di layar sempit, "status" dan "tombol" tidak lagi berebut satu baris
   dengan judul paket (yang sebelumnya membuat judul terpotong sempit).
   Disusun ulang jadi 2 baris: [tanggal|judul] lalu [status|tombol]. */
@media (max-width: 560px) {
  .jadwal-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    grid-template-areas:
      "date  info   info"
      "date  status cta";
    align-items: center;
    column-gap: 14px;
    row-gap: 10px;
  }
  .jadwal-date { grid-area: date; }
  .jadwal-info { grid-area: info; }
  .jadwal-status { grid-area: status; justify-self: start; }
  .jadwal-cta { grid-area: cta; justify-self: end; }
}

/* -------------------- 12. SIMULASI CICILAN -------------------- */
.simulasi-panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .simulasi-panel { grid-template-columns: 1fr 1fr; }
}
.simulasi-form { padding: 30px 26px; display: flex; flex-direction: column; gap: 18px; }
.simulasi-result {
  padding: 30px 26px;
  background: linear-gradient(160deg, var(--ink) 0%, var(--primary-dark) 100%);
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
}
.field .hint { font-size: 12px; color: var(--text-muted); margin-top: -2px; }
.input, select.input {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  min-height: 48px;
}
.input:focus, select.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.input.has-error { border-color: var(--danger); }
.field-error {
  display: none;
  font-size: 12.5px;
  color: var(--danger);
  font-weight: 500;
}
.field-error.is-visible { display: block; }

.result-label {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
}
.result-amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 36px);
  color: #fff;
}
.result-amount span { font-size: 15px; font-weight: 500; color: var(--text-muted-on-dark); }
.result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  padding-top: 14px;
  border-top: 1px solid var(--border-on-dark);
}
.result-breakdown div { display: flex; justify-content: space-between; color: var(--text-muted-on-dark); }
.result-breakdown strong { color: var(--text-on-dark); font-weight: 600; }
.result-disclaimer {
  font-size: 12px;
  color: var(--text-muted-on-dark);
  line-height: 1.55;
  padding: 12px 14px;
  background: rgba(243, 239, 228, 0.06);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-sm);
}
.result-placeholder {
  font-size: 14px;
  color: var(--text-muted-on-dark);
  text-align: center;
  padding: 20px 0;
}

/* -------------------- 13. MANASIK -------------------- */
.manasik-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 30px;
}
@media (min-width: 700px) { .manasik-grid { grid-template-columns: repeat(2, 1fr); } }
.manasik-item {
  display: flex;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.manasik-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.manasik-item h4 { font-size: 14.5px; margin-bottom: 4px; color: var(--ink); }
.manasik-item p { font-size: 13px; margin-bottom: 0; }
.manasik-cta-box {
  background: var(--primary-soft);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
@media (min-width: 700px) {
  .manasik-cta-box { flex-direction: row; align-items: center; justify-content: space-between; }
}
.manasik-cta-box h3 { font-size: 16.5px; margin-bottom: 4px; }
.manasik-cta-box p { margin-bottom: 0; font-size: 13.5px; }

/* -------------------- 14. LEGALITAS / TENTANG -------------------- */
.legal-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) { .legal-wrap { grid-template-columns: 0.85fr 1.15fr; } }
.legal-visual {
  aspect-ratio: 1;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169,129,46,0.18), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.legal-visual .ring-icon-large { width: 78%; height: 78%; }
.legal-points { display: flex; flex-direction: column; gap: 18px; }
.legal-point { display: flex; gap: 14px; }
.legal-point-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.legal-point-icon svg { width: 20px; height: 20px; color: var(--primary); }
.legal-point h4 { font-size: 15.5px; margin-bottom: 4px; color: var(--text-on-dark); }
.legal-point p { font-size: 13.5px; margin-bottom: 0; }
.legal-number {
  display: inline-flex;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--gold-soft);
  background: rgba(243,239,228,0.06);
  border: 1px solid var(--border-on-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}

/* -------------------- 15. TESTIMONI -------------------- */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-quote { font-size: 14.5px; color: var(--text); margin-bottom: 18px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-heading); font-weight: 600; font-size: 13.5px; color: var(--ink); }
.testi-loc { font-size: 12px; color: var(--text-muted); }

/* -------------------- 16. FORM KONSULTASI -------------------- */
.consult-panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 32px 26px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.consult-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .consult-grid { grid-template-columns: 1fr 1fr; } }
.consult-grid .field-full { grid-column: 1 / -1; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--success-soft);
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  margin-top: 16px;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

/* -------------------- 17. CTA AKHIR -------------------- */
.final-cta {
  text-align: center;
  padding: 56px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--ink) 0%, var(--primary-dark) 60%, var(--primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta .ring-icon-large {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  opacity: 0.15;
}
.final-cta h2 { color: #fff; margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,0.82); max-width: 480px; margin: 0 auto 26px; }
.final-cta .btn-row { justify-content: center; position: relative; z-index: 1; }

/* -------------------- 18. FOOTER -------------------- */
.site-footer {
  background: var(--ink);
  color: var(--text-muted-on-dark);
  padding: 44px 0 100px;
  font-size: 13.5px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-on-dark);
  margin-bottom: 20px;
}
@media (min-width: 760px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--text-on-dark); font-family: var(--font-heading); font-weight: 700; font-size: 16px; }
.footer-brand svg { width: 30px; height: 30px; }
.footer-desc { max-width: 280px; margin-top: 10px; font-size: 13px; }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h5 { font-family: var(--font-heading); color: var(--text-on-dark); font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 12px; }

/* -------------------- 19. FLOATING WHATSAPP -------------------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }
.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float-pulse { animation: none; display: none; }
}

/* -------------------- 20. UTILITIES -------------------- */
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 100;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate].is-inview { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
}
