
/* ===== TOKENS ===== */
:root {
  --navy: #0B1F3A;
  --navy-deep: #071428;
  --gold: #C8A96A;
  --gold-light: #E8C97A;
  --cream: #F9F6F0;
  --off-white: #FAFAF8;
  --text: #1A1A2E;
  --muted: #6B7280;
  --white: #ffffff;
  --green: #22C55E;
  --surface: #F3F4F6;
  --border: rgba(11,31,58,0.08);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --r-sm: 12px;
  --r-md: 15px;
  --r-lg: 15px;
  --r-xl: 15px;

  --shadow-soft: 0 4px 24px rgba(11,31,58,0.08);
  --shadow-card: 0 8px 32px rgba(11,31,58,0.12);
  --shadow-float: 0 16px 48px rgba(11,31,58,0.18);
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; display:block; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  line-height: 1;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-wa {
  background: var(--green);
  color: white;
  padding: 9px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.nav-wa:hover { transform: scale(1.03); }

.menu-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 16px;
  transition: 0.2s;
}

.menu-btn:hover { background: var(--cream); }

/* DRAWER MENU */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}

.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100%;
  background: white;
  z-index: 1200;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  padding: 24px 20px;
  overflow-y: auto;
}

.drawer.open { right: 0; }

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--surface);
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  transition: 0.2s;
}

.drawer nav a i { color: var(--gold); width: 20px; }
.drawer nav a:hover { color: var(--navy); }

.drawer-cta {
  margin-top: 28px;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.2s;
}

.drawer-cta:hover { background: var(--gold); color: var(--navy); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: calc(100svh - 64px);
  min-height: 500px;
  overflow: hidden;
}

.hero-slides { height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7,20,40,0.92) 0%,
    rgba(7,20,40,0.5) 40%,
    rgba(7,20,40,0.1) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 40px;
  animation: heroUp 0.8s ease both;
}

@keyframes heroUp {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,169,106,0.2);
  border: 1px solid rgba(200,169,106,0.4);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 7vw, 52px);
  color: white;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 340px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-wa-hero {
  background: var(--green);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(34,197,94,0.4);
  transition: 0.2s;
}

.btn-wa-hero:hover { transform: scale(1.03); }

.btn-outline-hero {
  background: rgba(255,255,255,0.12);
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  transition: 0.2s;
}

.btn-outline-hero:hover { background: rgba(255,255,255,0.2); }

/* HERO DOTS */
.hero-dots {
  position: absolute;
  bottom: 16px;
  right: 24px;
  display: flex;
  gap: 6px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: 0.3s;
  cursor: pointer;
}

.hero-dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--gold);
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--navy);
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  padding: 20px 8px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===== SECTION HEADER ===== */
.section-head {
  padding: 0 20px;
  margin-bottom: 24px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 6vw, 36px);
  color: var(--navy);
  line-height: 1.2;
}

.section-title em { font-style: italic; }

.section-sub {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--cream);
  padding: 52px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 20px;
}

.service-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s;
}

.service-card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-card);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
  color: var(--gold);
  transition: 0.3s;
}

.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--gold);
}

.service-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.service-card h3 {
  text-decoration: none;
  color: inherit;
}
a.service-card:hover {
  text-decoration: none;
}
/* FIX: Footer service links - hapus underline & inherit color */
.footer-links a {
  text-decoration: none;
  color: inherit;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* ===== DESIGN SLIDER ===== */
.design-section {
  padding: 52px 0;
  background: var(--off-white);
  overflow: hidden;
}

.design-track-wrapper {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  padding: 8px 20px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.design-track-wrapper::-webkit-scrollbar { display: none; }


.design-slide {
  min-width: 78vw;
  max-width: 78vw;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
  scroll-snap-align: start;
}

.design-slide:first-child { margin-left: 0; }

.design-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.design-caption {
  background: var(--navy);
  padding: 18px;
}

.design-caption h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
  margin-bottom: 6px;
}

.design-caption p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.design-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;
}

.design-dots-wrap { display: flex; gap: 6px; }

.design-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}

.design-dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--navy);
}

.design-arrows { display: flex; gap: 8px; }

.design-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  cursor: pointer;
  font-size: 14px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  box-shadow: var(--shadow-soft);
}

.design-arrow:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ===== PORTFOLIO ===== */
.portfolio-section {
  padding: 52px 0;
  background: var(--cream);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 20px;
  margin-bottom: 24px;
}

.portfolio-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}

.portfolio-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.portfolio-item:hover img { transform: scale(1.06); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,40,0.7), transparent 50%);
  opacity: 0;
  transition: 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay span {
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 20px;
  padding: 16px;
  background: var(--navy);
  color: white;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
}

.btn-more:hover { background: var(--gold); color: var(--navy); }

/* ===== ABOUT ===== */
.about-section {
  padding: 52px 20px;
  background: white;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 28px;
}

.about-image-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 600;
}

.about-image-badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}

.about-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--navy);
  color: white;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
}

.btn-about:hover { background: var(--gold); color: var(--navy); }

/* ===== WHY US ===== */
.why-section {
  padding: 52px 20px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content:'';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(200,169,106,0.06);
}

.why-section .section-eyebrow { color: var(--gold); }
.why-section .section-title { color: white; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: 0.3s;
}

.why-card:hover { background: rgba(255,255,255,0.08); }

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(200,169,106,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--gold);
}

.why-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== TESTIMONI ===== */
.testi-section {
  padding: 52px 0;
  background: var(--cream);
}

.testi-slides {
  display: flex;
  gap: 14px;
  padding: 8px 20px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testi-slides::-webkit-scrollbar { display: none; }

.testi-item {
  min-width: 60vw;
  max-width: 70vw;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: block;
}

.testi-item.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.testi-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.testi-img {
  position: relative;
}

.testi-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.testi-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,40,0.8), transparent 50%);
}

.testi-body {
  padding: 20px;
}

.testi-stars {
  color: #FBBF24;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testi-author-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.testi-author-info span {
  font-size: 12px;
  color: var(--muted);
}

.testi-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: 0.3s;
}

.testi-dot.active { background: var(--navy); width: 24px; border-radius: 4px; }

/* ===== KALKULATOR ===== */
.calc-section {
  padding: 52px 20px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.calc-section::after {
  content:'';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(200,169,106,0.07);
}

.calc-section .section-eyebrow { color: var(--gold); }
.calc-section .section-title { color: white; }
.calc-section .section-sub { color: rgba(255,255,255,0.55); }

.calc-box {
  background: white;
  border-radius: var(--r-xl);
  padding: 28px 20px;
  margin-top: 28px;
  box-shadow: var(--shadow-float);
}

.calc-box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  margin-top: 16px;
}

.calc-box label:first-of-type { margin-top: 0; }

.calc-box input,
.calc-box select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition: 0.2s;
  outline: none;
}

.calc-box input:focus,
.calc-box select:focus {
  border-color: var(--navy);
  background: white;
}

.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-calc {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-calc:hover { background: var(--gold); color: var(--navy); }

.calc-result {
  display: none;
  margin-top: 20px;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  border: 1.5px solid var(--border);
}

.calc-result.show { display: block; }

.calc-result-label { font-size: 12px; color: var(--muted); margin-bottom: 6px; }

.calc-result-num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 4px;
}

.calc-result-luas { font-size: 13px; color: var(--muted); margin-bottom: 16px; }

.btn-wa-calc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 13px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 52px 20px;
  background: white;
}

.faq-list { margin-top: 28px; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: 0.2s;
}

.faq-item.open { border-color: var(--navy); }

.faq-q {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  gap: 12px;
  line-height: 1.4;
}

.faq-q i {
  flex-shrink: 0;
  color: var(--gold);
  transition: 0.3s;
  font-size: 12px;
}

.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding: 0 18px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== KONSULTASI FORM ===== */
.konsultasi-section {
  padding: 52px 20px;
  background: var(--cream);
}

.konsultasi-box {
  background: white;
  border-radius: var(--r-xl);
  padding: 28px 20px;
  box-shadow: var(--shadow-card);
}

.konsultasi-box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  margin-top: 16px;
}

.konsultasi-box label:first-of-type { margin-top: 0; }

.konsultasi-box input,
.konsultasi-box select,
.konsultasi-box textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition: 0.2s;
  outline: none;
  resize: vertical;
}

.konsultasi-box input:focus,
.konsultasi-box select:focus,
.konsultasi-box textarea:focus {
  border-color: var(--navy);
  background: white;
}

.btn-submit-wa {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.2s;
}

.btn-submit-wa:hover { background: #16a34a; }

/* ===== CTA BANNER ===== */
.cta-section {
  padding: 52px 20px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content:'';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,0.12) 0%, transparent 70%);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 7vw, 40px);
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
}

.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  position: relative;
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 32px rgba(34,197,94,0.35);
  transition: 0.2s;
  position: relative;
}

.btn-cta-wa:hover { transform: scale(1.04); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-deep);
  padding: 48px 20px 24px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: white;
  margin-bottom: 10px;
}

.footer-brand-name span { color: var(--gold); }

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 32px 0;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  transition: 0.2s;
}

.footer-links a:hover { color: white; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-item a:hover { color: white; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
}

.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer-map {
  margin-top: 20px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  margin-top: 32px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== FLOATING WA ===== */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  background: var(--green);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(34,197,94,0.45);
  transition: 0.3s;
  animation: pulse-wa 2.5s ease infinite;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(34,197,94,0.45); }
  50% { box-shadow: 0 8px 36px rgba(34,197,94,0.7); }
}

.float-wa:hover { transform: scale(1.1); }

/* ===== FOOTER COLS GRID ===== */
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 0;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== PROSES KERJA ===== */
.proses-section {
  padding: 52px 20px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.proses-section::before {
  content:'';
  position:absolute;
  top:-100px; right:-100px;
  width:300px; height:300px;
  border-radius:50%;
  background: rgba(200,169,106,0.06);
}
.proses-section .section-eyebrow { color: var(--gold); }
.proses-section .section-title { color: white; }

.proses-list { margin-top: 32px; position: relative; }
.proses-list::before {
  content:'';
  position:absolute;
  left: 23px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,169,106,0.1));
}
.proses-step {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
}
.proses-step:last-child { margin-bottom: 0; }
.proses-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(200,169,106,0.2);
}
.proses-body { padding-top: 6px; }
.proses-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.proses-body p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.proses-payment {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(200,169,106,0.18);
  color: var(--gold-light);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* ===== GARANSI BANNER ===== */
.garansi-section {
  background: linear-gradient(135deg, var(--gold) 0%, #b8944a 100%);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.garansi-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}
.garansi-text h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.garansi-text p { font-size: 13px; color: rgba(11,31,58,0.7); line-height: 1.5; }

/* ===== COUNTER SECTION ===== */
.counter-section {
  background: var(--cream);
  padding: 52px 20px;
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.counter-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
}
.counter-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.counter-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
}
.counter-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.counter-label { font-size: 12px; color: var(--muted); font-weight: 500; }

/* ===== PAKET HARGA ===== */
.pricing-section {
  padding: 52px 0 52px;
  background: var(--off-white);
}
.pricing-scroll {
  display: flex;
  gap: 14px;
  padding: 8px 20px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pricing-scroll::-webkit-scrollbar { display: none; }

.pricing-card {
  min-width: 280px;
  max-width: 300px;
  background: white;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.pricing-card.popular {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(200,169,106,0.2);
}

.pricing-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
}

.pricing-head {
  background: var(--navy);
  padding: 22px 20px 18px;
}
.pricing-card.popular .pricing-head {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6a 100%);
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  margin-bottom: 4px;
}
.pricing-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.pricing-price span { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 400; }
.pricing-old {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-body { padding: 18px 20px 22px; }

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--surface);
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}
.pricing-feature:last-of-type { border-bottom: none; }
.pricing-feature i {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 12px;
}
.pricing-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.btn-pricing-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--green);
  color: white;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s;
}
.btn-pricing-wa:hover { background: #16a34a; }
.pricing-revisi {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.pricing-revisi i { color: var(--green); }

/* PRICING TABS */
.pricing-tabs {
  display: flex;
  gap: 8px;
  padding: 0 20px;
  margin-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pricing-tabs::-webkit-scrollbar { display: none; }
.ptab {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s;
  font-family: var(--font-body);
}
.ptab.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* ===== AREA LAYANAN ===== */
.area-section {
  padding: 52px 20px;
  background: white;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}
.area-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  transition: 0.2s;
  cursor: default;
}
.area-chip:hover { background: var(--navy); color: white; }
.area-chip i { display: block; color: var(--gold); font-size: 16px; margin-bottom: 5px; }
.area-note {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 14px;
  background: var(--cream);
  border-radius: var(--r-md);
  border: 1px dashed var(--border);
}

/* ===== BLOG PREVIEW ===== */
.blog-section {
  padding: 52px 0;
  background: var(--cream);
}
.blog-scroll {
  display: flex;
  gap: 14px;
  padding: 8px 20px 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.blog-scroll::-webkit-scrollbar { display: none; }
.blog-card {
  min-width: 72vw;
  max-width: 72vw;
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  flex-shrink: 0;
  text-decoration: none;
  transition: 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.blog-card-img {
  width: 100%; height: 80px;
  object-fit: cover;
  background: var(--surface);
}
.blog-card-img-placeholder {
  width: 100%; height: 80px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--gold);
}
.blog-card-body { padding: 16px; }
.blog-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.blog-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card-meta i { color: var(--gold); font-size: 11px; }

/* ===== RESPONSIVE (tablet+) ===== */

/* ===== PAGE HERO ABOUT ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 50%, #1a1a1a 100%);
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,155,80,0.18) 0%, transparent 70%);
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,155,80,0.15);
  border: 1px solid rgba(196,155,80,0.35);
  color: #c49b50;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
}
.page-hero h1 em {
  font-style: italic;
  color: #c49b50;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  position: relative;
}
.page-hero-breadcrumb a {
  color: #c49b50;
  text-decoration: none;
}
.page-hero-breadcrumb i {
  font-size: 10px;
}

/* ===== ABOUT FULL SECTION ===== */
.about-full-section {
  padding: 64px 20px;
  background: #fff;
}
.about-full-inner {
  max-width: 860px;
  margin: 0 auto;
}
.about-full-section .section-eyebrow {
  margin-bottom: 12px;
}
.about-full-section .section-title {
  margin-bottom: 28px;
}
.about-full-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
}
.about-full-text p:last-child {
  margin-bottom: 0;
}
.about-highlight-box {
  background: linear-gradient(135deg, #fdf8f0, #fef3dc);
  border-left: 4px solid #c49b50;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.about-highlight-box p {
  font-size: 15px;
  font-style: italic;
  color: #5c4a1e;
  line-height: 1.8;
  margin: 0 !important;
}

/* ===== STATS ROW ===== */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 100%);
  border-radius: 16px;
  padding: 32px 24px;
}
.about-stat {
  text-align: center;
}
.about-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: #c49b50;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.about-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  display: block;
}

/* ===== VISI MISI ===== */
.visi-misi {
  padding: 64px 20px;
  background: #f7f5f2;
}
.visi-misi .section-head {
  padding: 0;
  margin-bottom: 36px;
  text-align: center;
}
.title-visi {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: #1a1a1a;
  margin-bottom: 8px;
  text-align: center;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.vm-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c49b50, #e8c878);
}
.vm-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdf3dc, #fbe8b4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #c49b50;
  margin-bottom: 16px;
}
.vm-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.vm-card p {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}
.vm-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vm-card ul li {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid #f0ebe3;
}
.vm-card ul li:last-child {
  border-bottom: none;
}
.vm-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c49b50;
}

/* ===== WHY SECTION (inherited from style.css, keep as is) ===== */

/* ===== AREA SECTION (inherited) ===== */

/* ===== FAQ (inherited) ===== */

/* ===== KONSULTASI (inherited) ===== */

/* Responsive */
@media (max-width: 600px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .about-stat {
    padding: 16px 8px;
  }
  .about-stat:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .about-stat:nth-child(1),
  .about-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .about-stat-divider { display: none; }
  .vm-grid {
    grid-template-columns: 1fr;
  }
}
  
/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 50%, #1a1a1a 100%);
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,155,80,0.18) 0%, transparent 70%);
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,155,80,0.15);
  border: 1px solid rgba(196,155,80,0.35);
  color: #c49b50;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 6vw, 3rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
}
.page-hero h1 em { font-style: italic; color: #c49b50; }
.page-hero p {
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  position: relative;
}
.page-hero-breadcrumb a { color: #c49b50; text-decoration: none; }
.page-hero-breadcrumb i { font-size: 10px; }

/* ===== FILTER BAR ===== */
.blog-filter-bar {
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid #f0ebe3;
  position: sticky;
  top: 60px;
  z-index: 90;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.blog-filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid #e8e0d4;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.filter-btn:hover { border-color: #c49b50; color: #c49b50; }
.filter-btn.active {
  background: #c49b50;
  border-color: #c49b50;
  color: #fff;
  font-weight: 600;
}

/* ===== BLOG SECTION WRAPPER ===== */
.blog-main {
  padding: 40px 20px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* ===== BLOG CARD ===== */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid #f0ebe3;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #f0ebe3;
}
.blog-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f7f3ec, #ede5d8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #c49b50;
  opacity: 0.6;
}
.blog-card-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c49b50;
  background: rgba(196,155,80,0.1);
  border: 1px solid rgba(196,155,80,0.2);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  width: fit-content;
}
.blog-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 14px;
  flex: 1;
}
.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #c49b50;
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s;
}
.blog-card:hover .blog-card-read { gap: 10px; }

/* ===== FEATURED (first card full width) ===== */
.blog-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.blog-card.featured .blog-card-img {
  width: 42%;
  flex-shrink: 0;
  aspect-ratio: auto;
  height: 100%;
  min-height: 200px;
}
.blog-card.featured .blog-card-img-placeholder {
  width: 42%;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 200px;
}
.blog-card.featured .blog-card-body { padding: 28px 28px; }
.blog-card.featured .blog-card-title {
  font-size: 1.4rem;
  margin-bottom: 18px;
}

/* ===== PAGINATION ===== */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 0;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid #e8e0d4;
  background: #fff;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.page-btn:hover:not(:disabled) {
  border-color: #c49b50;
  color: #c49b50;
}
.page-btn.active {
  background: #c49b50;
  border-color: #c49b50;
  color: #fff;
}
.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.page-btn.nav { width: 40px; }

/* ===== EMPTY STATE ===== */
.blog-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #999;
}
.blog-empty i { font-size: 3rem; margin-bottom: 16px; display: block; color: #ddd; }

/* ===== WHY SECTION ===== */
/* inherits from style.css via .why-section */

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { flex-direction: column; }
  .blog-card.featured .blog-card-img,
  .blog-card.featured .blog-card-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    min-height: unset;
    height: auto;
  }
  .blog-card.featured .blog-card-title { font-size: 1.15rem; }
  .page-btn { width: 36px; height: 36px; font-size: 13px; }
}
/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 50%, #1a1a1a 100%);
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,155,80,0.18) 0%, transparent 70%);
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,155,80,0.15);
  border: 1px solid rgba(196,155,80,0.35);
  color: #c49b50;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 6vw, 3rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
}
.page-hero h1 em { font-style: italic; color: #c49b50; }
.page-hero p {
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  position: relative;
}
.page-hero-breadcrumb a { color: #c49b50; text-decoration: none; }
.page-hero-breadcrumb i { font-size: 10px; }

/* ===== STATS BAR ===== */
.galeri-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #fff;
  border-bottom: 1px solid #f0ebe3;
}
.galeri-stat {
  flex: 1;
  max-width: 180px;
  text-align: center;
  padding: 18px 12px;
  border-right: 1px solid #f0ebe3;
}
.galeri-stat:last-child { border-right: none; }
.galeri-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: #c49b50;
  line-height: 1;
  margin-bottom: 4px;
}
.galeri-stat-label { font-size: 11px; color: #999; font-weight: 500; letter-spacing: 0.3px; }

/* ===== FILTER BAR ===== */
.galeri-filter-bar {
  background: #fff;
  padding: 16px 20px;
  border-bottom: 1px solid #f0ebe3;
  position: sticky;
  top: 60px;
  z-index: 90;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.galeri-filter-bar::-webkit-scrollbar { display: none; }
.gfilter-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid #e8e0d4;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.gfilter-btn i { font-size: 12px; }
.gfilter-btn:hover { border-color: #c49b50; color: #c49b50; }
.gfilter-btn.active {
  background: #c49b50;
  border-color: #c49b50;
  color: #fff;
  font-weight: 600;
}
.gfilter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,255,255,0.3);
  color: inherit;
}
.gfilter-btn:not(.active) .gfilter-count {
  background: #f0ebe3;
  color: #999;
}

/* ===== GALERI MAIN ===== */
.galeri-main {
  padding: 28px 16px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== MASONRY GRID ===== */
.galeri-grid {
  columns: 3;
  column-gap: 14px;
}
.galeri-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}
.galeri-item img {
  width: 100%;
  display: block;
  transition: transform .4s ease;
  background: #f0ebe3;
}
.galeri-item:hover img { transform: scale(1.05); }
.galeri-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border-radius: 12px;
}
.galeri-item:hover .galeri-item-overlay { opacity: 1; }
.galeri-item-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(196,155,80,0.85);
  padding: 3px 10px;
  border-radius: 50px;
}
.galeri-item-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #1a1a1a;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  transform: scale(0.8);
}
.galeri-item:hover .galeri-item-zoom { opacity: 1; transform: scale(1); }

/* Hidden items */
.galeri-item.hidden { display: none; }

/* ===== EMPTY STATE ===== */
.galeri-empty {
  text-align: center;
  padding: 80px 20px;
  color: #bbb;
}
.galeri-empty i { font-size: 3rem; margin-bottom: 16px; display: block; color: #ddd; }

/* ===== INFO ROW ===== */
.galeri-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.galeri-info-count { font-size: 13px; color: #888; }
.galeri-cta-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #25D366;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity .2s;
}
.galeri-cta-mini:hover { opacity: 0.88; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  animation: lbIn .2s ease;
}
@keyframes lbIn { from { opacity: 0 } to { opacity: 1 } }
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 90vw;
  max-height: 78vh;
  border-radius: 12px;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  transition: opacity .2s;
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10000;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lightbox-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c49b50;
  background: rgba(196,155,80,0.15);
  border: 1px solid rgba(196,155,80,0.3);
  padding: 4px 12px;
  border-radius: 50px;
}
.lightbox-counter { font-size: 13px; color: rgba(255,255,255,0.45); }
.lightbox-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #25D366;
  padding: 7px 16px;
  border-radius: 50px;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  .galeri-grid { columns: 2; column-gap: 10px; }
  .galeri-item { margin-bottom: 10px; }
  .galeri-stats { overflow-x: auto; }
  .lightbox-nav { display: none; }
}
@media (max-width: 420px) {
  .galeri-grid { columns: 2; }
}

/* ===== Harga ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 50%, #1a1a1a 100%);
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,155,80,0.18) 0%, transparent 70%);
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,155,80,0.15);
  border: 1px solid rgba(196,155,80,0.35);
  color: #c49b50;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 6vw, 3rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
}
.page-hero h1 em { font-style: italic; color: #c49b50; }
.page-hero p {
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.75;
  position: relative;
}
.nego-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.35);
  color: #25D366;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  position: relative;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  position: relative;
}
.page-hero-breadcrumb a { color: #c49b50; text-decoration: none; }
.page-hero-breadcrumb i { font-size: 10px; }

/* ===== STICKY NAV ===== */
.price-nav {
  background: #fff;
  border-bottom: 1px solid #f0ebe3;
  position: sticky;
  top: 60px;
  z-index: 90;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 12px;
}
.price-nav::-webkit-scrollbar { display: none; }
.pnav-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 14px;
  border: none;
  border-bottom: 2.5px solid transparent;
  background: transparent;
  color: #888;
  font-size: 12.5px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}
.pnav-btn i { font-size: 11px; }
.pnav-btn:hover,
.pnav-btn.active { color: #c49b50; border-bottom-color: #c49b50; font-weight: 600; }

/* ===== MAIN WRAPPER ===== */
.harga-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

/* ===== SECTION BLOCK ===== */
.harga-block {
  padding: 52px 0 0;
  scroll-margin-top: 112px;
}
.harga-block + .harga-block { border-top: 1px solid #f0ebe3; }

.hb-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.hb-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: linear-gradient(135deg, #fdf3dc, #fbe8b4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #c49b50;
}
.hb-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c49b50;
  margin-bottom: 3px;
}
.hb-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

/* ===== DESAIN PACKAGE CARDS ===== */
.pkg-scroll {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.pkg-card {
  background: #fff;
  border: 1.5px solid #f0ebe3;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.pkg-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.pkg-card.popular {
  border-color: #c49b50;
  box-shadow: 0 4px 20px rgba(196,155,80,0.2);
}
.pkg-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #c49b50, #e8c878);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.pkg-head {
  background: linear-gradient(135deg, #1a1a1a, #2d2416);
  padding: 22px 20px 18px;
}
.pkg-old {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.pkg-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.pkg-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: #c49b50;
  line-height: 1;
}
.pkg-price span { font-size: 1rem; color: rgba(196,155,80,0.7); }
.pkg-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.pkg-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: #444;
  padding: 5px 0;
  line-height: 1.45;
  border-bottom: 1px solid #f7f3ec;
}
.pkg-feature:last-of-type { border-bottom: none; }
.pkg-feature i { color: #c49b50; font-size: 10px; margin-top: 3px; flex-shrink: 0; }
.pkg-cta { margin-top: auto; padding-top: 16px; }
.btn-pkg-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  padding: 11px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity .2s;
  margin-bottom: 8px;
}
.btn-pkg-wa:hover { opacity: 0.88; }
.pkg-revisi {
  text-align: center;
  font-size: 11px;
  color: #aaa;
}

/* ===== KALKULATOR ===== */
.calc-wrap {
  background: #f7f5f2;
  border-radius: 16px;
  padding: 24px 20px;
  margin-bottom: 28px;
}
.calc-wrap h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.calc-wrap h3 i { color: #c49b50; }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.calc-wrap label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.calc-wrap input,
.calc-wrap select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e8e0d4;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #fff;
  box-sizing: border-box;
  margin-bottom: 12px;
}
.calc-wrap input:focus,
.calc-wrap select:focus { outline: none; border-color: #c49b50; }
.btn-calc {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #c49b50, #e8c878);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity .2s;
}
.btn-calc:hover { opacity: 0.9; }
.calc-result {
  margin-top: 16px;
  background: linear-gradient(135deg, #1a1a1a, #2d2416);
  border-radius: 12px;
  padding: 18px 20px;
  display: none;
}
.calc-result.show { display: block; }
.calc-result-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.calc-result-val {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: #c49b50;
  margin-bottom: 6px;
}
.calc-result-note { font-size: 11px; color: rgba(255,255,255,0.4); }
.calc-result-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  padding: 11px;
  border-radius: 10px;
  text-decoration: none;
}

/* ===== FLAT PRICE TABLE ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
.price-table th {
  background: linear-gradient(135deg, #1a1a1a, #2d2416);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}
.price-table th:last-child { text-align: right; }
.price-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #f0ebe3;
  color: #444;
  vertical-align: top;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #c49b50;
  white-space: nowrap;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: #faf8f4; }
.price-table-note {
  font-size: 11px;
  color: #bbb;
  display: block;
  margin-top: 2px;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}

/* ===== OUTSOURCING CARDS ===== */
.outsource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.outsource-card {
  background: #fff;
  border: 1.5px solid #f0ebe3;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: border-color .2s, transform .2s;
  position: relative;
  overflow: hidden;
}
.outsource-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c49b50, #e8c878);
}
.outsource-card:hover { border-color: #c49b50; transform: translateY(-3px); }
.outsource-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fdf3dc, #fbe8b4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #c49b50;
  margin: 0 auto 12px;
}
.outsource-role {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.outsource-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: #c49b50;
  line-height: 1;
  margin-bottom: 4px;
}
.outsource-period { font-size: 12px; color: #aaa; }
.outsource-desc { font-size: 12px; color: #888; margin-top: 8px; line-height: 1.5; }

/* ===== NEGO BANNER ===== */
.nego-banner {
  background: linear-gradient(135deg, #1a1a1a, #2d2416);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.nego-banner-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(196,155,80,0.15);
  border: 1px solid rgba(196,155,80,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #c49b50;
}
.nego-banner-text strong {
  display: block;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
.nego-banner-text span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ===== CTA BLOCK ===== */
.hb-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  background: #f7f5f2;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 0;
}
.hb-cta-text { flex: 1; min-width: 160px; }
.hb-cta-text strong { font-size: 14px; color: #1a1a1a; display: block; margin-bottom: 2px; }
.hb-cta-text span { font-size: 12px; color: #999; }
.hb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  padding: 11px 20px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity .2s;
}
.hb-cta-btn:hover { opacity: 0.88; }

/* ===== PROSES KERJA (compact) ===== */
.proses-compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.proses-step-c {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.proses-num-c {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c49b50, #e8c878);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proses-step-c strong { font-size: 13.5px; color: #1a1a1a; display: block; margin-bottom: 1px; }
.proses-step-c span { font-size: 12.5px; color: #777; line-height: 1.5; }
.proses-payment-c {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #c49b50;
  background: rgba(196,155,80,0.1);
  padding: 3px 9px;
  border-radius: 50px;
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .pkg-scroll { grid-template-columns: 1fr; }
  .outsource-grid { grid-template-columns: 1fr; }
  .calc-row { grid-template-columns: 1fr; }
  .nego-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 460px) {
  .pkg-scroll { grid-template-columns: 1fr; }
  
/* ---- Privacy Polish ---- */
.page-hero {
  background: linear-gradient(160deg, #1a1608 0%, #100e07 60%, #0d0b05 100%);
  padding: 120px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,76,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  color: #F0EAD6;
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p {
  font-size: 15px;
  color: #0B1F3A;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(240,234,214,0.4);
}
.page-hero-breadcrumb a {
  color: rgba(240,234,214,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb i { font-size: 9px; }

/* ---- READING PROGRESS ---- */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold, #C9A84C), #E2C878);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 42px; height: 42px;
  background: rgba(26,22,8,0.95);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #C9A84C);
  font-size: 13px;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  text-decoration: none;
}
.back-to-top.show { opacity: 1; transform: none; }
.back-to-top:hover { background: rgba(201,168,76,0.15); border-color: var(--gold, #C9A84C); }

/* ---- PP WRAPPER ---- */
.pp-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

/* ---- META INFO ---- */
.pp-meta-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.pp-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(110, 110, 110, 1);
}
.pp-meta-item i { color: var(--gold, #C9A84C); font-size: 11px; }

/* ---- TOC ---- */
.pp-toc {
  background: rgba(26,22,8,0.6);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 4px solid var(--gold, #C9A84C);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-bottom: 44px;
}
.pp-toc-title {
  font-family: 'DM Serif Display', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold, #C9A84C);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pp-toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 2px 20px;
}
.pp-toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: #0B1F3A;
  text-decoration: none;
  font-size: 13.5px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.pp-toc-item:hover { color: var(--gold, #C9A84C); border-bottom-color: rgba(201,168,76,0.2); }
.pp-toc-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--gold, #C9A84C);
  font-size: 12px;
  opacity: 0.7;
  min-width: 22px;
}

/* ---- INTRO BOX ---- */
.pp-intro {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 44px;
  font-size: 14.5px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 1.8;
}
.pp-intro strong { color: rgba(29, 36, 85, 1) }

/* ---- SECTION ---- */
.pp-section {
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.pp-section.visible { opacity: 1; transform: none; }

.pp-section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.14);
  margin-bottom: 20px;
}
.pp-section-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold, #C9A84C);
  opacity: 0.32;
  line-height: 1;
  min-width: 36px;
  user-select: none;
}
.pp-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #0B1F3A;
  line-height: 1.3;
  flex: 1;
}
.pp-section-title em { font-style: italic; color: var(--gold, #C9A84C); }
.pp-section-icon {
  width: 38px; height: 38px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold, #C9A84C);
  font-size: 14px;
  flex-shrink: 0;
}
.pp-section p {
  font-size: 14.5px;
  color: #0B1F3A;
  line-height: 1.85;
  margin-bottom: 14px;
}
.pp-section p strong { color:#0B1F3A; }

/* ---- INFO CARDS ---- */
.pp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.pp-card {
  background: rgba(26,22,8,0.7);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  padding: 16px 18px;
  transition: all 0.25s;
}
.pp-card:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-2px); background: rgba(36,30,10,0.8); }
.pp-card-icon {
  width: 34px; height: 34px;
  background: rgba(201,168,76,0.1);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold, #C9A84C);
  font-size: 13px;
  margin-bottom: 10px;
}
.pp-card-label { font-size: 10.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(240,234,214,0.33); margin-bottom: 4px; }
.pp-card-value { font-size: 13.5px; color: #fff; line-height: 1.4; }

/* ---- HIGHLIGHT BOX ---- */
.pp-highlight {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 4px solid var(--gold, #C9A84C);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 20px 0;
}
.pp-highlight-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold, #C9A84C);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 7px;
}
.pp-highlight p { margin: 0; font-size: 14px; color: #0B1F3A }
.pp-highlight p strong { color: #C9A84C }

/* ---- LIST ---- */
.pp-list {
  list-style: none;
  margin: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pp-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  color: #0B1F3A;
  line-height: 1.65;
}
.pp-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold, #C9A84C);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}
.pp-list.check li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 9px;
  background: none;
  color: var(--gold, #C9A84C);
  width: auto; height: auto;
  margin-top: 5px;
}
.pp-list li strong { color: #C9A84C }

/* ---- TABLE ---- */
.pp-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid #0B1F3A
  margin: 18px 0;
}
.pp-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.pp-table thead tr { background: rgba(26,22,8,0.9); }
.pp-table th {
  padding: 13px 16px;
  text-align: left;
  color: var(--gold, #C9A84C);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pp-table td {
  padding: 11px 16px;
  color: #0B1F3A;
  border-top: 1px solid rgba(201,168,76,0.07);
  vertical-align: top;
  line-height: 1.6;
}
.pp-table td strong { color: #C9A84C }
.pp-table tr:hover td { background: rgba(201,168,76,0.025); }

/* ---- RIGHTS GRID ---- */
.pp-rights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.pp-right {
  background: rgba(26,22,8,0.7);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  padding: 16px 18px;
  transition: all 0.25s;
}
.pp-right:hover { border-color: rgba(201,168,76,0.45); transform: translateY(-2px); }
.pp-right-icon { color: var(--gold, #C9A84C); font-size: 17px; margin-bottom: 9px; }
.pp-right-title { font-size: 13px; font-weight: 600; color: rgba(240,234,214,0.88); margin-bottom: 5px; }
.pp-right-desc { font-size: 12px; color: rgba(240,234,214,0.42); line-height: 1.5; }

/* ---- CONTACT CARD ---- */
.pp-contact-card {
  background: rgba(26,22,8,0.7);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.pp-contact-avatar {
  width: 58px; height: 58px;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold, #C9A84C);
  font-size: 22px;
  flex-shrink: 0;
}
.pp-contact-info { flex: 1; min-width: 180px; }
.pp-contact-name { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: #F0EAD6; margin-bottom: 3px; }
.pp-contact-role { font-size: 12.5px; color: rgba(240,234,214,0.38); margin-bottom: 12px; }
.pp-contact-links { display: flex; flex-direction: column; gap: 7px; }
.pp-contact-link {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13.5px;
  color: rgba(240,234,214,0.58);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.pp-contact-link:hover { color: var(--gold, #C9A84C); }
.pp-contact-link i { color: var(--gold, #C9A84C); width: 15px; margin-top: 2px; flex-shrink: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .pp-section-head { flex-wrap: wrap; }
  .pp-section-num { font-size: 1.3rem; }
  .pp-section-title { font-size: 1.15rem; }
  .pp-cards, .pp-rights { grid-template-columns: 1fr 1fr; }
  .pp-contact-card { flex-direction: column; padding: 20px; }
  .pp-toc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .pp-cards, .pp-rights { grid-template-columns: 1fr; }
}
/* ===== Service===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 50%, #1a1a1a 100%);
  padding: 100px 20px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,155,80,0.18) 0%, transparent 70%);
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,155,80,0.15);
  border: 1px solid rgba(196,155,80,0.35);
  color: #c49b50;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 6vw, 3.1rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
}
.page-hero h1 em { font-style: italic; color: #c49b50; }
.page-hero p {
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.75;
  position: relative;
}
.page-hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-hero-wa:hover { opacity: 0.88; }
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color .2s, color .2s;
}
.btn-hero-outline:hover { border-color: #c49b50; color: #c49b50; }
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  position: relative;
}
.page-hero-breadcrumb a { color: #c49b50; text-decoration: none; }
.page-hero-breadcrumb i { font-size: 10px; }

/* ===== STATS BAR ===== */
.service-stats {
  display: flex;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid #f0ebe3;
}
.service-stat {
  flex: 1;
  max-width: 180px;
  text-align: center;
  padding: 18px 10px;
  border-right: 1px solid #f0ebe3;
}
.service-stat:last-child { border-right: none; }
.service-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: #c49b50;
  line-height: 1;
  margin-bottom: 4px;
}
.service-stat-label { font-size: 11px; color: #999; font-weight: 500; }

/* ===== NAV ANCHOR ===== */
.service-nav {
  background: #fff;
  border-bottom: 1px solid #f0ebe3;
  position: sticky;
  top: 60px;
  z-index: 90;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 20px;
}
.service-nav::-webkit-scrollbar { display: none; }
.snav-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  border: none;
  border-bottom: 2.5px solid transparent;
  background: transparent;
  color: #888;
  font-size: 13px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}
.snav-btn i { font-size: 12px; }
.snav-btn:hover { color: #c49b50; }
.snav-btn.active { color: #c49b50; border-bottom-color: #c49b50; font-weight: 600; }

/* ===== SERVICE WRAPPER ===== */
.service-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ===== SERVICE BLOCK ===== */
.service-block {
  padding: 60px 0 0;
  scroll-margin-top: 110px;
}
.service-block + .service-block {
  border-top: 1px solid #f0ebe3;
  margin-top: 0;
}

/* Header row */
.sb-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.sb-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fdf3dc, #fbe8b4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #c49b50;
}
.sb-title-wrap {}
.sb-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c49b50;
  margin-bottom: 4px;
}
.sb-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

/* Description */
.sb-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
}

/* Feature list */
.sb-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.sb-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #faf8f4;
  border: 1px solid #f0ebe3;
  border-radius: 10px;
  padding: 12px 14px;
}
.sb-feature-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(196,155,80,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #c49b50;
  margin-top: 1px;
}
.sb-feature-text {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  font-weight: 500;
}

/* Gaya desain pills (for jasa arsitek) */
.gaya-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.gaya-card {
  background: #fff;
  border: 1.5px solid #f0ebe3;
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.gaya-card:hover { border-color: #c49b50; transform: translateY(-2px); }
.gaya-card-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: block;
}
.gaya-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.gaya-card-desc {
  font-size: 11px;
  color: #999;
  line-height: 1.5;
}

/* Proses steps */
.sb-proses {
  margin-bottom: 28px;
}
.sb-proses-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.sb-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sb-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sb-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c49b50, #e8c878);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sb-step-body {}
.sb-step-body strong { font-size: 14px; color: #1a1a1a; display: block; margin-bottom: 2px; }
.sb-step-body span { font-size: 13px; color: #777; line-height: 1.5; }

/* CTA row */
.sb-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 22px;
  background: linear-gradient(135deg, #1a1a1a, #2d2416);
  border-radius: 14px;
}
.sb-cta-text { flex: 1; min-width: 180px; }
.sb-cta-text strong { font-size: 15px; color: #fff; display: block; margin-bottom: 3px; }
.sb-cta-text span { font-size: 13px; color: rgba(255,255,255,0.55); }
.sb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  padding: 11px 20px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
  flex-shrink: 0;
}
.sb-cta-btn:hover { opacity: 0.88; }

/* Price badge */
.sb-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196,155,80,0.12);
  border: 1px solid rgba(196,155,80,0.3);
  color: #c49b50;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ===== HIGHLIGHT BOX ===== */
.sb-highlight {
  background: linear-gradient(135deg, #fdf8f0, #fef3dc);
  border-left: 4px solid #c49b50;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.sb-highlight p {
  font-size: 14px;
  font-style: italic;
  color: #5c4a1e;
  line-height: 1.75;
  margin: 0;
}
/* ---- Language Toggle ---- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: 20px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #C9A84C;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.lang-toggle:hover {
  background: rgba(201,168,76,0.3);
  border-color: #C9A84C;
}
.lang-toggle .lang-flag { font-size: 14px; }
.lang-toggle .lang-label { font-size: 11px; }

/* ---- Translate Loading Overlay ---- */
#translateOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
#translateOverlay.active { display: flex; }
.translate-loader {
  width: 48px; height: 48px;
  border: 4px solid rgba(201,168,76,0.3);
  border-top-color: #C9A84C;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.translate-loader-text {
  color: #fff;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- EN/ID Active indicator ---- */
.lang-badge {
  display: inline-block;
  background: #C9A84C;
  color: #1a1108;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  vertical-align: middle;
  margin-left: 2px;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .sb-features { grid-template-columns: 1fr; }
  .gaya-grid { grid-template-columns: repeat(2, 1fr); }
  .sb-header { flex-direction: row; }
  .service-stats { overflow-x: auto; }
  .service-stat { min-width: 90px; }
}
