:root {
  --gold: #C8A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --gold-pale: #FAF3E0;
  --emerald: #1A4A3A;
  --emerald-mid: #2D6B52;
  --emerald-light: #3D8B6A;
  --emerald-pale: #EAF5F0;
  --cream: #FAF7F0;
  --cream-dark: #F0EAD6;
  --dark: #0D1F18;
  --text: #2C2C2C;
  --text-muted: #6B6B6B;
  --white: #FFFFFF;
  --border: #E5E7EB;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Tajawal', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  height: 80px;
  display: flex; align-items:center; justify-content:space-between;
  padding: 0 5%;
  background: rgba(13,31,24,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  transition: all 0.3s;
}
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo img { height:36px; width:auto; object-fit:contain; }
.nav-links { display:flex; align-items:center; gap:32px; list-style:none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration:none;
  font-size:13px; font-weight:500; letter-spacing:0.5px;
  transition: color 0.3s; position:relative; padding-bottom:4px;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:1px; background:var(--gold); transition:width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-links a.active::after, .nav-links a:hover::after { width:100%; }
.nav-cta {
  background: linear-gradient(135deg,var(--gold),var(--gold-dark));
  color: var(--dark) !important; padding:9px 22px !important;
  border-radius:4px; font-weight:700 !important;
}
.nav-cta::after { display:none !important; }

/* ── HERO SECTION ── */
.hero {
  min-height: 420px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--emerald) 60%, var(--emerald-mid) 100%);
  position: relative; overflow:hidden;
  display:flex; align-items:center;
  padding: 120px 5% 60px;
}
.hero::before {
  content:'';
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z' fill='none' stroke='%23C8A96E' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.hero-inner { position:relative; z-index:2; max-width:1200px; margin:0 auto; width:100%; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(200,169,110,0.15); border:1px solid rgba(200,169,110,0.4);
  padding:5px 14px; border-radius:100px; margin-bottom:18px;
}
.hero-badge span { font-size:11px; color:var(--gold-light); letter-spacing:2px; text-transform:uppercase; }
.hero-title {
  font-family:'Cormorant Garamond', serif;
  font-size: clamp(38px,5vw,62px); font-weight:700;
  color:var(--white); line-height:1.1; margin-bottom:16px;
}
.hero-title em { color:var(--gold); font-style:italic; }
.hero-desc { font-size:15px; color:rgba(255,255,255,0.7); line-height:1.8; margin-bottom:28px; max-width:480px; }
.hero-stats { display:flex; gap:32px; }
.hero-stat-num {
  font-family:'Cormorant Garamond', serif;
  font-size:32px; font-weight:700; color:var(--gold); line-height:1;
}
.hero-stat-label { font-size:11px; color:rgba(255,255,255,0.5); margin-top:4px; letter-spacing:1px; text-transform:uppercase; }
.hero-benefits { display:flex; flex-direction:column; gap:14px; }
.benefit-item {
  display:flex; align-items:flex-start; gap:14px;
  background:rgba(255,255,255,0.06); border:1px solid rgba(200,169,110,0.15);
  border-radius:10px; padding:16px 18px;
  transition: all 0.3s;
}
.benefit-item:hover { background:rgba(200,169,110,0.1); border-color:rgba(200,169,110,0.35); }
.benefit-icon {
  width:40px; height:40px; border-radius:8px;
  background:rgba(200,169,110,0.15); display:flex; align-items:center; justify-content:center;
  font-size:18px; flex-shrink:0;
}
.benefit-title { font-size:13px; font-weight:700; color:var(--white); margin-bottom:3px; }
.benefit-desc { font-size:12px; color:rgba(255,255,255,0.55); line-height:1.5; }

/* ── STEPS SECTION ── */
.steps-section { padding:70px 5%; background:var(--white); }
.steps-inner { max-width:1200px; margin:0 auto; }
.section-header { text-align:center; margin-bottom:52px; }
.section-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  color:var(--gold-dark); font-size:11px; letter-spacing:3px;
  text-transform:uppercase; font-weight:700; margin-bottom:12px;
}
.section-eyebrow::before,.section-eyebrow::after { content:''; width:24px; height:1px; background:var(--gold); }
.section-title {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(28px,3.5vw,44px); font-weight:600; color:var(--emerald); line-height:1.2;
}
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; position:relative; }
.steps-grid::before {
  content:''; position:absolute; top:28px; left:12.5%; right:12.5%;
  height:1px; background:linear-gradient(90deg,transparent,var(--gold),transparent);
  z-index:0;
}
.step-card { text-align:center; padding:24px 16px; position:relative; z-index:1; }
.step-num {
  width:56px; height:56px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  display:flex; align-items:center; justify-content:center;
  font-family:'Cinzel', serif; font-size:18px; font-weight:700; color:var(--dark);
  margin:0 auto 16px; box-shadow:0 4px 16px rgba(200,169,110,0.35);
}
.step-title { font-size:14px; font-weight:700; color:var(--emerald); margin-bottom:8px; }
.step-desc { font-size:12px; color:var(--text-muted); line-height:1.6; }

/* ── FORM SECTION ── */
.form-section { padding:80px 5%; background:var(--cream); }
.form-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1.6fr; gap:60px; align-items:start; }

/* Left info panel */
.form-info { position:sticky; top:100px; }
.form-info-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--emerald-pale); border:1px solid rgba(61,139,106,0.3);
  padding:5px 14px; border-radius:100px; margin-bottom:20px;
}
.form-info-badge span { font-size:11px; color:var(--emerald); letter-spacing:2px; text-transform:uppercase; font-weight:700; }
.form-info-title {
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(26px,3vw,38px); font-weight:600; color:var(--emerald);
  line-height:1.2; margin-bottom:14px;
}
.form-info-desc { font-size:14px; color:var(--text-muted); line-height:1.8; margin-bottom:28px; }
.komisi-cards { display:flex; flex-direction:column; gap:10px; }
.komisi-card {
  display:flex; align-items:center; gap:14px;
  padding:14px 16px; border-radius:10px;
  border:1px solid var(--border); background:var(--white);
  transition:all 0.3s;
}
.komisi-card:hover { border-color:var(--gold); transform:translateX(4px); }
.komisi-icon { width:42px; height:42px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.komisi-title { font-size:13px; font-weight:700; color:var(--emerald); }
.komisi-pct { font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:700; color:var(--gold-dark); }
.komisi-desc { font-size:11px; color:var(--text-muted); margin-top:2px; }
.form-contact {
  margin-top:24px; padding:16px 18px;
  background:var(--emerald); border-radius:10px;
  display:flex; align-items:center; gap:14px;
}
.form-contact-text h4 { font-size:13px; font-weight:700; color:var(--white); margin-bottom:3px; }
.form-contact-text p { font-size:11px; color:rgba(255,255,255,0.6); }

/* Form card */
.form-card {
  background:var(--white); border-radius:20px;
  box-shadow:0 8px 48px rgba(26,74,58,0.1);
  border:1px solid rgba(200,169,110,0.15);
  overflow:hidden;
}
.form-card-header {
  background:linear-gradient(135deg,var(--emerald),var(--emerald-mid));
  padding:24px 32px; position:relative; overflow:hidden;
}
.form-card-header::after {
  content:'🤝'; position:absolute; right:-8px; bottom:-8px;
  font-size:70px; opacity:0.06;
}
.form-card-header h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:22px; font-weight:700; color:var(--white); margin-bottom:4px;
}
.form-card-header p { font-size:12px; color:rgba(255,255,255,0.6); }
.form-body { padding:32px; }

/* Progress steps */
.form-progress { display:flex; gap:0; margin-bottom:32px; }
.prog-step {
  flex:1; display:flex; align-items:center; gap:6px;
  padding:8px 10px; position:relative; cursor:pointer;
}
.prog-step:not(:last-child)::after {
  content:''; position:absolute; right:0; top:50%; width:1px; height:50%;
  transform:translateY(-50%); background:var(--border);
}
.prog-dot {
  width:26px; height:26px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:700; border:2px solid var(--border);
  background:var(--white); color:var(--text-muted); transition:all 0.3s;
}
.prog-step.active .prog-dot { border-color:var(--emerald); background:var(--emerald); color:var(--white); }
.prog-step.done .prog-dot { border-color:var(--gold); background:var(--gold-pale); color:var(--gold-dark); }
.prog-label { font-size:11px; font-weight:600; color:var(--text-muted); transition:color 0.3s; }
.prog-step.active .prog-label { color:var(--emerald); }
.prog-step.done .prog-label { color:var(--gold-dark); }

/* Form fields */
.form-step { display:none; }
.form-step.active { display:block; animation:fadeIn 0.3s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.form-group { margin-bottom:18px; }
.form-label {
  display:block; font-size:12px; font-weight:700;
  color:var(--emerald); margin-bottom:6px; letter-spacing:0.3px;
}
.form-label .req { color:#EF4444; margin-left:2px; }
.form-control {
  width:100%; padding:11px 14px;
  border:1.5px solid var(--border); border-radius:8px;
  font-size:13px; font-family:'Tajawal',sans-serif;
  color:var(--text); background:var(--white);
  transition:all 0.25s; outline:none;
  appearance:none;
}
.form-control:focus {
  border-color:var(--emerald-light);
  box-shadow:0 0 0 3px rgba(61,139,106,0.1);
}
.form-control::placeholder { color:#B0B0B0; }
select.form-control {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 12px center; cursor:pointer;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.input-prefix { display:flex; }
.input-prefix-text {
  padding:11px 12px; background:var(--cream-dark);
  border:1.5px solid var(--border); border-right:none;
  border-radius:8px 0 0 8px; font-size:12px; color:var(--text-muted);
  font-weight:600; white-space:nowrap;
}
.input-prefix .form-control { border-radius:0 8px 8px 0; }
.form-hint { font-size:11px; color:var(--text-muted); margin-top:4px; }
.section-divider {
  display:flex; align-items:center; gap:10px; margin:22px 0 18px;
}
.section-divider span {
  font-size:11px; font-weight:700; color:var(--gold-dark);
  letter-spacing:1.5px; text-transform:uppercase; white-space:nowrap;
}
.section-divider::before,.section-divider::after {
  content:''; flex:1; height:1px; background:var(--cream-dark);
}

/* Referensi radio */
.ref-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.ref-option {
  display:flex; align-items:center; gap:8px;
  padding:10px 12px; border:1.5px solid var(--border);
  border-radius:8px; cursor:pointer; transition:all 0.2s;
}
.ref-option:hover { border-color:var(--emerald-light); background:var(--emerald-pale); }
.ref-option input { accent-color:var(--emerald); width:14px; height:14px; }
.ref-option span { font-size:12px; font-weight:500; }
.ref-option.selected { border-color:var(--emerald-light); background:var(--emerald-pale); }

/* Nav Buttons */
.form-nav { display:flex; gap:12px; margin-top:24px; }
.btn-prev {
  padding:12px 24px; border:1.5px solid var(--border);
  border-radius:8px; background:white; font-size:13px;
  font-weight:700; font-family:'Tajawal',sans-serif;
  color:var(--text-muted); cursor:pointer; transition:all 0.2s;
}
.btn-prev:hover { border-color:var(--emerald); color:var(--emerald); }
.btn-next {
  flex:1; padding:13px; border:none; border-radius:8px;
  background:linear-gradient(135deg,var(--emerald),var(--emerald-mid));
  color:white; font-size:14px; font-weight:700;
  font-family:'Tajawal',sans-serif; cursor:pointer; transition:all 0.3s;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.btn-next:hover { opacity:0.92; transform:translateY(-1px); box-shadow:0 6px 20px rgba(26,74,58,0.25); }
.btn-submit {
  flex:1; padding:13px; border:none; border-radius:8px;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:var(--dark); font-size:14px; font-weight:800;
  font-family:'Tajawal',sans-serif; cursor:pointer; transition:all 0.3s;
  display:flex; align-items:center; justify-content:center; gap:8px;
}
.btn-submit:hover { opacity:0.92; transform:translateY(-1px); box-shadow:0 6px 20px rgba(200,169,110,0.35); }

/* Success screen */
.success-screen {
  display:none; text-align:center; padding:48px 32px;
}
.success-icon { font-size:56px; margin-bottom:16px; animation:popIn 0.4s ease; }
@keyframes popIn { 0%{transform:scale(0.5)} 70%{transform:scale(1.1)} 100%{transform:scale(1)} }
.success-title {
  font-family:'Cormorant Garamond',serif;
  font-size:26px; font-weight:700; color:var(--emerald); margin-bottom:8px;
}
.success-sub { font-size:14px; color:var(--text-muted); line-height:1.7; margin-bottom:24px; }
.success-id {
  display:inline-block; background:var(--emerald-pale);
  border:1px solid rgba(61,139,106,0.25); border-radius:8px;
  padding:12px 24px; margin-bottom:24px;
}
.success-id-label { font-size:10px; color:var(--text-muted); margin-bottom:4px; text-transform:uppercase; letter-spacing:1px; }
.success-id-val {
  font-family:'Cinzel',serif; font-size:18px; font-weight:700; color:var(--emerald);
}
.success-actions { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }

/* ── FAQ SECTION ── */
.faq-section { padding:70px 5%; background:var(--white); }
.faq-inner { max-width:800px; margin:0 auto; }
.faq-item {
  border:1px solid var(--border); border-radius:10px;
  margin-bottom:10px; overflow:hidden; transition:all 0.3s;
}
.faq-item.open { border-color:rgba(200,169,110,0.4); }
.faq-q {
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 20px; cursor:pointer; font-size:14px; font-weight:600;
  color:var(--text); background:var(--white); transition:all 0.2s;
}
.faq-q:hover { background:var(--cream); color:var(--emerald); }
.faq-item.open .faq-q { color:var(--emerald); background:var(--emerald-pale); }
.faq-chevron { font-size:12px; transition:transform 0.3s; }
.faq-item.open .faq-chevron { transform:rotate(180deg); }
.faq-a {
  padding:0 20px; max-height:0; overflow:hidden;
  font-size:13px; color:var(--text-muted); line-height:1.8;
  transition:all 0.4s ease;
}
.faq-item.open .faq-a { padding:14px 20px; max-height:200px; }

/* ── FOOTER ── */
footer {
  background:var(--dark); color:rgba(255,255,255,0.65);
  padding:56px 5% 24px;
}
.footer-top {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:40px; border-bottom:1px solid rgba(200,169,110,0.12);
}
.footer-brand h3 { font-family:'Cinzel',serif; font-size:20px; color:var(--gold); margin-bottom:4px; }
.footer-brand .tagline { font-size:10px; color:var(--gold-light); letter-spacing:3px; text-transform:uppercase; margin-bottom:14px; }
.footer-brand p { font-size:12px; line-height:1.8; }
.footer-col h4 { font-family:'Cinzel',serif; font-size:11px; letter-spacing:2px; color:var(--gold); text-transform:uppercase; margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col ul a { color:rgba(255,255,255,0.55); text-decoration:none; font-size:12px; transition:color 0.3s; }
.footer-col ul a:hover { color:var(--gold); }
.footer-bottom {
  max-width:1200px; margin:24px auto 0;
  display:flex; justify-content:space-between; font-size:11px;
  color:rgba(255,255,255,0.35);
}

/* ── WA FLOAT ── */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:52px; height:52px; border-radius:50%;
  background:#25D366; color:white;
  display:flex; align-items:center; justify-content:center;
  font-size:24px; box-shadow:0 4px 20px rgba(37,211,102,0.4);
  text-decoration:none; cursor:pointer; transition:all 0.3s;
  animation:waPulse 2s infinite;
}
.wa-float:hover { transform:scale(1.1); }
@keyframes waPulse {
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)}
  50%{box-shadow:0 4px 36px rgba(37,211,102,0.65)}
}

/* ── REVEAL ── */
.reveal { opacity:0; transform:translateY(20px); transition:all 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr}
  .hero-benefits{display:none}
  .form-inner{grid-template-columns:1fr}
  .form-info{position:static}
  .steps-grid{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .nav-links{display:none}
  .steps-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .ref-grid{grid-template-columns:1fr}
  .form-nav{flex-direction:column}
}
