/* =====================================================
   LAYANAN (Service) Pages
   ===================================================== */

/* ---------- Hero ---------- */
.svc-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b2138 0%, #123152 50%, #1b4569 100%);
  color: #fff;
  padding: 100px 0 80px;
}

.svc-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.svc-shapes .shape {
  position: absolute;
  border-radius: 50%;
  animation: shapeFloat 9s ease-in-out infinite alternate;
}
.svc-shapes .s1 {
  width: 520px; height: 520px;
  top: -180px; right: -130px;
  background: radial-gradient(circle, rgba(224,163,38,.18) 0%, transparent 65%);
  animation-delay: 0s;
}
.svc-shapes .s2 {
  width: 380px; height: 380px;
  bottom: -120px; left: -80px;
  background: radial-gradient(circle, rgba(27,69,105,.55) 0%, transparent 65%);
  animation-delay: 3s; animation-duration: 11s;
}
.svc-shapes .s3 {
  width: 260px; height: 260px;
  top: 35%; left: 32%;
  background: radial-gradient(circle, rgba(224,163,38,.10) 0%, transparent 65%);
  animation-delay: 5s; animation-duration: 13s;
}
@keyframes shapeFloat {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(22px,-28px) scale(1.13); }
}

/* Grid */
.svc-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Text side */
.svc-breadcrumb-nav {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.svc-breadcrumb-nav a { color: rgba(255,255,255,.7); transition: color .2s; }
.svc-breadcrumb-nav a:hover { color: #e0a326; }

.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border-radius: 20px;
  background: rgba(224,163,38,.13);
  border: 1px solid rgba(224,163,38,.35);
  color: #e0a326;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.svc-hero h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 800;
  margin-bottom: 22px;
}

.svc-em { color: #e0a326; font-style: normal; }

.svc-lead {
  font-size: 17px;
  color: #b8cfe2;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

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

.btn-outline-white {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  transition: .18s;
  cursor: pointer;
}
.btn-outline-white:hover { border-color: #e0a326; color: #e0a326; }

/* Visual side */
.svc-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.svc-icon-wrap {
  position: relative;
  width: 280px; height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-orbit {
  position: absolute;
  width: 340px; height: 340px;
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}
.svc-orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: #e0a326;
  border-radius: 50%;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 14px #e0a326;
}

.svc-orbit-2 {
  position: absolute;
  width: 230px; height: 230px;
  border: 1px dashed rgba(255,255,255,.10);
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite reverse;
}
.svc-orbit-dot-2 {
  position: absolute;
  width: 7px; height: 7px;
  background: #3d6b93;
  border-radius: 50%;
  bottom: -3.5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px #3d6b93;
}

@keyframes orbitSpin { to { transform: rotate(360deg); } }

.svc-icon-box {
  width: 200px; height: 200px;
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconFloat 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
  overflow: visible;
}
@keyframes iconFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

.svc-icon-main {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 10px 32px rgba(224,163,38,.55));
}
/* SVG carries its own width/height="160"; no extra CSS needed */

/* ---------- Stats Bar ---------- */
.svc-stats-bar {
  background: var(--navy-900);
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.svc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-stat {
  text-align: center;
  padding: 8px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.svc-stat:last-child { border-right: 0; }

.svc-stat strong {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #e0a326;
  letter-spacing: -1px;
  line-height: 1.1;
}

.svc-stat p {
  color: #9fb4c9;
  font-size: 13.5px;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: .3px;
}

/* ---------- Features ---------- */
.svc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.svc-feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .28s, transform .28s, border-color .28s;
}

.svc-feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e0a326, #c68a12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s ease;
}

.svc-feature-card:hover {
  box-shadow: 0 16px 52px rgba(11,33,56,.14);
  transform: translateY(-6px);
  border-color: transparent;
}
.svc-feature-card:hover::before { transform: scaleX(1); }

.svc-feat-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--steel));
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: transform .3s ease;
  box-shadow: 0 4px 16px rgba(11,33,56,.18);
}
.svc-feat-icon svg { display: block; width: 28px; height: 28px; }
.svc-feature-card:hover .svc-feat-icon { transform: rotate(-8deg) scale(1.1); }

.svc-feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
  letter-spacing: -.2px;
}
.svc-feature-card p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.72;
}

/* ---------- Process (Redesigned) ---------- */
.svc-process {
  background: linear-gradient(135deg, var(--navy-900) 0%, #0d2844 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle bg pattern */
.svc-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 59h60M59 0v60' stroke='%23ffffff' stroke-opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Override sec-head colors for dark bg */
.svc-process .sec-head .kicker { color: #e0a326; }
.svc-process .sec-head h2      { color: #fff; }
.svc-process .sec-head p       { color: #9fb4c9; }

/* Track */
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
  z-index: 1;
}

/* Connecting dashed line */
.process-track::after {
  content: '';
  position: absolute;
  top: 38px; /* center of 76px circle */
  left: calc(10% + 10px);
  right: calc(10% + 10px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #e0a326 0px, #e0a326 10px,
    transparent 10px, transparent 20px
  );
  opacity: .45;
  z-index: 0;
  animation: dashScroll 3s linear infinite;
}
@keyframes dashScroll {
  from { background-position: 0 0; }
  to   { background-position: 40px 0; }
}

/* Step wrapper */
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 10px;
  cursor: default;
}

/* Number bubble */
.process-num {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #0b2138;
  color: #e0a326;
  font-size: 24px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 3px solid #e0a326;
  position: relative;
  z-index: 2;
  transition: background .3s, color .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 0 0 7px rgba(224,163,38,.08), 0 6px 24px rgba(11,33,56,.5);
}
.process-num::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,163,38,.20), transparent 65%);
  opacity: 0;
  transition: opacity .35s;
  z-index: -1;
}

.process-step:hover .process-num {
  background: #e0a326;
  color: #0b2138;
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 0 0 12px rgba(224,163,38,.14), 0 12px 36px rgba(224,163,38,.35);
}
.process-step:hover .process-num::before { opacity: 1; }

/* Content card */
.process-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 22px 14px 26px;
  position: relative;
  overflow: hidden;
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
}
.process-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -10px; right: 4px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.process-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e0a326, #c68a12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.process-step:hover .process-card {
  background: rgba(255,255,255,.09);
  border-color: rgba(224,163,38,.28);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(11,33,56,.4);
}
.process-step:hover .process-card::after { transform: scaleX(1); }

.process-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}
.process-card p {
  font-size: 13px;
  color: #8ea6bd;
  line-height: 1.7;
}

/* ---------- Why Us ---------- */
.svc-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.svc-why-head .kicker { display: block; margin-bottom: 8px; }
.svc-why-head h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -.5px;
  margin-bottom: 28px;
  line-height: 1.2;
}

.svc-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.svc-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.svc-why-check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0a326, #c68a12);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-900);
  margin-top: 1px;
}

.svc-why-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.svc-why-text p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.72;
}

/* Why visual panel */
.svc-why-visual {
  background: linear-gradient(140deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-radius: 22px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.svc-why-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,163,38,.18), transparent 68%);
}
.svc-why-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,69,105,.5), transparent 68%);
}

.svc-why-visual .big-stat {
  font-size: 76px;
  font-weight: 800;
  color: #e0a326;
  letter-spacing: -3px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.svc-why-visual .big-label {
  font-size: 14px;
  color: #b8cfe2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.svc-why-visual .why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.svc-why-visual .why-tag {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12.5px;
  color: #c8d6e5;
  transition: background .2s;
}
.svc-why-visual .why-tag:hover {
  background: rgba(224,163,38,.18);
  border-color: rgba(224,163,38,.3);
  color: #e0a326;
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .svc-hero { min-height: auto; padding: 80px 0 60px; }
  .svc-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
  .svc-hero h1 { font-size: 36px; }
  .svc-lead { margin-left: auto; margin-right: auto; }
  .svc-hero-btns { justify-content: center; }
  .svc-hero-visual { display: none; }
  .svc-breadcrumb-nav { justify-content: center; }
  .svc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 20px; }
  .svc-stat:nth-child(3), .svc-stat:last-child { border-bottom: 0; }
  .svc-features { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .process-track::after { display: none; }
  .svc-why-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .svc-hero h1 { font-size: 28px; }
  .svc-eyebrow { font-size: 10px; letter-spacing: 2px; }
  .svc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-features { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .process-num { width: 64px; height: 64px; font-size: 20px; }
  .process-card { padding: 16px 12px 20px; }
  .process-card h4 { font-size: 14px; }
  .process-card p { font-size: 12.5px; }
  .svc-why-visual .big-stat { font-size: 56px; }
}
