/* ==========================================================================
   Global Event Organizer Cirebon — stylesheet utama
   Tipografi: Poppins (ganti nilai --font-ui saja bila ingin font lain)
   Motif: Mega Mendung — layer awan bergradasi indigo
   ========================================================================== */

:root {
  /* Tipografi -------------------------------------------------------------- */
  --font-ui: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Warna: gradasi Mega Mendung (indigo berlapis) + aksen kuningan keraton */
  --ink: #0A1B33;
  --ink-2: #13294B;
  --indigo: #1B3B6F;
  --sky: #3E7CB1;
  --sky-2: #7EA8CC;
  --sky-3: #B9D0E4;
  --mist: #EDF2F8;
  --paper: #FFFFFF;
  --amber: #E8A33D;
  --amber-dark: #C4831F;

  --text: #16233A;
  --muted: #56688A;
  --line: rgba(10, 27, 51, 0.10);
  --line-strong: rgba(10, 27, 51, 0.18);

  /* Ruang ----------------------------------------------------------------- */
  --gutter: 20px;
  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(10, 27, 51, 0.06), 0 4px 12px rgba(10, 27, 51, 0.05);
  --shadow-md: 0 12px 32px rgba(10, 27, 51, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 27, 51, 0.16);
}

/* Reset -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Tipografi ---------------------------------------------------------------- */
h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }
p { margin: 0; }

.display {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); font-weight: 600; letter-spacing: -0.01em; }
.h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.005em; }

.lead { font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--muted); }
.muted { color: var(--muted); }
.small { font-size: 0.875rem; }
.tiny { font-size: 0.78rem; }

/* Eyebrow + garis Mega Mendung (motif tanda-tangan) ------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 12px;
  flex: 0 0 auto;
  background:
    linear-gradient(var(--ink) 0 2px, transparent 2px 4px) 0 0 / 100% 4px repeat-y;
  background-image: linear-gradient(to bottom,
    var(--indigo) 0, var(--indigo) 2px,
    transparent 2px, transparent 4px,
    var(--sky) 4px, var(--sky) 6px,
    transparent 6px, transparent 8px,
    var(--sky-2) 8px, var(--sky-2) 10px,
    transparent 10px, transparent 12px);
}
.eyebrow--light { color: var(--sky-3); }
.eyebrow--light::before {
  background-image: linear-gradient(to bottom,
    #fff 0, #fff 2px, transparent 2px 4px,
    var(--sky-3) 4px, var(--sky-3) 6px, transparent 6px 8px,
    var(--sky) 8px, var(--sky) 10px, transparent 10px 12px);
}

/* Layout ------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #DCE6F2; }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .muted, .section--ink .lead { color: #A9BDD6; }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Tombol ------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: #F2B355; }
.btn--dark { background: var(--indigo); color: #fff; }
.btn--dark:hover { background: var(--ink-2); }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--indigo); background: rgba(27, 59, 111, 0.05); }
.btn--ghost-light { border-color: rgba(255, 255, 255, 0.32); color: #fff; background: transparent; }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.10); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Header ------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand__mark { width: 34px; height: 34px; flex: 0 0 auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-weight: 700; font-size: 1.02rem; letter-spacing: -0.02em; color: var(--ink); }
.brand__sub { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.nav a:hover { background: var(--mist); color: var(--indigo); }
.nav a[aria-current="page"] { color: var(--indigo); font-weight: 600; }
.header-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 16px var(--gutter) 26px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .nav[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px 12px; font-size: 1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .btn { margin-top: 16px; }
}

/* Hero --------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #DCE6F2;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10, 27, 51, 0.96) 8%, rgba(10, 27, 51, 0.72) 52%, rgba(19, 41, 75, 0.55) 100%);
}
.hero__inner { position: relative; padding-block: clamp(72px, 11vw, 132px) clamp(96px, 12vw, 148px); }
.hero__content { max-width: 760px; }
.hero .display { color: #fff; }
.hero .display em {
  font-style: normal;
  color: var(--amber);
}
.hero__lead { margin-top: 22px; max-width: 580px; color: #B8CADF; font-size: clamp(1rem, 1.3vw, 1.14rem); }

/* Motif Mega Mendung di tepi bawah hero */
.mendung {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: clamp(42px, 5vw, 74px);
  display: block;
}

/* Statistik ---------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: var(--paper); padding: 26px 22px; }
.stat__num { font-size: clamp(1.6rem, 2.6vw, 2.15rem); font-weight: 700; letter-spacing: -0.03em; color: var(--indigo); }
.stat__label { margin-top: 4px; font-size: 0.84rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* Kartu -------------------------------------------------------------------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky-3); }
.card__media { position: relative; aspect-ratio: 16 / 10; background: var(--mist); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.card__link {
  margin-top: auto;
  padding-top: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--indigo);
  text-decoration: none;
}
.card__link:hover { text-decoration: underline; }

.tag {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--indigo);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Kartu layanan (tanpa gambar) */
.svc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.svc::before {
  content: "";
  position: absolute; top: 0; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--sky) 45%, var(--sky-3));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sky-3); }
.svc:hover::before { opacity: 1; }
.svc__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--mist);
  color: var(--indigo);
  margin-bottom: 16px;
}
.svc__icon svg { width: 22px; height: 22px; }
.svc h3 { margin-bottom: 8px; }
.svc p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }

/* Panel dua kolom ---------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--media-first .split__media { order: -1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--media-first .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.badge-float {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
}
.badge-float strong { display: block; font-size: 1.35rem; font-weight: 700; color: var(--indigo); letter-spacing: -0.02em; line-height: 1.2; }
.badge-float span { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }

.prose p + p { margin-top: 16px; }
.prose p { color: var(--muted); }
.prose strong { color: var(--text); font-weight: 600; }
.prose h3 { margin-top: 32px; margin-bottom: 10px; }
.prose ul { margin: 14px 0 0; padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 9px; color: var(--muted); }
.prose ul li::before {
  content: "";
  position: absolute; left: 4px; top: 11px;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--sky);
}

/* Alur kerja (urutan nyata → penomoran dibenarkan) ------------------------- */
.steps { counter-reset: step; display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--line-strong); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--sky);
  margin-bottom: 10px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.section--ink .step { border-top-color: rgba(255, 255, 255, 0.22); }
.section--ink .step p { color: #A9BDD6; }

/* Paket -------------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
@media (max-width: 920px) { .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.plan--featured {
  border-color: var(--indigo);
  box-shadow: var(--shadow-md);
  position: relative;
}
.plan--featured::before {
  content: "Paling banyak dipilih";
  position: absolute;
  top: -13px; left: 26px;
  background: var(--indigo);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.plan__name { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }
.plan__for { margin-top: 6px; font-size: 0.86rem; color: var(--muted); }
.plan__price { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.plan__price strong { display: block; font-size: 1.5rem; font-weight: 700; color: var(--indigo); letter-spacing: -0.02em; }
.plan__price span { font-size: 0.82rem; color: var(--muted); }
.plan ul { list-style: none; margin: 22px 0 26px; padding: 0; }
.plan ul li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.plan ul li::before {
  content: "";
  position: absolute; left: 2px; top: 8px;
  width: 13px; height: 8px;
  border-left: 2px solid var(--sky);
  border-bottom: 2px solid var(--sky);
  transform: rotate(-45deg);
}
.plan .btn { margin-top: auto; }

/* Tabel -------------------------------------------------------------------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { padding: 15px 18px; text-align: left; font-size: 0.91rem; border-bottom: 1px solid var(--line); }
th { background: var(--mist); font-weight: 600; color: var(--ink); font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; }
td { color: var(--muted); }
tbody tr:last-child td { border-bottom: none; }

/* Portfolio ---------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.filter {
  padding: 9px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter:hover { border-color: var(--indigo); color: var(--indigo); }
.filter[aria-pressed="true"] { background: var(--indigo); border-color: var(--indigo); color: #fff; font-weight: 600; }
.work { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink); }
.work img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.4s ease, opacity 0.3s ease; opacity: 0.9; }
.work:hover img { transform: scale(1.05); opacity: 0.65; }
.work__meta { position: absolute; inset: auto 0 0 0; padding: 22px; background: linear-gradient(transparent, rgba(10, 27, 51, 0.9)); }
.work__meta span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky-3); }
.work__meta h3 { color: #fff; font-size: 1.05rem; margin-top: 4px; }
.work[hidden] { display: none; }
.work--wide { grid-column: span 2; }
@media (max-width: 640px) { .work--wide { grid-column: span 1; } }

/* Area layanan ------------------------------------------------------------- */
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.area {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  background: var(--paper);
}
.area--primary { background: var(--indigo); border-color: var(--indigo); color: #fff; font-weight: 600; }

/* Logo klien --------------------------------------------------------------- */
.logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.logo-cell {
  background: var(--paper);
  aspect-ratio: 5 / 2;
  display: grid;
  place-items: center;
  padding: 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--sky-2);
  text-align: center;
}
@media (max-width: 700px) { .logos { grid-template-columns: repeat(2, 1fr); } }

/* Alasan memilih ----------------------------------------------------------- */
.reason { padding: 26px 0; border-top: 1px solid var(--line); }
.reason h3 { margin-bottom: 8px; }
.reason p { color: var(--muted); font-size: 0.93rem; line-height: 1.7; }

/* FAQ ---------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute; right: 8px; top: 30px;
  width: 11px; height: 11px;
  border-right: 2px solid var(--sky);
  border-bottom: 2px solid var(--sky);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--indigo); }
.faq__answer { padding: 0 44px 24px 0; color: var(--muted); font-size: 0.95rem; }
.faq__answer p + p { margin-top: 14px; }

/* CTA band ----------------------------------------------------------------- */
.cta-band { background: var(--indigo); color: #fff; border-radius: var(--radius); padding: clamp(34px, 5vw, 56px); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { margin: 14px auto 0; max-width: 560px; color: #C3D6EA; }
.cta-band .btn-row { justify-content: center; }

/* Form --------------------------------------------------------------------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(27, 59, 111, 0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.form-note { margin-top: 14px; font-size: 0.8rem; color: var(--muted); }

/* Blok kontak -------------------------------------------------------------- */
.contact-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: none; }
.contact-item__icon { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 10px; background: var(--mist); color: var(--indigo); }
.contact-item__icon svg { width: 19px; height: 19px; }
.contact-item h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.contact-item a, .contact-item p { color: var(--text); text-decoration: none; font-size: 0.98rem; font-weight: 500; }
.contact-item a:hover { color: var(--indigo); text-decoration: underline; }

/* Page hero (halaman dalam) ------------------------------------------------ */
.page-hero { background: var(--ink); color: #DCE6F2; padding-block: clamp(46px, 6vw, 78px) clamp(52px, 7vw, 88px); position: relative; overflow: hidden; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(126, 168, 204, 0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom right, #000, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom right, #000, transparent 70%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); letter-spacing: -0.03em; }
.page-hero p { margin-top: 16px; color: #A9BDD6; max-width: 620px; }

.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; color: #8FA8C4; margin-bottom: 18px; }
.crumbs a { text-decoration: none; color: #8FA8C4; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs span[aria-hidden] { opacity: 0.5; }

/* Footer ------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #93A9C4; padding-block: clamp(48px, 6vw, 72px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h5 { color: #fff; font-size: 0.8rem; letter-spacing: 0.13em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.site-footer p { font-size: 0.9rem; line-height: 1.75; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.9rem; text-decoration: none; color: #93A9C4; transition: color 0.15s ease; }
.footer-links a:hover { color: #fff; }
.footer-brand .brand__name { color: #fff; }
.footer-brand { margin-bottom: 18px; }
.footer-bottom {
  margin-top: 46px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
}
.social { display: flex; gap: 9px; margin-top: 18px; }
.social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  color: #93A9C4;
  transition: all 0.15s ease;
}
.social a:hover { background: rgba(255, 255, 255, 0.10); color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.social svg { width: 17px; height: 17px; }

/* Tombol WhatsApp mengapung ------------------------------------------------ */
.wa-float {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  background: #1FA855;
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(31, 168, 85, 0.36);
  transition: transform 0.16s ease;
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float svg { width: 21px; height: 21px; }
@media (max-width: 560px) {
  .wa-float { padding: 14px; }
  .wa-float span { display: none; }
}

/* Reveal saat scroll ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Utilitas ----------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.center { text-align: center; }
.narrow { max-width: 820px; margin-inline: auto; }
.sr-only {
  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: 50%; top: 0; transform: translate(-50%, -110%);
  z-index: 100; padding: 10px 18px; background: var(--amber); color: var(--ink);
  font-weight: 600; text-decoration: none; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: transform 0.15s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }
