/* ============================================================
   HAMDALAFARM — Design System
   Approach: Sanctuary (Modern Islamic Premium)
   ============================================================ */

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

/* --- CSS Custom Properties --- */
:root {
  --emerald-deep:  #1a4a3a;
  --emerald-mid:   #2d6a50;
  --emerald-light: #3d8a68;
  --gold-warm:     #c9a84c;
  --gold-light:    #e8d5a3;
  --gold-muted:    rgba(201, 168, 76, 0.3);
  --cream:         #faf7f0;
  --off-white:     #f2ede4;
  --charcoal:      #1c1c1c;
  --muted:         #6b6b6b;
  --white:         #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  96px;

  --max-width:     1200px;
  --padding-x:     80px;
  --section-py:    96px;
  --border-radius: 16px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.15);

  --transition: 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Base --- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: clamp(16px, 2vw, 20px); }
p  { font-size: 16px; line-height: 1.7; color: var(--muted); }

section { padding: var(--section-py) 0; }

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold-warm);
  margin: var(--space-md) 0;
}
.divider--center { margin: var(--space-md) auto; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (max-width: 768px) {
  :root { --padding-x: 24px; --section-py: 64px; }
}

/* ============================================================
   COMPONENTS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-warm);
  color: var(--emerald-deep);
  border-color: var(--gold-warm);
}
.btn-primary:hover {
  background: #d4b356;
  border-color: #d4b356;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--gold-warm);
  border-color: var(--gold-warm);
}
.btn-secondary:hover {
  background: rgba(201,168,76,0.08);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--emerald-deep);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--emerald-mid);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-layanan {
  background: var(--off-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-layanan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-layanan__img { width: 100%; height: 220px; object-fit: cover; }
.card-layanan__body { padding: var(--space-md); }
.card-layanan__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--emerald-deep);
  margin-bottom: 8px;
}
.card-layanan__desc { font-size: 14px; color: var(--muted); margin-bottom: var(--space-sm); }
.card-layanan__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-warm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.card-layanan__link:hover { gap: 8px; }

.card-nilai {
  background: var(--emerald-deep);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--gold-warm);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.card-nilai__img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; }
.card-nilai__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
}
.card-nilai__desc { font-size: 14px; color: rgba(232,213,163,0.7); line-height: 1.6; }

.card-testimoni {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.card-testimoni__quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}
.card-testimoni__attr { font-size: 14px; font-weight: 600; color: var(--emerald-mid); }
.card-testimoni::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold-warm);
  opacity: 0.3;
  position: absolute;
  top: 16px; left: 24px;
  line-height: 1;
}

.process-step { display: flex; gap: var(--space-md); align-items: flex-start; }
.process-step__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 2px solid var(--gold-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-warm);
}
.process-step__icon svg { width: 20px; height: 20px; }
.process-step__content h4 { font-family: var(--font-display); font-size: 18px; color: var(--charcoal); margin-bottom: 4px; }
.process-step__content p { font-size: 14px; }

.section-header { text-align: center; margin-bottom: var(--space-lg); }
.section-header .badge { margin-bottom: var(--space-sm); }
.section-header h2 { margin-bottom: var(--space-xs); }
.section-header p { max-width: 560px; margin: 0 auto; }

.cta-section { background: var(--gold-warm); text-align: center; padding: var(--section-py) 0; }
.cta-section h2 { color: var(--emerald-deep); }
.cta-section p { color: rgba(26,74,58,0.75); margin: var(--space-sm) auto; max-width: 560px; }

.accordion-item { border-bottom: 1px solid var(--gold-muted); }
.accordion-btn {
  width: 100%;
  text-align: left;
  padding: var(--space-md) 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  background: none;
  border: none;
}
.accordion-btn svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-warm); transition: transform var(--transition); }
.accordion-btn[aria-expanded="true"] svg { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-panel p { padding-bottom: var(--space-md); font-size: 15px; }

.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; }

/* ============================================================
   LAYOUT — NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px var(--padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(255,250,240,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 14px var(--padding-x);
}
.navbar--dark:not(.scrolled) .navbar__logo { filter: brightness(0) invert(1); }
.navbar--dark:not(.scrolled) .navbar__link { color: var(--gold-light); }
.navbar--dark:not(.scrolled) .navbar__link:hover { color: var(--gold-warm); }
.navbar--dark:not(.scrolled) .hamburger span { background: var(--gold-light); }

.navbar__logo { height: 36px; width: auto; object-fit: contain; }
.navbar__logo-wide { height: 36px; }

.navbar__nav { display: flex; align-items: center; gap: var(--space-sm); }
.navbar__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition);
}
.navbar__link:hover { color: var(--emerald-mid); }
.navbar__link.active { color: var(--emerald-deep); }

.navbar__dropdown { position: relative; }
.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.navbar__dropdown:hover .navbar__dropdown-menu,
.navbar__dropdown:focus-within .navbar__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.navbar__dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.navbar__dropdown-item:hover { background: var(--cream); color: var(--emerald-mid); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--emerald-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold-light);
  font-weight: 600;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold-warm); }
.mobile-nav__close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--gold-light);
  font-size: 32px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================================================
   LAYOUT — FOOTER
   ============================================================ */
.footer { background: #0f2b22; color: var(--gold-light); padding: var(--space-xl) 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--gold-muted);
}
.footer__logo { height: 32px; margin-bottom: var(--space-sm); filter: brightness(0) invert(1) opacity(0.8); }
.footer__desc { font-size: 14px; color: rgba(232,213,163,0.6); line-height: 1.7; }
.footer__heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-warm);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.05em;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(232,213,163,0.6); transition: color var(--transition); }
.footer__links a:hover { color: var(--gold-warm); }
.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(232,213,163,0.6);
  margin-bottom: 12px;
}
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--gold-warm); }
.footer__bottom { padding: var(--space-md) 0; text-align: center; font-size: 13px; color: rgba(232,213,163,0.4); }

/* ============================================================
   LAYOUT — BERANDA
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--emerald-deep);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z M20 20 L40 0 L60 20 L40 40 Z M20 60 L40 40 L60 60 L40 80 Z' fill='none' stroke='%23c9a84c' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero__content { position: relative; z-index: 1; max-width: 700px; }
.hero__badge { margin-bottom: var(--space-md); }
.hero h1 { color: var(--white); margin-bottom: var(--space-md); font-style: italic; }
.hero h1 em { color: var(--gold-warm); font-style: normal; }
.hero__sub { color: var(--gold-light); font-size: 18px; margin-bottom: var(--space-lg); max-width: 540px; }
.hero__cta { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-xl); }
.hero__trust {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--gold-muted);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.hero__trust-item svg { width: 16px; height: 16px; color: var(--gold-warm); }

.layanan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

.section-nilai { background: var(--emerald-deep); position: relative; overflow: hidden; }
.section-nilai__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z M20 20 L40 0 L60 20 L40 40 Z M20 60 L40 40 L60 60 L40 80 Z' fill='none' stroke='%23c9a84c' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.3;
}
.section-nilai .container { position: relative; z-index: 1; }
.section-nilai .section-header h2 { color: var(--white); }
.section-nilai .section-header .badge { background: rgba(45,106,80,0.6); }
.nilai-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

.proses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.proses-grid__img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--border-radius); box-shadow: var(--shadow-lg); }
.proses-steps { display: flex; flex-direction: column; gap: var(--space-md); }
.proses-steps h2 { margin-bottom: 4px; }
.proses-steps .divider { margin-bottom: var(--space-md); }

.testimoni-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

.section-gallery { background: var(--emerald-mid); text-align: center; }
.section-gallery h2 { color: var(--white); }
.section-gallery p { color: var(--gold-light); margin: var(--space-sm) auto; max-width: 480px; }

/* ============================================================
   LAYOUT — INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--emerald-deep);
  padding: 140px var(--padding-x) 80px;
  position: relative;
  overflow: hidden;
}
.page-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z M20 20 L40 0 L60 20 L40 40 Z M20 60 L40 40 L60 60 L40 80 Z' fill='none' stroke='%23c9a84c' stroke-width='0.5' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.3;
}
.page-hero__content { position: relative; z-index: 1; max-width: 640px; }
.page-hero .badge { margin-bottom: var(--space-sm); }
.page-hero h1 { color: var(--white); font-style: italic; margin-bottom: var(--space-sm); }
.page-hero__sub { color: var(--gold-light); font-size: 18px; }

/* ============================================================
   LAYOUT — LAYANAN DETAIL
   ============================================================ */
.layanan-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; margin-bottom: var(--space-xl); }
.layanan-detail__img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--border-radius); box-shadow: var(--shadow-md); }
.layanan-checklist { margin: var(--space-md) 0; }
.layanan-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--charcoal);
}
.layanan-checklist li::before {
  content: '';
  width: 20px; height: 20px; min-width: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c9a84c'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
  margin-top: 2px;
}

.paket-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-md); margin-top: var(--space-lg); }
.paket-card {
  background: var(--off-white);
  border-radius: var(--border-radius);
  padding: var(--space-lg) var(--space-md);
  border: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  text-align: center;
}
.paket-card:hover { border-color: var(--gold-warm); box-shadow: var(--shadow-md); }
.paket-card--featured { border-color: var(--gold-warm); background: var(--emerald-deep); }
.paket-card--featured .paket-card__name,
.paket-card--featured .paket-card__price,
.paket-card--featured .paket-card__item { color: var(--gold-light); }
.paket-card--featured .paket-card__badge { background: var(--gold-warm); color: var(--emerald-deep); }
.paket-card__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--emerald-mid);
  color: var(--gold-light);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}
.paket-card__name { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--emerald-deep); margin-bottom: var(--space-xs); }
.paket-card__price { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--gold-warm); margin-bottom: var(--space-sm); }
.paket-card__items { text-align: left; margin-bottom: var(--space-md); }
.paket-card__item { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.paket-card__item::before { content: '✓'; color: var(--gold-warm); font-weight: 700; flex-shrink: 0; }

.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--gold-muted);
}
.timeline-item { position: relative; margin-bottom: var(--space-md); }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-warm);
  border: 3px solid var(--cream);
}
.timeline-item h4 { font-family: var(--font-display); font-size: 18px; color: var(--charcoal); margin-bottom: 4px; }
.timeline-item p { font-size: 14px; }

/* ============================================================
   LAYOUT — ARTIKEL
   ============================================================ */
.artikel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.card-artikel { background: var(--off-white); border-radius: var(--border-radius); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.card-artikel:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-artikel__img { width: 100%; height: 180px; object-fit: cover; }
.card-artikel__body { padding: var(--space-md); }
.card-artikel__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-warm); margin-bottom: 8px; }
.card-artikel__title { font-family: var(--font-display); font-size: 18px; color: var(--charcoal); margin-bottom: 8px; line-height: 1.3; }
.card-artikel__excerpt { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.card-artikel__meta { font-size: 12px; color: var(--muted); }

/* ============================================================
   LAYOUT — TENTANG & KONTAK
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; margin-bottom: var(--space-xl); }
.milestone-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.milestone-item { display: flex; gap: var(--space-md); align-items: flex-start; padding: var(--space-sm) 0; border-bottom: 1px solid var(--gold-muted); }
.milestone-item__year { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold-warm); min-width: 80px; }
.milestone-item__text h4 { font-size: 16px; color: var(--charcoal); margin-bottom: 4px; }
.milestone-item__text p { font-size: 14px; }

.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.form-group { margin-bottom: var(--space-md); }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--off-white);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold-warm); }
.form-textarea { resize: vertical; min-height: 140px; }
.maps-embed { border-radius: var(--border-radius); overflow: hidden; height: 300px; }
.maps-embed iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .layanan-grid, .nilai-grid, .proses-grid, .testimoni-grid,
  .layanan-detail__grid, .about-grid, .kontak-grid { grid-template-columns: 1fr; }
  .artikel-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar__nav, .navbar .btn { display: none; }
  .hamburger { display: flex; }
  .artikel-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .hero__trust { flex-direction: column; gap: var(--space-sm); }
  .paket-grid { grid-template-columns: 1fr; }
  .proses-grid__img { height: 280px; }
}
