/* =========================================================
   VASARUMA — SERVICE PAGE STYLES (service.css)
   File terpisah khusus halaman /service.
   Navbar, drawer, footer TETAP memakai css/style.css (tidak diubah).
   ========================================================= */

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  padding: 14px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-bar ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.breadcrumb-bar a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb-bar a:hover { color: var(--navy); }
.breadcrumb-bar li[aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
}
.breadcrumb-bar li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: rgba(0,61,102,0.3);
}

/* ===== PAGE HERO (Service) ===== */
.page-hero {
  padding: 40px 20px 32px;
  background: linear-gradient(160deg, var(--navy) 0%, #002944 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(244,180,88,0.18), transparent 55%);
  pointer-events: none;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(244,180,88,0.15);
  color: var(--gold);
  border: 1px solid rgba(244,180,88,0.35);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  position: relative;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 7vw, 40px);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 22px;
  position: relative;
}
.page-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

/* Reuse stats-strip look but lighter on service hero */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 26px;
  position: relative;
}
.stats-bar .stat-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
}
.stats-bar .stat-chip .num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  display: block;
}
.stats-bar .stat-chip .lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
  display: block;
}

/* ===== STICKY ANCHOR NAV ===== */
.snav-wrap {
  position: sticky;
  top: 64px;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  white-space: nowrap;
  padding: 12px 20px;
  scrollbar-width: none;
}
.snav-wrap::-webkit-scrollbar { display: none; }
.snav-btn {
  display: inline-block;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 6px 12px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}
.snav-btn:hover { color: var(--navy); }
/* .snav-btn.active rule already defined in style.css */

/* ===== SERVICE WRAPPER ===== */
.service-wrap {
  padding: 8px 0 4px;
  background: var(--cream);
}

/* ===== SERVICE BLOCK ===== */
.service-block {
  background: #fff;
  margin: 16px 20px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  scroll-margin-top: 130px;
}

.service-block-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-block-body { padding: 20px; }

/* Header row */
.service-block-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.service-block-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
.service-block-header h2 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 6px;
}

/* Price badge */
.price-badge {
  display: inline-block;
  background: var(--gold-light);
  color: #8a5a10;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

/* Description */
.service-block-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Feature list */
.service-feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-bottom: 16px;
}
.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}
.service-feature-list li i {
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 12px;
}

/* Gaya desain pills (untuk desain rumah/villa/interior) */
.service-style-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.service-style-pills span {
  background: var(--surface);
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* CTA row */
.service-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-cta-row .btn-wa-hero,
.service-cta-row .btn-outline-hero {
  padding: 11px 18px;
  font-size: 13px;
}
.service-cta-row .btn-wa-hero {
  background: var(--green);
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-weight: 700;
}
.service-cta-row .btn-outline-hero {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-weight: 700;
}
.service-cta-row .btn-outline-hero:hover { background: var(--navy); color: #fff; }

/* ===== QUOTE BLOCK (dalam service-block) ===== */
.service-quote {
  border-left: 3px solid var(--gold);
  background: var(--surface);
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  font-size: 13px;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ===== NOTE BOX (info tambahan kecil dalam service-block) ===== */
.service-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--gold-light);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12.5px;
  color: #7a520c;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-note i { flex-shrink: 0; margin-top: 2px; }

/* ===== GAYA DESAIN GRID (khusus blok Jasa Arsitek) ===== */
.style-grid-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 10px;
}
.style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.style-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.style-card .emoji { font-size: 22px; display: block; margin-bottom: 6px; }
.style-card h4 { font-size: 12.5px; color: var(--navy); margin-bottom: 3px; }
.style-card p { font-size: 10.5px; color: var(--muted); line-height: 1.4; }

/* ===== ALUR / LANGKAH KERJA (dalam service-block) ===== */
.service-steps-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin: 4px 0 12px;
}
.service-steps { margin-bottom: 18px; }
.service-step {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.service-step:last-child { margin-bottom: 0; }
.service-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-step-body h4 { font-size: 13px; color: var(--navy); margin-bottom: 3px; }
.service-step-body p { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* ===== HIGHLIGHT BOX (garansi ringkas) ===== */
.highlight-box {
  margin: 20px 20px 0;
  background: linear-gradient(135deg, var(--gold-light), #fff);
  border: 1px solid rgba(244,180,88,0.4);
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.highlight-box i { font-size: 26px; color: #b8790f; flex-shrink: 0; }
.highlight-box h3 { font-size: 14.5px; color: var(--navy); margin-bottom: 3px; }
.highlight-box p { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ===== RESPONSIVE (tablet+) ===== */
@media (min-width: 720px) {
  .service-wrap { padding: 8px 40px 4px; }
  .service-block { margin: 16px 0 20px; }
  .service-block-body { padding: 26px 28px; }
  .service-feature-list { grid-template-columns: 1fr 1fr; }
  .page-hero, .snav-wrap, .breadcrumb-bar { padding-left: 40px; padding-right: 40px; }
  .highlight-box { margin-left: 0; margin-right: 0; }
}
