body { background: var(--white); }

nav { position: sticky; top: 0; z-index: 100; }

/* HERO */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #3f4248 0%, #686D76 55%, #7a7f88 100%);
  padding: 100px 5% 90px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; flex: 1; min-width: 280px; }
.hero-text { color: var(--white); }
.hero-badge { display: inline-block; background: rgba(220,95,0,.18); border: 1px solid rgba(220,95,0,.6); color: var(--accent); font-size: .78rem; font-weight: 600; padding: 5px 14px; border-radius: 50px; margin-bottom: 20px; }
.hero-text h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.hero-text h1 span { color: var(--accent); }
.hero-text p { font-size: 1rem; color: rgba(255,255,255,.78); max-width: 440px; line-height: 1.75; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative; z-index: 1;
  flex: 0 0 320px; display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
}
.hero-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 16px; padding: 18px 22px; color: var(--white); display: flex; align-items: center; gap: 14px; width: 280px; backdrop-filter: blur(6px); transition: background .2s, transform .2s; }
.hero-card:hover { background: rgba(255,255,255,.16); transform: translateX(-4px); }
.hero-card .icon { font-size: 2rem; }
.hero-card strong { display: block; font-size: .95rem; font-weight: 700; }
.hero-card small { font-size: .78rem; color: rgba(255,255,255,.65); }
.hero-stat { background: linear-gradient(135deg, var(--accent) 0%, #f07020 100%); color: var(--white); border-radius: 16px; padding: 18px 22px; text-align: center; width: 280px; box-shadow: 0 8px 24px rgba(220,95,0,.35); }
.hero-stat strong { font-size: 1.8rem; font-weight: 800; display: block; }
.hero-stat span { font-size: .82rem; font-weight: 600; }

/* SECTIONS */
section { padding: 70px 5%; }
.layanan { background: var(--light); }
.layanan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.layanan-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s; }
.layanan-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.layanan-photo { position: relative; height: 200px; overflow: hidden; cursor: pointer; background: var(--light); }
.layanan-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.layanan-card:hover .layanan-photo img { transform: scale(1.05); }
.photo-zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(0,0,0,.55); color: #fff; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; opacity: 0; transition: opacity .3s; }
.layanan-card:hover .photo-zoom { opacity: 1; }
.no-photo { cursor: default; display: flex; align-items: center; justify-content: center; }
.no-photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); }
.no-photo-icon { font-size: 2.5rem; }
.no-photo-placeholder span { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.layanan-card-body { padding: 20px 22px 24px; }
.layanan-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.layanan-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* Photo slider in layanan cards */
.layanan-photo-slider { position: relative; height: 200px; overflow: hidden; background: var(--light); }
.layanan-photo-slider .photo-slide { display: none; width: 100%; height: 100%; }
.layanan-photo-slider .photo-slide.active { display: block; }
.layanan-photo-slider img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.layanan-card:hover .layanan-photo-slider img { transform: scale(1.05); }
.layanan-photo-slider .photo-zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(0,0,0,.55); color: #fff; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; opacity: 0; transition: opacity .3s; cursor: pointer; z-index: 2; }
.layanan-card:hover .layanan-photo-slider .photo-zoom { opacity: 1; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: #fff; border: none; border-radius: 50%; width: 30px; height: 30px; font-size: 1.3rem; line-height: 1; cursor: pointer; z-index: 3; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s, background .2s; padding: 0; }
.layanan-card:hover .slider-btn { opacity: 1; }
.slider-btn:hover { background: rgba(0,0,0,.7); }
.slider-prev { left: 6px; }
.slider-next { right: 6px; }
.slider-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 3; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; transition: background .2s; display: inline-block; }
.dot.active { background: #fff; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; pointer-events: none; transition: opacity .3s; }
.lightbox.show { opacity: 1; pointer-events: all; }
.lightbox-inner { position: relative; display: flex; flex-direction: column; align-items: center; max-width: 90vw; }
.lightbox-inner img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: -48px; right: 0; background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1; padding: 6px; }
.lightbox-caption { color: rgba(255,255,255,.8); font-size: .9rem; margin-top: 14px; text-align: center; }
.lightbox-counter { color: rgba(255,255,255,.5); font-size: .8rem; margin-top: 6px; text-align: center; letter-spacing: .5px; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; border-radius: 50%; width: 52px; height: 52px; font-size: 2rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 1; padding: 0; }
.lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media(max-width: 600px) {
  .lightbox-nav { width: 38px; height: 38px; font-size: 1.5rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

.how { background: var(--white); }
.steps { display: flex; gap: 0; flex-wrap: wrap; justify-content: center; }
.step { flex: 1; min-width: 160px; max-width: 200px; text-align: center; padding: 0 10px; position: relative; }
.step:not(:last-child)::after { content: '→'; position: absolute; right: -12px; top: 22px; font-size: 1.4rem; color: var(--accent); font-weight: 700; }
.step-num { width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: var(--white); font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; border: 3px solid var(--accent); transition: transform .2s; }
.step:hover .step-num { transform: scale(1.1); }
.step h4 { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.step p { font-size: .8rem; color: var(--muted); line-height: 1.5; }

.spek { background: var(--light); }
.spek-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.spek-card { background: var(--white); border-radius: var(--radius); padding: 28px; border-left: 4px solid var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,.05); transition: transform .2s; }
.spek-card:hover { transform: translateY(-3px); }
.spek-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.spek-card ul { list-style: none; }
.spek-card li { font-size: .85rem; color: var(--text); padding: 5px 0; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 8px; }
.spek-card li:last-child { border-bottom: none; }
.spek-card li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* Cetak Lainnya */
.cetak-lainnya-box { background: linear-gradient(135deg, var(--accent), #f07020); border-radius: var(--radius); padding: 28px 32px; margin-top: 28px; }
.cetak-lainnya-title { font-size: .9rem; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 18px; }
.cetak-lainnya-items { display: flex; gap: 14px; flex-wrap: wrap; }
.cetak-lainnya-item { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 10px; padding: 14px 22px; display: flex; flex-direction: column; gap: 4px; min-width: 130px; }
.cetak-lainnya-item span:first-child { font-weight: 700; font-size: .95rem; color: var(--white); }
.cetak-lainnya-price { font-size: .78rem; color: rgba(255,255,255,.8); }

/* Kontak trust signals */
.kontak-trust { margin-top: 8px; display: flex; flex-direction: column; gap: 8px; }
.trust-item { font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 500; }

/* TESTIMONI */
.testimoni { background: var(--white); }
.testimoni-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card { background: var(--light); border-radius: var(--radius); padding: 28px; position: relative; }
.testi-card::before { content: '"'; font-size: 4rem; color: var(--accent); font-family: Georgia, serif; line-height: 1; position: absolute; top: 12px; left: 22px; opacity: .4; }
.testi-text { font-size: .9rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; padding-top: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #848991); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testi-info strong { display: block; font-size: .9rem; font-weight: 700; color: var(--primary); }
.testi-info small { font-size: .78rem; color: var(--muted); }
.testi-stars { color: var(--accent); font-size: .9rem; margin-bottom: 4px; }

/* KONTAK */
.kontak { background: var(--primary); color: var(--white); }
.kontak .section-title { color: var(--white); }
.kontak .section-sub { color: rgba(255,255,255,.7); }
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.kontak-items { display: flex; flex-direction: column; gap: 20px; margin-top: 12px; }
.kontak-item { display: flex; align-items: flex-start; gap: 16px; }
.kontak-item-icon { width: 46px; height: 46px; background: rgba(220,95,0,.2); border: 1px solid var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; transition: background .2s; }
.kontak-item:hover .kontak-item-icon { background: rgba(220,95,0,.35); }
.kontak-item-info strong { display: block; font-size: .95rem; color: var(--white); margin-bottom: 3px; }
.kontak-item-info span { font-size: .85rem; color: rgba(255,255,255,.7); }
.map-embed { border-radius: 14px; overflow: hidden; height: 260px; border: 1px solid rgba(255,255,255,.2); }
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* CTA */
.cta-banner { background: linear-gradient(135deg, var(--accent) 0%, #f07020 100%); padding: 60px 5%; text-align: center; }
.cta-banner h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 28px; }

/* STICKY BAR */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 149;
  background: var(--primary);
  padding: 14px 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-text { color: var(--white); min-width: 0; }
.sticky-bar-text strong { display: block; font-size: .95rem; font-weight: 700; white-space: nowrap; }
.sticky-bar-text span { font-size: .78rem; color: rgba(255,255,255,.6); white-space: nowrap; }
.sticky-bar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sticky-bar-btn {
  background: var(--accent); color: var(--white);
  font-family: inherit; font-weight: 800; font-size: 1rem;
  padding: 13px 32px; border-radius: 10px; border: none;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  display: inline-block; transition: box-shadow .2s, transform .2s;
}
.sticky-bar-btn:hover { box-shadow: 0 6px 20px rgba(220,95,0,.5); transform: translateY(-1px); }
.sticky-bar-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: none;
  color: rgba(255,255,255,.6); font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s;
}
.sticky-bar-close:hover { background: rgba(255,255,255,.2); color: var(--white); }
body.bar-showing .wa-float { bottom: 82px; transition: bottom .4s cubic-bezier(.4,0,.2,1); }

@media(max-width: 768px) {
  .hero { padding: 72px 5% 64px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-visual { display: none; }
  .hero-content { min-width: 0; }
  .kontak-grid { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .sticky-bar-text span { display: none; }
  .sticky-bar-btn { font-size: .92rem; padding: 12px 22px; }
  .sticky-bar { padding: 12px 5%; }
}
