:root {
  --navy: #0b1f4a;
  --navy-soft: #122d64;
  --navy-deep: #081736;
  --white: #ffffff;
  --yellow: #ffc928;
  --text: #1d2939;
  --muted: #4f5d75;
  --bg: #f5f8ff;
  --card: #ffffff;
  --wa: #25d366;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(10, 31, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  background-image: radial-gradient(circle at 15% -10%, rgba(18, 45, 100, 0.08), transparent 30%);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-title {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  text-align: center;
  margin-bottom: 28px;
  color: var(--navy);
}

.section-lead {
  text-align: center;
  max-width: 740px;
  margin: -10px auto 26px;
  color: var(--muted);
}

.topbar {
  background: var(--navy-deep);
  color: #dce7ff;
  font-size: 0.9rem;
}

.topbar-wrap {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar-wrap p {
  margin: 0;
}

.topbar-wrap a {
  color: #fff5cf;
  text-decoration: none;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 31, 74, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.brand-logo {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  color: #e1e9ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--yellow);
}

.hero {
  background: radial-gradient(circle at top right, #173f85, var(--navy));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  filter: blur(2px);
  top: -150px;
  right: -120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: #1d1d1d;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 0 20px;
  color: #d8e3ff;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat-item {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.stat-item strong {
  display: block;
  font-size: 0.95rem;
}

.stat-item span {
  display: block;
  font-size: 0.82rem;
  color: #dbe6ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-wa {
  background: var(--wa);
  color: var(--white);
  animation: ctaPulse 2.6s ease-in-out infinite;
}

.btn-wa:hover {
  animation-play-state: paused;
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 35px rgba(5, 12, 30, 0.35);
}

.hero-card h2 {
  margin-top: 0;
}

.hero-card ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.review-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0 4px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #f3f7ff;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-card li {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 8px 0;
}

.cards,
.services {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid #e5ecff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px rgba(10, 31, 74, 0.15);
}

.card h3,
.service-item h3 {
  margin: 12px 0 8px;
  color: var(--navy);
}

.card p,
.service-item p {
  margin: 0;
  color: var(--muted);
}

.section-alt {
  background: #ecf2ff;
}

.media-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.media-card {
  margin: 0;
  background: var(--card);
  border: 1px solid #e5ecff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.media-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.video-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-card {
  background: var(--card);
  border: 1px solid #e5ecff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
}

.video-card video {
  width: 100%;
  border-radius: 12px;
  display: block;
  background: #000;
}

.video-card p {
  margin: 10px 2px 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.media-empty {
  margin: 14px 0 0;
  text-align: center;
  color: var(--muted);
}

.order-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  border: 1px solid #e2eafc;
}

.order-form label {
  font-weight: 600;
  color: var(--navy);
  margin-top: 2px;
}

.order-form input {
  border: 1px solid #ccd8f3;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.order-form label[for="nama"],
.order-form input#nama,
.order-form label[for="lokasi"],
.order-form input#lokasi,
.order-form label[for="tujuan"],
.order-form input#tujuan,
.order-form label[for="jenis"],
.order-form input#jenis,
.order-form button {
  grid-column: span 2;
}

.order-form input:focus {
  outline: 2px solid #9bb9ff;
  border-color: transparent;
}

.section-map {
  padding-top: 0;
}

.map-text {
  text-align: center;
  margin-top: -10px;
  color: var(--muted);
}

.map-link {
  text-align: center;
  margin: 8px 0 18px;
}

.map-link a {
  color: var(--navy-soft);
  font-weight: 600;
  text-decoration: none;
}

.map-link a:hover {
  text-decoration: underline;
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  height: 320px;
  display: block;
}

.site-footer {
  background: linear-gradient(180deg, var(--navy-soft), var(--navy));
  color: #dbe5ff;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  text-align: center;
  font-size: 0.95rem;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wa);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  z-index: 99;
  animation: floatPulse 2.8s ease-in-out infinite;
}

.wa-icon-floating {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .services,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .review-badges {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .topbar-wrap {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 8px 0;
  }

  .section {
    padding: 56px 0;
  }

  .nav-wrap {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cards,
  .services,
  .media-grid,
  .video-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .order-form {
    grid-template-columns: 1fr;
  }

  .order-form label[for="nama"],
  .order-form input#nama,
  .order-form label[for="lokasi"],
  .order-form input#lokasi,
  .order-form label[for="tujuan"],
  .order-form input#tujuan,
  .order-form label[for="jenis"],
  .order-form input#jenis,
  .order-form button {
    grid-column: span 1;
  }
}
