/* ═══════════════════════════════════════════════
   DIAN SELARAS — GLOBAL STYLESHEET
   style.css · Di-import oleh semua halaman
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:     #0D1B2A;
  --teal:     #1A7F74;
  --teal-lt:  #24A99B;
  --cream:    #F7F4EF;
  --warm:     #FDFCFA;
  --sand:     #E8E0D4;
  --text:     #1C1C1C;
  --muted:    #757575;
  --muted-lt: #A8A8A8;
  --accent:   #C9A96E;
  --radius:   20px;
  --shadow:   0 12px 40px rgba(13,27,42,.1);
  --shadow-lg:0 24px 60px rgba(13,27,42,.16);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'DM Sans',sans-serif;
  background:var(--warm);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.6;
}
img { max-width:100%; display:block; }
a { color:inherit; }
button { cursor:pointer; font-family:inherit; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family:'DM Serif Display',serif; letter-spacing:-.02em; }

/* ── SKELETON LOADER ── */
.sk {
  background:linear-gradient(90deg,var(--sand) 25%,var(--cream) 50%,var(--sand) 75%);
  background-size:200% 100%;
  animation:shim 1.4s infinite;
  border-radius:8px;
}
@keyframes shim { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity:0;
  transform:translateY(24px);
  transition:opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  padding:18px 60px;
  display:flex; align-items:center; justify-content:space-between;
  background:rgba(253,252,250,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,.06);
  transition:padding .3s;
}
.nav.scrolled { padding:14px 60px; }
.nav-logo {
  font-family:'DM Serif Display',serif;
  font-size:1.22rem; color:var(--navy); text-decoration:none;
  display:flex; align-items:center; gap:6px;
}
.nav-logo span { color:var(--teal); }
.nav-links { display:flex; gap:28px; list-style:none; align-items:center; }
.nav-links a {
  text-decoration:none; font-size:.84rem; font-weight:500;
  color:var(--muted); transition:color .2s; white-space:nowrap;
}
.nav-links a:hover, .nav-links a.active { color:var(--teal); }
.nav-cta {
  background:var(--teal); color:#fff !important;
  padding:8px 18px; border-radius:100px;
  font-size:.84rem !important; transition:background .2s !important;
}
.nav-cta:hover { background:var(--teal-lt) !important; }

/* Mobile hamburger */
.nav-toggle {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; padding:4px;
}
.nav-toggle span {
  display:block; width:22px; height:2px;
  background:var(--navy); border-radius:2px;
  transition:all .3s;
}
.nav-mobile {
  display:none; position:fixed;
  top:57px; left:0; right:0;
  background:var(--warm); border-bottom:1px solid var(--sand);
  padding:24px 24px 28px; flex-direction:column; gap:4px;
  z-index:199;
}
.nav-mobile.open { display:flex; }
.nav-mobile a {
  text-decoration:none; font-size:.95rem; font-weight:500;
  color:var(--muted); padding:10px 0;
  border-bottom:1px solid var(--sand);
  transition:color .2s;
}
.nav-mobile a:last-child { border-bottom:none; }
.nav-mobile a:hover, .nav-mobile a.active { color:var(--teal); }
.nav-mobile .nm-cta {
  margin-top:8px; background:var(--teal); color:#fff !important;
  padding:12px; border-radius:100px; text-align:center; border:none;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background:var(--navy); color:#fff;
  padding:64px 60px 40px;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:52px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand { font-family:'DM Serif Display',serif; font-size:1.2rem; margin-bottom:14px; }
.footer-brand span { color:var(--teal-lt); }
.footer-desc { font-size:.83rem; color:rgba(255,255,255,.42); line-height:1.7; font-weight:300; }
.footer-col h5 {
  font-size:.7rem; font-weight:600; text-transform:uppercase;
  letter-spacing:.1em; color:rgba(255,255,255,.28); margin-bottom:16px;
  font-family:'DM Sans',sans-serif;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col a {
  font-size:.84rem; color:rgba(255,255,255,.55);
  text-decoration:none; font-weight:300; transition:color .2s;
}
.footer-col a:hover { color:var(--teal-lt); }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:28px;
}
.footer-copy { font-size:.78rem; color:rgba(255,255,255,.28); font-weight:300; }
.footer-wa {
  display:inline-flex; align-items:center; gap:7px;
  background:#25D366; color:#fff;
  padding:8px 16px; border-radius:100px;
  font-size:.8rem; font-weight:500; text-decoration:none;
  transition:background .2s;
}
.footer-wa:hover { background:#1dba57; }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 26px; border-radius:100px;
  font-size:.9rem; font-weight:500; text-decoration:none;
  transition:all .25s; border:none; font-family:inherit;
}
.btn-primary { background:var(--navy); color:#fff; }
.btn-primary:hover { background:var(--teal); transform:translateY(-1px); }
.btn-teal { background:var(--teal); color:#fff; }
.btn-teal:hover { background:var(--teal-lt); transform:translateY(-1px); box-shadow:0 8px 24px rgba(26,127,116,.28); }
.btn-outline { background:transparent; border:1.5px solid var(--sand); color:var(--navy); }
.btn-outline:hover { border-color:var(--teal); color:var(--teal); }
.btn-white { background:#fff; color:var(--navy); }
.btn-white:hover { background:var(--cream); }
.btn-ghost-white { background:transparent; border:1.5px solid rgba(255,255,255,.22); color:rgba(255,255,255,.8); }
.btn-ghost-white:hover { border-color:#fff; color:#fff; }
.btn::after { content:'→'; transition:transform .2s; }
.btn:hover::after { transform:translateX(3px); }
.btn.no-arrow::after { content:none; }

/* ═══════════════════════════════════════════════
   SECTION SHARED STYLES
═══════════════════════════════════════════════ */
.section { padding:88px 60px; }
.section-sm { padding:56px 60px; }
.section-label {
  font-size:.7rem; font-weight:600; text-transform:uppercase;
  letter-spacing:.12em; color:var(--teal); margin-bottom:12px;
  display:block;
}
.section-title {
  font-family:'DM Serif Display',serif;
  font-size:clamp(2rem,3vw,2.8rem);
  color:var(--navy); line-height:1.12;
  margin-bottom:16px;
}
.section-title em { color:var(--teal); font-style:italic; }
.section-sub {
  font-size:.98rem; color:var(--muted); font-weight:300;
  line-height:1.7; max-width:520px;
}

/* ═══════════════════════════════════════════════
   EYEBROW BADGE
═══════════════════════════════════════════════ */
.eyebrow {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(26,127,116,.1); color:var(--teal);
  padding:5px 14px; border-radius:100px;
  font-size:.7rem; font-weight:600; text-transform:uppercase; letter-spacing:.1em;
  margin-bottom:20px;
}
.eyebrow::before { content:''; width:6px; height:6px; background:var(--teal); border-radius:50%; }
.eyebrow-dark {
  background:rgba(26,127,116,.18); color:var(--teal-lt);
}

/* ═══════════════════════════════════════════════
   CARD BASE
═══════════════════════════════════════════════ */
.card {
  background:var(--warm); border:1px solid var(--sand);
  border-radius:var(--radius); overflow:hidden;
  transition:all .3s;
}
.card:hover {
  border-color:var(--teal);
  box-shadow:var(--shadow);
  transform:translateY(-4px);
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
═══════════════════════════════════════════════ */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:150;
  width:52px; height:52px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 16px rgba(37,211,102,.4);
  text-decoration:none; transition:all .25s;
}
.wa-float:hover { background:#1dba57; transform:scale(1.08); }
.wa-float svg { width:26px; height:26px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media(max-width:960px) {
  .nav { padding:14px 20px; }
  .nav.scrolled { padding:12px 20px; }
  .nav-links { display:none; }
  .nav-toggle { display:flex; }
  .section, .section-sm { padding:60px 20px; }
  .footer { padding:48px 20px 32px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
  .footer-bottom { flex-direction:column; gap:16px; text-align:center; }
}
@media(max-width:600px) {
  .footer-grid { grid-template-columns:1fr; }
}
