/* ========================================
   Kadana Laundry — Landing Page Stylesheet
   Mengikuti Design Guidelines PRD (Bagian 6)
======================================== */

:root {
  /* Primary */
  --midnight: #02050A;
  --navy: #00224E;
  --ocean: #4376AB;
  --gold: #F6BF41;
  /* Extended */
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --med-gray: #9CA3AF;
  --dark-gray: #374151;
  /* Status */
  --success: #10B981;
  --warning: #F6BF41;
  --info: #4376AB;
  --error: #EF4444;
  /* tokens */
  --radius: 12px;
  --shadow: 0 4px 6px rgba(0,0,0,.1);
  --shadow-lg: 0 16px 40px rgba(2,5,10,.18);
  --maxw: 1160px;
  --font: "Geist", "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--midnight);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 16px;
  padding: 13px 26px; border-radius: var(--radius);
  cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-cta { background: var(--gold); color: var(--midnight); }
.btn-cta:hover { box-shadow: 0 8px 20px rgba(246,191,65,.4); transform: translateY(-2px); }
.btn-primary { background: var(--ocean); color: var(--white); }
.btn-primary:hover { background: #386195; }
.btn-secondary { background: transparent; border-color: var(--ocean); color: var(--ocean); }
.btn-secondary:hover { background: var(--ocean); color: var(--white); }

/* ---------- Eyebrow / Section heads ---------- */
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--ocean);
  margin-bottom: 12px;
}
.section-head { margin-bottom: 48px; max-width: 640px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 36px); font-weight: 700; line-height: 1.2; }
.section-head p { color: var(--dark-gray); margin-top: 14px; font-size: 17px; }
section { padding: 88px 0; }

/* ========================================
   NAVBAR
======================================== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(2,5,10,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(67,118,171,.25);
  transition: background .3s ease;
}
.navbar.scrolled { background: rgba(2,5,10,.97); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.82); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { color: var(--midnight) !important; padding: 9px 18px; font-size: 14px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: .3s; }
.nav-toggle.active span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity: 0; }
.nav-toggle.active span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ========================================
   HERO
======================================== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--midnight) 0%, var(--navy) 100%);
  color: var(--white);
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px); /* fit layar dikurangi tinggi navbar */
  display: flex; align-items: center;
  padding: 48px 0;
}
.hero-bg-glow {
  position: absolute; top: -120px; right: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(67,118,171,.4), transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; position: relative; width: 100%; }
.hero-badge {
  display: inline-block; background: rgba(246,191,65,.15); color: var(--gold);
  border: 1px solid rgba(246,191,65,.4); padding: 7px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 5.2vw, 56px); line-height: 1.08; font-weight: 700; letter-spacing: -1px; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.78); margin: 22px 0 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-secondary { border-color: rgba(255,255,255,.4); color: var(--white); }
.hero-actions .btn-secondary:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-size: 30px; font-weight: 700; color: var(--gold); }
.hero-stats .stat span { font-size: 14px; color: rgba(255,255,255,.65); }
.hero-visual { display: flex; justify-content: center; }
.hero-illustration { width: 100%; max-width: 360px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }
.drum { transform-origin: 160px 210px; animation: spin 8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.bubble { animation: float 4s ease-in-out infinite; }
.bubble.b2 { animation-delay: .8s; }
.bubble.b3 { animation-delay: 1.6s; }
@keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }

/* hero fokus lacak pesanan (single column, di tengah) */
.hero-inner.hero-track-mode { display: block; max-width: 820px; margin: 0 auto; text-align: center; width: 100%; }
.hero-track-mode .hero-sub { margin-left: auto; margin-right: auto; }
.hero-track { margin-top: 30px; max-width: none; text-align: left; }
.hero-track-mode .hero-stats { justify-content: center; margin-top: 34px; }
.hero-scroll { display: inline-block; margin-top: 20px; color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; transition: color .2s; animation: scrollBob 1.8s ease-in-out infinite; }
.hero-scroll:hover { color: var(--gold); animation-play-state: paused; }
@keyframes scrollBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* badge bintang berkelip */
.hb-star { display: inline-block; color: var(--gold); animation: twinkle 1.6s ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: 1; transform: scale(1) rotate(0); } 50% { opacity: .55; transform: scale(1.25) rotate(18deg); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll, .hb-star { animation: none; } }

/* ========================================
   TRACKING
======================================== */
.tracking { background: var(--light-gray); }
.track-box {
  max-width: 760px; margin: 0 auto; background: var(--white);
  border-radius: 20px; box-shadow: var(--shadow-lg); padding: 36px;
}
.track-form { display: flex; gap: 12px; }
.track-form input {
  flex: 1; padding: 15px 18px; font-size: 16px; font-family: inherit;
  border: 1.5px solid rgba(67,118,171,.3); border-radius: var(--radius);
  background: var(--light-gray); transition: border .2s, box-shadow .2s;
}
.track-form input:focus { outline: none; border-color: var(--ocean); box-shadow: 0 0 0 4px rgba(67,118,171,.12); background: var(--white); }
.track-hint { font-size: 13px; color: var(--med-gray); margin-top: 12px; text-align: center; }
.track-hint code { background: var(--light-gray); border: 1px solid #e3e3e3; padding: 2px 7px; border-radius: 5px; color: var(--ocean); font-size: 12px; }

.result-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--med-gray); }

/* ----- wrap hasil + ringkasan + filter ----- */
.track-results-wrap { margin-top: 28px; border-top: 1px solid #eee; padding-top: 26px; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.track-summary { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.ts-info h3 { font-size: 20px; color: var(--navy); }

.track-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  font-family: inherit; font-size: 13.5px; font-weight: 600;
  padding: 8px 14px; border-radius: 999px;
  border: 1.5px solid rgba(67,118,171,.3); background: #fff; color: var(--dark-gray);
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--ocean); color: var(--ocean); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.fb-count { font-size: 11.5px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: rgba(67,118,171,.18); color: var(--ocean); display: inline-flex; align-items: center; justify-content: center; }
.filter-btn.active .fb-count { background: rgba(255,255,255,.22); color: #fff; }

/* ----- pengingat bawa struk ----- */
.track-reminder {
  display: flex; align-items: center; gap: 12px;
  background: rgba(246,191,65,.14); border: 1px solid rgba(246,191,65,.5);
  border-radius: var(--radius); padding: 14px 18px; margin-bottom: 22px;
}
.track-reminder .tr-icon { font-size: 22px; flex: none; animation: nudge 2.4s ease-in-out infinite; }
@keyframes nudge { 0%,92%,100%{ transform: rotate(0); } 95%{ transform: rotate(-12deg); } 98%{ transform: rotate(10deg); } }
.track-reminder p { font-size: 14px; color: #7a5a06; line-height: 1.5; }
.track-reminder strong { color: #5c4304; }

/* ----- daftar kartu pesanan ----- */
.order-list { display: grid; gap: 18px; }
.order-card { border: 1px solid #eef0f3; border-radius: 14px; padding: 22px; background: #fff; box-shadow: 0 2px 8px rgba(2,5,10,.05); animation: fadeIn .35s ease; }
.order-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; flex-wrap: wrap; }
.order-card-head h4 { font-size: 18px; color: var(--navy); margin-top: 2px; }
.order-sub { font-size: 13px; color: var(--med-gray); margin-top: 4px; }
.order-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0 24px; }
.order-meta div span { display: block; font-size: 11.5px; color: var(--med-gray); text-transform: uppercase; letter-spacing: .5px; }
.order-meta div strong { font-size: 14.5px; color: var(--midnight); }
.order-empty { text-align: center; color: var(--med-gray); padding: 30px 0; font-size: 15px; }

/* ----- status pill + animasi ringan ----- */
.status-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.status-pill.info { background: rgba(67,118,171,.15); color: var(--info); }
.status-pill.warning { background: rgba(246,191,65,.2); color: #b8860b; }
.status-pill.ready { background: rgba(67,118,171,.16); color: var(--ocean); }
.status-pill.success { background: rgba(16,185,129,.15); color: var(--success); }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex: none; }
/* animasi ringan: denyut pada pesanan yg masih berjalan / siap ambil */
.status-pill.pulse.warning .pill-dot,
.status-pill.pulse.ready .pill-dot { animation: pulseDot 1.4s ease-in-out infinite; }
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  50%     { box-shadow: 0 0 0 5px transparent; opacity: .45; }
}
/* status selesai: titik tenang (centang halus) */
.status-pill.success .pill-dot { animation: none; }

/* progress steps */
.progress-track { display: flex; justify-content: space-between; position: relative; }
.progress-track::before {
  content: ""; position: absolute; top: 16px; left: 5%; right: 5%; height: 3px; background: #e6e6e6; z-index: 0;
}
.progress-track .pt-fill { position: absolute; top: 16px; left: 5%; height: 3px; background: var(--gold); z-index: 1; border-radius: 3px; transition: width .5s ease; }
.pstep { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; text-align: center; }
.pstep .dot { width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 3px solid #e6e6e6; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--med-gray); transition: .3s; }
.pstep.done .dot { background: var(--gold); border-color: var(--gold); color: var(--midnight); }
.pstep.current .dot { background: var(--navy); border-color: var(--navy); color: #fff; animation: ring 1.8s ease-out infinite; }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(0,34,78,.35); } 70%,100% { box-shadow: 0 0 0 9px rgba(0,34,78,0); } }
.pstep span { font-size: 11.5px; color: var(--dark-gray); max-width: 70px; line-height: 1.25; }
.pstep.done span, .pstep.current span { font-weight: 600; color: var(--midnight); }

.track-notfound { margin-top: 24px; background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.3); color: var(--error); padding: 16px 20px; border-radius: var(--radius); text-align: center; font-weight: 500; }

/* ========================================
   LAYANAN
======================================== */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--white); border: 1px solid #eef0f3; border-radius: 18px;
  box-shadow: var(--shadow); padding: 24px; transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(67,118,171,.4); }
.svc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(67,118,171,.12); display: flex; align-items: center; justify-content: center; font-size: 24px; flex: none; }
.svc-cat { font-size: 11.5px; font-weight: 700; color: var(--ocean); background: rgba(67,118,171,.1); padding: 5px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: .3px; }
.service-card h3 { font-size: 19px; margin-bottom: 12px; }
.svc-list { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 7px; }
.svc-list li { position: relative; padding-left: 24px; font-size: 14px; color: var(--dark-gray); line-height: 1.45; }
.svc-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 17px; height: 17px; border-radius: 50%; background: rgba(16,185,129,.15); color: var(--success); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.svc-price { font-size: 26px; font-weight: 700; color: var(--navy); }
.svc-price small { font-size: 14px; font-weight: 500; color: var(--med-gray); }
.svc-eta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--med-gray); margin-top: 8px; margin-bottom: 18px; }
.svc-wa {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: #25D366; color: #fff; font-weight: 600; font-size: 14.5px;
  padding: 12px 16px; border-radius: 12px; transition: transform .15s, box-shadow .2s;
}
.svc-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(37,211,102,.4); }

/* ========================================
   TENTANG
======================================== */
.tentang { background: linear-gradient(180deg, #fff 0%, var(--light-gray) 100%); }
.tentang-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }

/* visual collage */
.tentang-visual { position: relative; padding: 30px 20px; }
.tv-card { background: linear-gradient(160deg, var(--navy), var(--midnight)); border-radius: 28px; padding: 36px; box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.tv-card svg { width: 100%; max-width: 300px; margin: 0 auto; display: block; }
.tv-ring { transform-origin: 120px 120px; animation: spin 18s linear infinite; }
.tv-shirt { animation: float 5s ease-in-out infinite; transform-origin: center; }
.tv-badge {
  position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px; z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.tv-badge strong { display: block; font-size: 17px; color: var(--navy); line-height: 1.1; }
.tv-badge span { font-size: 12px; color: var(--med-gray); }
.tv-badge-1 { top: 6px; right: -6px; animation-delay: .2s; }
.tv-badge-2 { bottom: 40px; left: -14px; animation-delay: 1s; }
.tv-badge-3 { bottom: -6px; right: 24px; animation-delay: 1.7s; }
.tvb-star { color: var(--gold); font-size: 22px; }

.tentang-content h2 { font-size: clamp(28px,4vw,38px); margin: 6px 0 16px; line-height: 1.18; }
.tentang-content > p { color: var(--dark-gray); font-size: 17px; margin-bottom: 30px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-box { background: #fff; border: 1px solid #eef0f3; border-radius: 14px; padding: 20px; transition: transform .2s, box-shadow .2s; }
.feature-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fb-ic { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; font-size: 22px; margin-bottom: 12px; background: color-mix(in srgb, var(--c) 14%, transparent); }
.feature-box strong { display: block; font-size: 15.5px; margin-bottom: 5px; color: var(--midnight); }
.feature-box p { font-size: 13.5px; color: var(--med-gray); line-height: 1.5; }

/* ========================================
   CARA KERJA
======================================== */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
/* garis penghubung antar langkah */
.steps-line { position: absolute; top: 42px; left: 12.5%; right: 12.5%; height: 3px; background: repeating-linear-gradient(90deg, rgba(67,118,171,.3) 0 8px, transparent 8px 16px); z-index: 0; }
.steps-line-fill { position: absolute; inset: 0 100% 0 0; background: var(--gold); transition: right 1.2s ease; border-radius: 3px; }
.steps.in-view .steps-line-fill { inset: 0 0 0 0; }

.step { position: relative; z-index: 1; text-align: center; padding: 8px 14px; }
.step-num { position: relative; width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%; background: #fff; border: 2px solid rgba(67,118,171,.25); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,34,78,.12); transition: transform .3s, border-color .3s, box-shadow .3s; }
.step-ic { font-size: 30px; line-height: 1; }
.step-badge { position: absolute; top: -6px; right: -6px; width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 8px rgba(0,34,78,.3); }
.step:hover .step-num { transform: translateY(-6px) scale(1.05); border-color: var(--gold); box-shadow: 0 14px 28px rgba(246,191,65,.3); }
.step h4 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--dark-gray); line-height: 1.55; }

/* reveal on scroll */
.reveal, .reveal-step { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view, .reveal-step.in-view { opacity: 1; transform: none; }
.reveal-step:nth-child(2){ transition-delay: .05s; }
.reveal-step:nth-child(3){ transition-delay: .2s; }
.reveal-step:nth-child(4){ transition-delay: .35s; }
.reveal-step:nth-child(5){ transition-delay: .5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-step { opacity: 1; transform: none; transition: none; }
}

/* ========================================
   TESTIMONI
======================================== */
.testimoni { background: linear-gradient(160deg, var(--midnight), var(--navy)); color: #fff; }
.testimoni .section-head h2 { color: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: rgba(255,255,255,.06); border: 1px solid rgba(67,118,171,.3); border-radius: var(--radius); padding: 28px; }
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 15px; color: rgba(255,255,255,.85); line-height: 1.65; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--ocean); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testi-author strong { display: block; font-size: 15px; }
.testi-author span { font-size: 13px; color: var(--med-gray); }

/* ========================================
   FAQ
======================================== */
.faq-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid #e8eaed; border-radius: var(--radius); overflow: hidden; background: #fff; transition: box-shadow .2s; }
.faq-item.open { box-shadow: var(--shadow); border-color: rgba(67,118,171,.4); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; font-size: 16px; font-weight: 600; font-family: inherit; color: var(--midnight); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { flex: none; transition: transform .3s; color: var(--ocean); font-size: 20px; }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--dark-gray); font-size: 15px; }

/* ========================================
   KONTAK
======================================== */
.kontak { background: var(--light-gray); }
.kontak-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; align-items: stretch; }
.kontak-info { background: #fff; border-radius: 18px; box-shadow: var(--shadow); padding: 32px; display: flex; flex-direction: column; gap: 24px; }
.ki-row { display: flex; gap: 16px; align-items: flex-start; }
.ki-ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(67,118,171,.12); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.ki-row h4 { font-size: 16px; margin-bottom: 4px; color: var(--navy); }
.ki-row p { font-size: 14.5px; color: var(--dark-gray); line-height: 1.5; }
.ki-wa-btn { margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: #fff; font-weight: 600; font-size: 15.5px; padding: 14px 20px; border-radius: var(--radius); transition: transform .15s, box-shadow .2s; }
.ki-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,.4); }

.kontak-map { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); min-height: 380px; border: 1px solid #e5e7eb; }
.kontak-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; filter: grayscale(.15) contrast(1.05); }
.map-open { position: absolute; bottom: 14px; left: 14px; background: rgba(2,5,10,.88); color: #fff; font-size: 13px; font-weight: 600; padding: 9px 14px; border-radius: 8px; backdrop-filter: blur(4px); transition: background .2s; }
.map-open:hover { background: var(--navy); color: var(--gold); }

/* ========================================
   FOOTER
======================================== */
.footer { background: var(--midnight); color: rgba(255,255,255,.7); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; max-width: 280px; }
.footer-col h5 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13.5px; }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { font-size: 13.5px; transition: color .2s; }
.footer-socials a:hover { color: var(--gold); }

/* FAB WhatsApp */
.fab-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 95; display: flex; align-items: center; gap: 12px; }
.fab-wa {
  position: relative; width: 62px; height: 62px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.5); flex: none;
  animation: fabBob 2.8s ease-in-out infinite;
}
.fab-wa:hover { animation-play-state: paused; transform: scale(1.08); }
.fab-wa svg { position: relative; z-index: 2; }
@keyframes fabBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
/* cincin denyut menarik perhatian */
.fab-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: fabPulse 2.2s ease-out infinite; z-index: 1; }
.fab-ring-2 { animation-delay: 1.1s; }
@keyframes fabPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2.1); opacity: 0; } }

/* tooltip ajakan */
.fab-tip {
  background: #fff; color: var(--midnight); font-size: 14px; font-weight: 600;
  padding: 11px 16px; border-radius: 12px; box-shadow: var(--shadow-lg);
  white-space: nowrap; position: relative; transform-origin: right center;
  animation: tipPop .5s ease both;
}
.fab-tip::after { content: ""; position: absolute; right: -7px; top: 50%; transform: translateY(-50%); border: 7px solid transparent; border-left-color: #fff; }
.fab-tip.hide { display: none; }
@keyframes tipPop { 0% { opacity: 0; transform: scale(.7) translateX(10px); } 100% { opacity: 1; transform: scale(1) translateX(0); } }
.fab-tip-close { margin-left: 8px; color: var(--med-gray); cursor: pointer; font-weight: 700; }
.fab-tip-close:hover { color: var(--error); }
@media (prefers-reduced-motion: reduce) {
  .fab-wa, .fab-ring { animation: none; }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .hero-visual { order: -1; }
  .hero-illustration { max-width: 200px; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats { margin-top: 24px; }
  .tentang-inner, .faq-inner, .kontak-layout { grid-template-columns: 1fr; gap: 36px; }
  .tentang-visual { max-width: 420px; margin: 0 auto; }
  .service-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .steps-line { display: none; }
  .kontak-map { min-height: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 72px; right: 0; width: min(80%, 320px); height: calc(100vh - 72px);
    background: var(--midnight); flex-direction: column; align-items: flex-start;
    padding: 28px 28px; gap: 18px; transform: translateX(100%); transition: transform .3s ease;
    border-left: 1px solid rgba(67,118,171,.25);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 17px; }
  .nav-cta { width: 100%; justify-content: center; margin-top: 8px; }
  .nav-toggle { display: flex; }
  section { padding: 64px 0; }
  .hero { padding: 32px 0; }
  .hero-illustration { max-width: 150px; }
  .hero-stats { gap: 22px; }
  .hero-stats .stat strong { font-size: 24px; }
  .track-box { padding: 24px 18px; }
  .track-form { flex-direction: column; }
  .track-summary { flex-direction: column; align-items: flex-start; }
  .track-filters { width: 100%; }
  .order-meta { grid-template-columns: 1fr 1fr; }
  .service-grid, .testi-grid, .steps, .feature-grid, .footer-inner { grid-template-columns: 1fr; }
  .pstep span { font-size: 10px; }
  .fab-tip { display: none; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}
