:root {
  --brand-blue: #0d21a1;
  --brand-blue-2: #2338b8;
  --bg-page: #ffffff;
  --bg-soft: #f4f7ff;
  --surface: #ffffff;
  --surface-blue: #0d21a1;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-on-blue: #f8faff;
  --border-soft: #d7e0ff;
  --focus: #1d4ed8;
  --shadow-soft: 0 14px 34px rgba(13, 33, 161, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --nav-height: 60px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 90% 8%, rgba(35, 56, 184, 0.08), transparent 30%),
    radial-gradient(circle at 12% 20%, rgba(13, 33, 161, 0.06), transparent 32%),
    var(--bg-page);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface-blue);
  color: var(--text-on-blue);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
}

.section {
  padding: 5.5rem 0;
  background: var(--bg-page);
}

#kenapa,
#portfolio,
#lokasi {
  background: var(--bg-soft);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brand-blue-2);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

p {
  margin-top: 0;
}

.site-header {
  position: fixed;
  top: 0.5rem;
  left: 0;
  right: 0;
  z-index: 120;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-pill {
  background: rgba(13, 33, 161, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 22px rgba(13, 33, 161, 0.2);
  border-radius: 999px;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: fit-content;
  max-width: calc(100vw - 1rem);
}

.nav-pill.is-scrolled {
  transform: scale(0.99);
  background: rgba(13, 33, 161, 0.97);
}

.nav-inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 98px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.35rem;
}

.nav-links a {
  color: rgba(248, 250, 255, 0.88);
  font-weight: 600;
  padding: 0.36rem 0.52rem;
  border-radius: 0.52rem;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text-on-blue);
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0.75rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-on-blue);
  border-radius: 999px;
}

.mobile-menu {
  width: min(92%, 420px);
  margin: 0.7rem auto 0;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(13, 33, 161, 0.12);
  display: grid;
  gap: 0.5rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 180ms ease, opacity 180ms ease, padding 180ms ease;
}

.mobile-menu a {
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.4;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu.is-open {
  max-height: 420px;
  opacity: 1;
  padding: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-sm {
  display: none;
  padding: 0.5rem 0.86rem;
  font-size: 0.84rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
  color: var(--text-on-blue);
  box-shadow: 0 12px 28px rgba(13, 33, 161, 0.28);
}

.btn-secondary,
.btn-outline {
  border-color: var(--border-soft);
  background: var(--surface);
  color: var(--brand-blue);
}

.nav-pill .btn-primary {
  background: var(--surface);
  color: var(--brand-blue);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(13, 33, 161, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-pill .btn-primary:hover,
.nav-pill .btn-primary:focus-visible {
  background: #eef2ff;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 6.25rem;
  background: var(--surface-blue);
  color: var(--text-on-blue);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

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

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(7, 15, 66, 0.82) 12%, rgba(13, 33, 161, 0.72) 48%, rgba(15, 23, 42, 0.72) 100%),
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.16), transparent 28%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1,
.hero h2,
.hero h3,
.hero p {
  color: var(--text-on-blue);
}

.hero .eyebrow {
  color: rgba(248, 250, 255, 0.86);
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-copy {
  max-width: 860px;
  display: grid;
  gap: 0.95rem;
}

.hero-feature {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 32px rgba(6, 12, 46, 0.32);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.hero-feature img {
  width: 100%;
  height: 100%;
  max-height: clamp(280px, 42vw, 500px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-copy h1 {
  margin-bottom: 0.35rem;
}

.lead {
  margin: 0;
  color: rgba(248, 250, 255, 0.9);
  max-width: 60ch;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.1rem 0 0.2rem;
}

.trust-chips span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  font-size: 0.86rem;
  color: var(--text-on-blue);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0.1rem 0 0;
}

.hero .btn-primary {
  background: var(--surface);
  color: var(--brand-blue);
  box-shadow: 0 14px 30px rgba(6, 12, 46, 0.34);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  background: #eef2ff;
}

.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--text-on-blue);
}

.card,
.stat-card,
.pricing-box {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(7, 12, 48, 0.34);
  backdrop-filter: blur(8px);
}

.hero-card h2 {
  font-size: 1rem;
  color: rgba(248, 250, 255, 0.86);
  margin-bottom: 0.35rem;
}

.hero-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-on-blue);
}

.hero-card ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: rgba(248, 250, 255, 0.9);
}

.hero-card .btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--text-on-blue);
  background: rgba(255, 255, 255, 0.1);
}

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

.section-head p {
  color: var(--text-muted);
  max-width: 66ch;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card,
.stat-card {
  padding: 1.35rem;
}

.icon {
  width: 34px;
  height: 34px;
  margin-bottom: 0.8rem;
}

.card p,
.card li {
  color: var(--text-muted);
}

.card ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.1rem;
}

.trust-grid .card {
  overflow: hidden;
  padding: 0 0 1rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 22px rgba(13, 33, 161, 0.08);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.trust-grid {
  align-items: stretch;
  gap: 1.1rem;
}

.trust-visual {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  border: 0;
}

.trust-grid .card h3,
.trust-grid .card p {
  padding-left: 1rem;
  padding-right: 1rem;
}

.trust-grid .card h3 {
  margin: 0.7rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  min-height: 2.8em;
}

.trust-grid .card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

#servis .section-head {
  margin-bottom: 0.75rem;
}

.service-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-media {
  position: relative;
  background: transparent;
  line-height: 0;
}

.service-visual {
  position: static;
  width: 100%;
  height: auto;
  object-fit: initial;
  object-position: center;
  display: block;
}

.service-accent {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 46%;
  height: 12px;
  background: #ff155f;
}

.service-content {
  padding: 1.25rem 1.18rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-content h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  line-height: 1.2;
}

.service-content p {
  margin: 0.8rem 0 1.1rem;
  font-size: 1.04rem;
  line-height: 1.62;
}

.service-content .text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.service-content .text-link::after {
  content: "→";
}

.section-note {
  margin-top: 1.1rem;
  color: var(--text-muted);
}

.text-link {
  font-weight: 700;
  color: var(--brand-blue);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--brand-blue-2);
  text-decoration: underline;
}

.pricing-box {
  padding: 1.35rem;
}

.quick-questions {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 600;
  color: var(--text-dark);
}

input,
select {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 0.75rem;
  padding: 0.7rem 0.82rem;
  background: var(--surface);
  color: var(--text-dark);
}

input::placeholder {
  color: var(--text-muted);
}

input:focus,
select:focus {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
}

.small-muted {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  gap: 0.8rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  aspect-ratio: 4 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.achievement-gallery {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.achievement-card {
  margin: 0;
  width: min(100%, 860px);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.achievement-card img {
  display: block;
  width: 100%;
  height: auto;
}

.stats-grid {
  display: grid;
  gap: 1rem;
}

.stat-value {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.stat-label {
  margin-top: 0.45rem;
  color: var(--text-muted);
}

.location-wrap {
  display: grid;
  gap: 1rem;
}

.coverage-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.cta-final {
  background: linear-gradient(180deg, rgba(13, 33, 161, 0.08), var(--bg-page) 62%);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.15rem 0 0.85rem;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn img {
  width: 22px;
  height: 22px;
}

.contact-lines p {
  margin: 0.2rem 0;
  color: var(--text-dark);
}

.site-footer {
  background: var(--surface-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1.6rem 0 2rem;
  color: var(--text-on-blue);
}

.footer-inner {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
}

.social-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-row img {
  width: 19px;
  height: 19px;
}

.credits {
  color: rgba(248, 250, 255, 0.78);
  font-size: 0.84rem;
}

.credits a {
  color: var(--text-on-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.credits a:hover,
.credits a:focus-visible {
  color: #ffffff;
}

.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 110;
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
  box-shadow: none;
  transition: transform 180ms ease;
}

.floating-wa:hover,
.floating-wa:focus-visible {
  transform: translateY(-2px);
}

.floating-wa img {
  width: 48px;
  height: 48px;
  display: block;
}

.back-to-top {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 110;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  color: var(--brand-blue);
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: 200ms ease;
  box-shadow: var(--shadow-soft);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-areas:
      "copy feature"
      "actions feature";
    align-items: center;
    gap: 1.4rem;
  }

  .hero-copy {
    grid-area: copy;
  }

  .hero-feature {
    grid-area: feature;
  }

  .hero-actions {
    grid-area: actions;
    margin-top: 0;
  }

  .trust-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-media {
    min-height: 0;
  }

  .quick-questions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 780px;
    margin-inline: auto;
  }

  .brand-logo {
    width: 112px;
  }

  .nav-inner {
    padding: 0 0.85rem;
  }

  .nav-links {
    display: inline-flex;
  }

  .btn-sm {
    display: inline-flex;
  }

  .nav-toggle,
  .mobile-menu {
    display: none;
  }

  .section {
    padding: 6.5rem 0;
  }

  .back-to-top {
    display: none;
  }
}

@media (max-width: 767px) {
  .brand-logo {
    width: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-video {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(130deg, rgba(13, 33, 161, 0.92), rgba(10, 24, 104, 0.86));
  }

  .reveal,
  .btn,
  .gallery-grid img,
  .nav-pill,
  .back-to-top {
    transition: none;
  }
}
