/* ═══════════════════════════════════════
   KonsultanPartner – style.css (FIXED)
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  /* Brand */
  --gold: #C9A84C;
  --gold-dark: #B8931E;
  --gold-grad: linear-gradient(135deg, #B8931E 0%, #D4AF37 100%);

  /* Backgrounds */
  --bg: #0B0C10;
  --bg-soft: #12141B;
  --surface: #171A22;

  /* Borders */
  --border: rgba(201,168,76,.18);
  --border-strong: rgba(201,168,76,.28);
  --border-md: rgba(201,168,76,.28);   /* alias */
  --border-str: rgba(201,168,76,.38);  /* alias stronger */
  --line: rgba(255,255,255,.07);       /* subtle dividers */

  /* Text */
  --text: #F4EFE3;
  --muted: rgba(244,239,227,.72);
  --faint: rgba(244,239,227,.44);

  /* Radii */
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 28px;
  --r: 22px;       /* alias */
  --r-sm: 14px;    /* alias */
  --r-lg: 28px;    /* alias */

  /* Misc */
  --shadow: 0 24px 60px rgba(0,0,0,.34);
  --max: 1180px;
}

/* ── Reset & Base ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(201,168,76,.06), transparent 30%), var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
h1,h2,h3,h4,h5,h6 { margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ── Layout ───────────────────────────── */
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.section { padding: 100px 0; position: relative; }

/* ── Typography helpers ───────────────── */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.section-head { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0 0 14px;
}
.section-desc { max-width: 720px; margin: 0 auto; color: var(--muted); font-size: 1rem; }
.gold { color: var(--gold); }

/* ── Scroll Reveal ───────────────────── */
.sr {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.sr.in {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered delays */
.sr.d1 { transition-delay: .1s; }
.sr.d2 { transition-delay: .2s; }
.sr.d3 { transition-delay: .3s; }
.sr.d4 { transition-delay: .4s; }

/* ── Navbar ───────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(11,12,16,.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s ease, box-shadow .3s ease;
}
#navbar.scrolled {
  background: rgba(11,12,16,.92);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.nav-wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo { display: flex; align-items: center; gap: 14px; min-width: 0; }
.logo-mark {
  width: 48px; height: 48px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: var(--gold-grad);
  color: #111;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700;
  box-shadow: 0 12px 30px rgba(201,168,76,.22);
  flex-shrink: 0;
}
.logo-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; letter-spacing: .12em; font-weight: 700; line-height: 1;
}
.logo-name span { color: var(--gold); }
.logo-sub {
  display: block;
  font-size: .72rem; color: var(--faint);
  margin-top: 4px; letter-spacing: .08em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 26px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  position: relative; font-size: .92rem;
  color: var(--muted); font-weight: 500; padding: 10px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Buttons */
.nav-cta, .btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  background: var(--gold-grad); color: #090805;
  font-weight: 700; font-size: .88rem;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 26px rgba(201,168,76,.2);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.nav-cta:hover, .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(201,168,76,.3);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  border: 1px solid rgba(201,168,76,.28);
  color: var(--text); background: rgba(255,255,255,.02);
  font-size: .88rem; font-weight: 500;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn-outline:hover {
  transform: translateY(-2px);
  border-color: rgba(201,168,76,.44);
  background: rgba(201,168,76,.06);
}

/* Hamburger */
#ham {
  display: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: var(--text);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  cursor: pointer;
}
#ham svg { width: 22px; height: 22px; }

/* Mobile menu */
#mob-menu {
  display: none;
  flex-direction: column; gap: 4px;
  position: fixed;
  left: 16px; right: 16px; top: 92px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(12,13,18,.97);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 490;
}
#mob-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
#mob-menu a {
  padding: 12px 0; color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .95rem;
}
#mob-menu a:last-child { border-bottom: none; }
#mob-menu .mob-cta {
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px; border-radius: 999px;
  background: var(--gold-grad); color: #090805; font-weight: 700;
  border: none;
}

/* ── Hero (index) ─────────────────────── */
#home {
  position: relative; overflow: hidden;
  min-height: calc(100vh - 86px);
  display: grid; place-items: center;
  padding: 80px 0;
  background:
    linear-gradient(180deg, rgba(11,12,16,.18), rgba(11,12,16,.82)),
    radial-gradient(circle at top, rgba(201,168,76,.12), transparent 38%),
    linear-gradient(135deg, #0d0f14, #090a0d);
}
.hero-bg {
  position: absolute; inset: -8%;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=80') center/cover no-repeat fixed;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,12,16,.65) 0%, rgba(11,12,16,.45) 50%, rgba(212,175,55,.12) 100%); }
.hero-content { position: relative; z-index: 2; width: min(100% - 32px, 1100px); margin: 0 auto; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 22px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: .96; margin: 0 0 20px;
  letter-spacing: .01em; font-weight: 700;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.15rem); color: var(--muted); max-width: 560px; margin: 0 0 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero aside stats */
.hero-aside {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 0;
}
.hero-aside-label {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 600;
}
.hero-stat-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 12px; display: grid; place-items: center;
  background: rgba(201,168,76,.12); color: var(--gold);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1;
  margin-bottom: 3px;
}
.hero-stat-lbl { font-size: .8rem; color: var(--muted); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--faint); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Page Hero (inner pages) ──────────── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 80px 0 60px;
  background:
    radial-gradient(circle at 30% 50%, rgba(201,168,76,.1), transparent 40%),
    linear-gradient(180deg, rgba(11,12,16,.4), transparent),
    var(--bg);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 700; line-height: 1.05;
  margin: 12px 0 16px;
}
.hero-tag {
  display: inline-block;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  padding: 6px 16px; border-radius: 999px;
}
.hero-strap {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--muted); max-width: 620px;
  margin: 0 auto 28px; line-height: 1.75;
}
.hero-line {
  width: 60px; height: 2px;
  background: var(--gold-grad);
  margin: 0 auto 28px; border-radius: 2px;
}
.hero-card {
  display: inline-flex; align-items: flex-start; gap: 16px; text-align: left;
  padding: 18px 24px; border-radius: var(--r-sm);
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  max-width: 560px; font-size: .9rem; color: var(--muted);
}
.hero-card strong { display: block; color: var(--text); margin-bottom: 4px; font-size: 1rem; }

/* ── Stats ────────────────────────────── */
#stats { padding: 28px 0 92px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.stat-cell {
  padding: 28px; border-radius: var(--r);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1; color: var(--gold); font-weight: 700;
  margin-bottom: 8px;
}
.stat-lbl { display: block; color: var(--muted); font-size: .92rem; letter-spacing: .05em; }

/* ── Why us cards ─────────────────────── */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.choose-card {
  padding: 28px; border-radius: var(--r);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.choose-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.choose-icon {
  width: 54px; height: 54px; border-radius: 18px;
  display: grid; place-items: center;
  margin: 0 auto 14px;
  background: rgba(201,168,76,.12); color: var(--gold);
}
.choose-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
}
.section-cta { text-align: center; margin-top: 34px; }

/* ── Process (index) ──────────────────── */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-step {
  padding: 26px; border-radius: var(--r);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.step-marker {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-grad); color: #090805;
  font-weight: 700; margin-bottom: 16px;
}
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; margin: 0 0 8px; }
.step-desc { margin: 0; color: var(--muted); }

/* ── Process Timeline (proses.html) ───── */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 52px; left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,168,76,.2) 100%);
  z-index: 0;
}
.proc-step {
  padding: 24px 20px 28px;
  border-radius: var(--r);
  text-align: center;
  position: relative; z-index: 1;
  transition: background .25s;
}
.proc-step:hover { background: rgba(201,168,76,.05); }
.proc-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  background: var(--surface);
  border: 2px solid var(--border-md);
  box-shadow: 0 0 0 4px rgba(201,168,76,.08);
  transition: border-color .25s;
}
.proc-step:hover .proc-icon { border-color: var(--gold); }
.proc-label { display: flex; flex-direction: column; align-items: center; margin-bottom: 12px; }
.proc-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: .8rem; font-weight: 700;
  color: var(--gold); letter-spacing: .1em;
  margin-bottom: 4px;
}
.proc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; margin: 0;
}
.proc-desc { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* ── Services grid (layanan.html) ─────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.svc-card {
  padding: 28px; border-radius: var(--r);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--border-md); }
.svc-card .svc-body { flex: 1; }
.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  margin: 0 0 10px; color: var(--text);
}
.svc-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; }
.svc-card .svc-features { margin: 14px 0 20px; display: flex; flex-direction: column; gap: 7px; }
.svc-card .svc-feature {
  display: flex; align-items: center; gap: 9px;
  font-size: .84rem; color: var(--muted);
}
.svc-card .svc-feature::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.svc-card .svc-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; padding: 13px 20px;
  border-radius: var(--r-sm);
  background: rgba(37,211,102,.12);
  border: 1px solid rgba(37,211,102,.3);
  color: #25d366; font-size: .85rem; font-weight: 600;
  letter-spacing: .02em;
  transition: background .2s, transform .2s;
  text-decoration: none; margin-top: auto;
}
.svc-card .svc-cta:hover { background: rgba(37,211,102,.2); transform: translateY(-1px); }
.svc-card .svc-icon-wrap {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(201,168,76,.12); font-size: 1.5rem; margin-bottom: 18px;
}
.svc-tag {
  display: inline-flex; font-size: .67rem;
  color: var(--gold); background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 999px; padding: 3px 10px;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px;
}

/* ── About (tentang.html) ─────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.about-img-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.1;
  margin: 0 0 20px;
}
.about-body { font-size: .96rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }

/* ── Footer ───────────────────────────── */
footer {
  padding: 70px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(11,12,16,.4), rgba(10,10,12,.95));
}
.footer-inner, .footer-grid { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.footer-bottom {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px; align-items: start;
}
.footer-column, .footer-col, .footer-brand {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-column strong, .footer-col strong, .footer-brand strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--text); margin-bottom: 4px;
}
.footer-column a, .footer-col a { color: var(--muted); font-size: .92rem; line-height: 1.7; }
.footer-column span, .footer-col span { color: var(--muted); font-size: .92rem; line-height: 1.7; }
.footer-brand p { margin: 0; max-width: 340px; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.copyright, .footer-copy {
  display: block; margin-top: 28px;
  color: var(--faint); font-size: .82rem; text-align: center;
}

/* ── WhatsApp float ──────────────────── */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 450;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 16px 12px 12px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(10,9,6,.98), rgba(24,18,7,.98));
  border: 1px solid rgba(212,175,55,.36);
  color: var(--text);
  box-shadow: 0 18px 54px rgba(0,0,0,.35), 0 0 15px rgba(212,175,55,.22);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(212,175,55,.62);
  box-shadow: 0 22px 58px rgba(0,0,0,.42), 0 0 18px rgba(212,175,55,.3);
}
.whatsapp-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--gold-grad); color: #090805;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}
.whatsapp-icon svg { width: 22px; height: 22px; display: block; fill: currentColor; }
.whatsapp-text { font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 600; letter-spacing: .02em; }

/* ── Kontak page extras ──────────────── */
.kontak-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: .78rem;
  color: rgba(201,168,76,.75); letter-spacing: .14em;
  margin-bottom: 8px; text-transform: uppercase;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-md);
  background: rgba(255,255,255,.04);
  color: var(--text); font-size: .9rem;
  transition: border-color .2s, background .2s; outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,.06);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: #0F0E0A; }

.info-block { display: flex; flex-direction: column; gap: 24px; }
.info-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px; border-radius: var(--r);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  transition: border-color .25s, transform .25s;
}
.info-item:hover { border-color: var(--border-md); transform: translateX(4px); }
.info-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(201,168,76,.12); color: var(--gold);
  font-size: 1.2rem; flex-shrink: 0;
}
.info-label { font-size: .68rem; color: rgba(201,168,76,.65); letter-spacing: .18em; text-transform: uppercase; margin-bottom: 4px; }
.info-val { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.info-sub { font-size: .78rem; color: var(--faint); }
.jam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.jam-card { padding: 18px; border-radius: var(--r-sm); background: rgba(255,255,255,.025); border: 1px solid var(--border); text-align: center; }
.jam-day { font-size: .72rem; color: var(--gold); letter-spacing: .14em; margin-bottom: 4px; text-transform: uppercase; }
.jam-time { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; }
.map-wrap {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border);
  height: 260px; background: rgba(255,255,255,.03);
  display: grid; place-items: center; margin-top: 32px; position: relative;
}
.map-placeholder { text-align: center; color: var(--muted); }
.map-placeholder .map-icon { font-size: 2.5rem; margin-bottom: 12px; }
.map-placeholder p { font-size: .9rem; }
.guarantee-strip {
  background: rgba(201,168,76,.07); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px; text-align: center; margin-top: 64px;
}
.guar-item .guar-icon { font-size: 1.8rem; margin-bottom: 10px; }
.guar-item .guar-label { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.guar-item .guar-sub { font-size: .78rem; color: var(--muted); }

/* ── Layanan page extras ─────────────── */
.benefit-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-bottom: 64px; padding: 32px;
  border-radius: var(--r-lg);
  background: rgba(201,168,76,.05); border: 1px solid var(--border);
}
.benefit-item { text-align: center; }
.benefit-icon { font-size: 1.6rem; margin-bottom: 8px; }
.benefit-label { font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.benefit-sub { font-size: .78rem; color: var(--muted); }

/* ── Tentang page extras ─────────────── */
.nilai-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.nilai-card {
  padding: 30px; border-radius: var(--r); border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  transition: border-color .25s, transform .25s;
}
.nilai-card:hover { border-color: var(--border-md); transform: translateY(-4px); }
.nilai-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: rgba(201,168,76,.12); font-size: 1.5rem; margin-bottom: 18px; }
.nilai-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.nilai-desc { font-size: .88rem; color: var(--muted); line-height: 1.75; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.team-card {
  text-align: center; padding: 28px 20px;
  border-radius: var(--r); border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  transition: border-color .25s, transform .25s;
}
.team-card:hover { border-color: var(--border-md); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-grad); color: #0A0906;
  font-weight: 700; font-size: 1.1rem; margin: 0 auto 16px;
}
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: .78rem; color: var(--gold); margin-bottom: 8px; }
.team-exp { font-size: .78rem; color: var(--faint); }

.milestone-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.milestone-item {
  padding: 22px; border-radius: var(--r-sm);
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,.04);
  transition: background .25s;
}
.milestone-item:hover { background: rgba(201,168,76,.08); }
.milestone-year { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.milestone-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── Proses page extras ──────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 0; }
.why-card {
  padding: 28px; border-radius: var(--r);
  background: rgba(255,255,255,.025); border: 1px solid var(--border);
  text-align: center; transition: border-color .25s, transform .25s;
}
.why-card:hover { border-color: var(--border-md); transform: translateY(-4px); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.why-desc { font-size: .88rem; color: var(--muted); line-height: 1.75; }

.estimasi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.est-card {
  padding: 24px; border-radius: var(--r);
  background: rgba(255,255,255,.025); border: 1px solid var(--border);
  transition: border-color .25s, background .25s;
}
.est-card:hover { border-color: var(--border-str); background: rgba(201,168,76,.05); }
.est-service { font-size: .72rem; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.est-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.est-time { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); }
.est-time-badge { padding: 3px 10px; border-radius: 999px; background: rgba(201,168,76,.12); color: var(--gold); font-size: .75rem; font-weight: 600; }

.cta-strip {
  background: rgba(201,168,76,.07); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 48px 40px; text-align: center;
}
.cta-strip h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.cta-strip p { color: var(--muted); max-width: 440px; margin: 0 auto 32px; line-height: 1.8; }
.cta-strip .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ───────────────────────── */
@media (max-width: 1024px) {
  .stats-grid,
  .process-track,
  .process-timeline,
  .footer-bottom { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-timeline::before { display: none; }
  .choose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-height: 340px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { max-width: 400px; }
  .nav-links { gap: 18px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  #ham { display: inline-flex; }
  #mob-menu { display: flex; }
  .stats-grid,
  .choose-grid,
  .process-track,
  .process-timeline,
  .services-grid,
  .footer-bottom { grid-template-columns: 1fr; }
  .kontak-split { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 11px 13px; gap: 10px; }
  .whatsapp-icon { width: 38px; height: 38px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.7rem, 18vw, 4rem); }
  .hero-sub { font-size: 1rem; }
  .section-title { font-size: clamp(1.8rem, 10vw, 2.6rem); }
  .logo-name { font-size: .95rem; }
  .logo-sub { font-size: .66rem; }
  .cta-strip { padding: 32px 20px; }
  .guarantee-strip { padding: 24px; }
}
html {
  scroll-behavior: smooth !important;
}

/* Penyesuaian agar section tidak tertutup navbar (ubah angka 80px sesuai tinggi navbar Anda) */
section, footer {
  scroll-margin-top: 80px !important;
}