:root {
  --navy: #071a33;
  --navy-2: #0d2a4c;
  --blue: #155e9f;
  --gold: #f5b544;
  --gold-2: #ffd37a;
  --green: #21b45b;
  --white: #ffffff;
  --soft: #f4f7fb;
  --soft-2: #edf2f8;
  --text: #1f2a37;
  --muted: #64748b;
  --border: #dde6f0;
  --shadow: 0 18px 45px rgba(7, 26, 51, 0.14);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 230, 240, 0.75);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(7, 26, 51, 0.12);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.brand-tagline {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-2);
}

.main-nav a,
.nav-link {
  position: relative;
  padding: 28px 0;
}

.main-nav a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 19px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.nav-link:hover::after,
.nav-link.active::after,
.nav-item.active .nav-link::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f28f28);
  color: #1f1600;
  box-shadow: 0 14px 28px rgba(245, 181, 68, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.btn-header {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(33, 180, 91, 0.22);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 99px;
  transition: 0.2s ease;
}

.hero-slider {
  position: relative;
  min-height: 720px;
  height: 100vh;
  overflow: hidden;
  background: var(--navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1800ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.86) 0%, rgba(7, 26, 51, 0.58) 44%, rgba(7, 26, 51, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 26, 51, 0.45) 0%, rgba(7, 26, 51, 0.05) 55%);
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 82px;
  color: var(--white);
  max-width: 760px;
  margin-left: max(20px, calc((100vw - 1180px) / 2));
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 181, 68, 0.15);
  color: #b77704;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.eyebrow {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1,
.hero-content h2 {
  margin: 22px 0 18px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.hero-content p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.24);
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

.slider-dots {
  position: absolute;
  z-index: 11;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dot.active {
  width: 30px;
  background: var(--gold);
}

.section {
  padding: 92px 0;
}

.features-strip {
  background: var(--soft);
  padding: 42px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.service-card,
.package-card,
.support-card,
.map-card,
.check-panel,
.image-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(7, 26, 51, 0.07);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--soft-2);
  font-size: 23px;
  margin-bottom: 15px;
}

.feature-card h3,
.service-card h3,
.package-card h3,
.support-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.2;
}

.feature-card p,
.service-card p,
.package-card p,
.support-card p,
.section-copy p,
.section-heading p {
  margin: 0;
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.section-copy h2,
.section-heading h2 {
  margin: 18px 0 16px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.centered .section-label {
  margin-left: auto;
  margin-right: auto;
}

.check-panel {
  padding: 26px;
  display: grid;
  gap: 14px;
}

.check-item {
  position: relative;
  padding: 16px 18px 16px 50px;
  border-radius: 16px;
  background: var(--soft);
  color: var(--navy-2);
  font-weight: 800;
}

.check-item::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.services-section,
.packages-section,
.map-section {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.service-card-main {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-card-main h3,
.service-card-main p,
.service-card-main li {
  color: var(--white);
}

.service-card-main p,
.service-card-main li {
  color: rgba(255, 255, 255, 0.84);
}

.service-badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(245, 181, 68, 0.18);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.service-card ul {
  margin: 20px 0 24px;
  padding-left: 20px;
}

.service-card li {
  margin: 8px 0;
}

.image-card {
  padding: 12px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 16px;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.mini-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.package-card {
  padding: 26px;
  min-height: 180px;
}

.package-card.highlight {
  border-color: rgba(245, 181, 68, 0.75);
  background: linear-gradient(180deg, #fff7e7, #ffffff);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}

.process-step span {
  display: inline-flex;
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 14px;
}

.process-step p {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.support-card {
  overflow: hidden;
}

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

.support-card div {
  padding: 28px;
}

.address-text {
  font-size: 17px;
}

.contact-box {
  margin-top: 24px;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  display: grid;
  gap: 4px;
}

.contact-box strong {
  color: var(--navy);
}

.contact-box a {
  color: var(--green);
  font-weight: 900;
}

.map-card {
  overflow: hidden;
  height: 440px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.final-cta {
  padding: 76px 0;
  background: var(--navy);
}

.final-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(21, 94, 159, 0.95), rgba(7, 26, 51, 0.9));
  border-radius: 30px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin: 14px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}

.section-label.light {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  background: #061427;
  color: rgba(255, 255, 255, 0.82);
  padding-top: 66px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 42px;
  padding-bottom: 46px;
}

.footer-brand img {
  width: 96px;
  background: var(--white);
  border-radius: 18px;
  padding: 8px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 15px;
  color: var(--white);
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  margin: 8px 0;
}

.site-footer a:hover {
  color: var(--gold-2);
}

.site-footer p {
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  text-align: center;
  font-size: 14px;
}

.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 18px 35px rgba(33, 180, 91, 0.35);
  animation: pulseWa 2s infinite;
}

.floating-wa svg {
  width: 37px;
  height: 37px;
  fill: var(--white);
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(33, 180, 91, 0.42); }
  70% { box-shadow: 0 0 0 16px rgba(33, 180, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(33, 180, 91, 0); }
}



/* Header dropdown: menu lebih ringkas dan profesional */
.nav-link {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.chevron {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  transition: transform 0.2s ease;
}

.nav-item:hover .chevron,
.nav-item.dropdown-open .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: -18px;
  width: 280px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.2s ease;
}

.nav-item:hover .dropdown-menu,
.nav-item.dropdown-open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px !important;
  border-radius: 12px;
  color: var(--navy-2);
  line-height: 1.25;
}

.dropdown-menu a:hover {
  background: var(--soft);
}

.dropdown-menu a::after {
  display: none;
}

/* Inner page */
.page-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 150px 0 110px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 26, 51, 0.88) 0%, rgba(7, 26, 51, 0.62) 50%, rgba(7, 26, 51, 0.22) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.page-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.03;
  letter-spacing: -1.8px;
}

.page-hero p {
  margin: 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.about-card,
.value-card,
.contact-info-card,
.quick-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(7, 26, 51, 0.07);
}

.about-card {
  padding: 34px;
}

.highlight-card {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
}

.highlight-card h3,
.highlight-card li {
  color: var(--white);
}

.clean-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.clean-list li {
  position: relative;
  padding-left: 28px;
  color: var(--navy-2);
  font-weight: 800;
}

.clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  padding: 30px;
}

.value-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.contact-info-card,
.quick-contact-card {
  padding: 34px;
}

.contact-info-card h2 {
  margin: 18px 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.contact-info-card p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.contact-item {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: var(--soft);
  border-radius: 16px;
}

.contact-item strong {
  color: var(--navy);
}

.contact-item a {
  color: var(--green);
  font-weight: 900;
}

.quick-contact-card h3 {
  margin: 0 0 18px;
  color: var(--navy);
}

.quick-contact-card a {
  display: block;
  padding: 16px 18px;
  margin-top: 12px;
  border-radius: 16px;
  background: var(--soft);
  color: var(--navy-2);
  font-weight: 900;
  transition: 0.2s ease;
}

.quick-contact-card a:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
    font-size: 13px;
  }

  .btn-header {
    display: none;
  }

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

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 72px;
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-tagline {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a,
.nav-link {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: var(--soft);
  }

  .main-nav a::after,
.nav-link::after {
    display: none;
  }

  .hero-slider {
    min-height: 640px;
    height: 84vh;
  }

  .hero-content {
    margin-left: 14px;
    padding-right: 24px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 26, 51, 0.88) 0%, rgba(7, 26, 51, 0.65) 100%);
  }

  .slider-arrow {
    display: none;
  }

  .feature-grid,
  .service-grid,
  .two-column,
  .support-grid,
  .footer-grid,
  .final-cta-box,
  .value-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reverse-mobile .image-card {
    order: 2;
  }

  .reverse-mobile .section-copy {
    order: 1;
  }

  .section {
    padding: 70px 0;
  }

  .final-cta-box {
    padding: 34px;
  }
}

@media (max-width: 560px) {
  .brand-name {
    font-size: 16px;
  }

  .hero-slider {
    min-height: 610px;
    height: 82vh;
  }

  .hero-content h1,
  .hero-content h2 {
    letter-spacing: -1px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .feature-grid,
  .package-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .support-card img {
    height: 190px;
  }

  .image-card img {
    min-height: 300px;
  }

  .map-card {
    height: 330px;
  }

  .floating-wa {
    width: 58px;
    height: 58px;
    right: 18px;
    bottom: 18px;
  }

  .floating-wa svg {
    width: 34px;
    height: 34px;
  }
}


/* =========================================================
   V3 Animasi Pembuka & Hover Interaktif
   ========================================================= */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 181, 68, 0.18), transparent 32%),
    linear-gradient(135deg, #061427 0%, #0d2a4c 52%, #155e9f 100%);
  color: var(--white);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.page-loader-inner {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 14px;
  transform: translateY(10px);
  animation: loaderRise 0.55s ease forwards;
}

.loader-mark {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: #b77704;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.26);
}

.loader-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.loader-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  margin-top: -8px;
}

.loader-line {
  width: 180px;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.loader-line::before {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #f28f28);
  animation: loaderLine 0.95s ease-in-out infinite;
}

body.preload-active {
  overflow: hidden;
}

@keyframes loaderRise {
  to { transform: translateY(0); }
}

@keyframes loaderLine {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(245%); }
}

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

@keyframes fadeDownSoft {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  animation: fadeDownSoft 0.75s ease both;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content h2,
.hero-content p,
.hero-actions {
  animation: fadeUpSoft 0.8s ease both;
}

.hero-content .eyebrow { animation-delay: 0.2s; }
.hero-content h1,
.hero-content h2 { animation-delay: 0.34s; }
.hero-content p { animation-delay: 0.48s; }
.hero-actions { animation-delay: 0.62s; }

.feature-card,
.service-card,
.package-card,
.process-step,
.support-card,
.map-card,
.check-panel,
.image-card,
.about-card,
.value-card,
.contact-info-card,
.quick-contact-card {
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease,
    color 0.32s ease;
}

.feature-card:hover,
.package-card:hover,
.process-step:hover,
.support-card:hover,
.image-card:hover,
.map-card:hover,
.about-card:hover,
.value-card:hover,
.contact-info-card:hover,
.quick-contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 94, 159, 0.28);
  box-shadow: 0 24px 55px rgba(7, 26, 51, 0.14);
}

.service-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(7, 26, 51, 0.22);
}

.service-card:not(.service-card-main):hover {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.service-card:not(.service-card-main):hover h3,
.service-card:not(.service-card-main):hover p,
.service-card:not(.service-card-main):hover li {
  color: var(--white);
}

.service-card:not(.service-card-main):hover p,
.service-card:not(.service-card-main):hover li {
  color: rgba(255, 255, 255, 0.84);
}

.service-card:not(.service-card-main):hover .text-link {
  color: var(--gold-2);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(245, 181, 68, 0.14);
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover::after {
  transform: scale(1);
  opacity: 1;
}

.check-item {
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.check-item:hover {
  transform: translateX(10px) scale(1.018);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(7, 26, 51, 0.16);
}

.check-item:hover::before {
  background: var(--gold);
  color: #1f1600;
  transform: translateY(-50%) scale(1.12) rotate(360deg);
  transition: transform 0.45s ease, background 0.28s ease, color 0.28s ease;
}

.check-panel:hover {
  box-shadow: 0 24px 60px rgba(7, 26, 51, 0.12);
}

.btn:hover,
.text-link:hover {
  filter: saturate(1.08);
}

.floating-wa:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 22px 45px rgba(33, 180, 91, 0.44);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .page-loader {
    display: none;
  }
}


/* Update V4: animasi pembuka section, hover kartu, dan ikon alur pengerjaan */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.feature-card,
.package-card,
.process-step,
.check-item {
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.package-card::after,
.process-step::after,
.check-item::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(245, 181, 68, 0.16);
  transform: scale(0.35);
  opacity: 0;
  transition: transform 0.38s ease, opacity 0.38s ease;
  pointer-events: none;
}

.feature-card:hover::after,
.package-card:hover::after,
.process-step:hover::after,
.check-item:hover::after {
  transform: scale(1);
  opacity: 1;
}

.feature-card:hover,
.package-card:hover,
.process-step:hover {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 30px 70px rgba(7, 26, 51, 0.22);
}

.feature-card:hover h3,
.feature-card:hover p,
.package-card:hover h3,
.package-card:hover p,
.process-step:hover p {
  color: var(--white);
}

.feature-card:hover p,
.package-card:hover p {
  color: rgba(255, 255, 255, 0.86);
}

.feature-card:hover .feature-icon {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px) rotate(-6deg) scale(1.06);
}

.feature-icon {
  transition: transform 0.35s ease, background 0.35s ease;
}

.package-card.highlight:hover {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-color: rgba(245, 181, 68, 0.65);
}

.process-step {
  min-height: 170px;
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.process-step .process-number {
  display: inline-flex;
  color: var(--gold);
  font-size: 31px;
  font-weight: 900;
  margin-bottom: 0;
  letter-spacing: -0.5px;
  line-height: 1;
}

.process-step .process-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--soft);
  font-size: 25px;
  margin: 0;
  transition: transform 0.35s ease, background 0.35s ease;
}

.process-step:hover .process-number {
  color: var(--gold-2);
}

.process-step:hover .process-icon {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px) rotate(7deg) scale(1.08);
}

.process-step:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.12) 45%, transparent 72%);
  transform: translateX(-100%);
  animation: cardShine 0.9s ease both;
  pointer-events: none;
}

.feature-card:hover::before,
.package-card:hover::before,
.check-item:hover::before {
  animation-duration: 0.55s;
}

@keyframes cardShine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.package-card:hover::before,
.feature-card:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.10) 45%, transparent 72%);
  transform: translateX(-100%);
  animation: cardShine 0.85s ease both;
  pointer-events: none;
}

.check-item:hover {
  transform: translateX(12px) scale(1.02);
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 20px 45px rgba(7, 26, 51, 0.18);
}

.check-item:hover::before {
  z-index: 2;
}

/* Menu label baru lebih rapi */
.main-nav {
  gap: 24px;
}

.dropdown-menu a {
  font-size: 14px;
}

@media (max-width: 900px) {
  .main-nav {
    gap: 0;
  }

  .process-step .process-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}

/* =========================================================
   Update V5: penyesuaian hover elegan, alur pengerjaan, dan halaman digital
   ========================================================= */

/* Daftar masalah dibuat lebih elegan: hover tidak mengubah warna latar */
.check-item:hover {
  transform: translateX(6px) scale(1.006) !important;
  background: var(--soft) !important;
  color: var(--navy-2) !important;
  box-shadow: 0 14px 32px rgba(7, 26, 51, 0.10) !important;
}

.check-item:hover::before {
  background: var(--green) !important;
  color: var(--white) !important;
  transform: translateY(-50%) scale(1.05) !important;
  transition: transform 0.28s ease !important;
}

.check-item:hover::after {
  opacity: 0 !important;
}

/* Alur pengerjaan: angka lebih kecil hitam, icon lebih besar dan soft/blur */
.process-step {
  min-height: 182px;
  position: relative;
  isolation: isolate;
}

.process-step .process-number {
  color: var(--navy) !important;
  font-size: 20px !important;
  font-weight: 900;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.process-step .process-icon {
  top: 18px !important;
  right: 18px !important;
  width: 78px !important;
  height: 78px !important;
  font-size: 42px !important;
  border-radius: 26px !important;
  background: transparent !important;
  opacity: 0.18;
  filter: blur(0.6px) saturate(0.9);
  z-index: -1;
}

.process-step:hover .process-number {
  color: var(--white) !important;
  opacity: 1;
}

.process-step:hover .process-icon {
  background: transparent !important;
  opacity: 0.23;
  filter: blur(0.4px) saturate(0.9);
  transform: translateY(-3px) rotate(5deg) scale(1.06);
}

/* Halaman Jasa Website & Aplikasi Kasir */
.digital-hero {
  background-position: center;
}

.digital-problem-section,
.app-solution-section,
.feature-detail-section,
.showcase-section,
.why-section,
.faq-section {
  background: var(--soft);
}

.digital-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.problem-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini-problem-card,
.digital-feature-card,
.showcase-card,
.faq-item {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(7, 26, 51, 0.07);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease, color 0.32s ease;
}

.mini-problem-card {
  min-height: 145px;
  padding: 26px;
  display: grid;
  align-content: space-between;
}

.mini-problem-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--soft-2);
  color: var(--blue);
  font-weight: 900;
}

.mini-problem-card strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
}

.digital-image-card img {
  min-height: 460px;
}

.digital-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.digital-feature-card {
  padding: 32px;
}

.digital-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--soft-2);
  font-size: 28px;
  margin-bottom: 18px;
  transition: transform 0.32s ease, background 0.32s ease;
}

.digital-feature-card h3,
.showcase-card h3,
.faq-item h3 {
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.22;
}

.digital-feature-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.digital-feature-card li {
  margin: 9px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.showcase-grid-wide {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.showcase-card div {
  padding: 24px;
}

.showcase-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-item {
  padding: 28px;
}

.mini-problem-card:hover,
.digital-feature-card:hover,
.showcase-card:hover,
.faq-item:hover {
  transform: translateY(-9px);
  box-shadow: 0 26px 60px rgba(7, 26, 51, 0.16);
  border-color: rgba(21, 94, 159, 0.25);
}

.digital-feature-card:hover,
.showcase-card:hover {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
}

.digital-feature-card:hover h3,
.digital-feature-card:hover li,
.showcase-card:hover h3,
.showcase-card:hover p {
  color: var(--white);
}

.digital-feature-card:hover li,
.showcase-card:hover p {
  color: rgba(255, 255, 255, 0.84);
}

.digital-feature-card:hover .digital-card-icon {
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(-6deg) scale(1.08);
}

.faq-item:hover {
  background: #fffaf0;
}

@media (max-width: 980px) {
  .digital-split,
  .digital-feature-grid,
  .showcase-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .problem-mini-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .digital-image-card img {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 82vh;
    padding: 120px 0 72px;
    background-position: center center;
  }
}


/* =========================================================
   Update V8: halaman percetakan + perbaikan About/Kontak hero
   ========================================================= */
.about-focus-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071a33 0%, #155e9f 100%) !important;
  color: var(--white) !important;
  transform-origin: center;
  transition: transform 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease;
}

.about-focus-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(245, 181, 68, 0.14);
  transition: transform 0.42s ease, opacity 0.42s ease;
  opacity: 0.65;
  pointer-events: none;
}

.about-focus-card:hover {
  transform: translateY(-10px) scale(1.012);
  box-shadow: 0 34px 75px rgba(7, 26, 51, 0.28);
  filter: saturate(1.06);
}

.about-focus-card:hover::after {
  transform: scale(1.18);
  opacity: 1;
}

.about-focus-card h3,
.about-focus-card .clean-list li {
  color: var(--white) !important;
}

.about-focus-card .clean-list li {
  color: rgba(255, 255, 255, 0.88) !important;
}

.about-focus-card .clean-list li::before {
  color: var(--gold-2) !important;
}

.about-focus-card h3 {
  position: relative;
  z-index: 1;
}

.about-focus-card .clean-list {
  position: relative;
  z-index: 1;
}

.printing-hero .page-hero-overlay {
  background: linear-gradient(90deg, rgba(7, 26, 51, 0.88) 0%, rgba(7, 26, 51, 0.58) 52%, rgba(7, 26, 51, 0.12) 100%);
}

.printing-summary-section,
.printing-category-section {
  background: var(--white);
}

.printing-summary-image img {
  min-height: 470px;
}

.printing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.printing-card img {
  height: 235px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.printing-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.printing-category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.printing-process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.printing-process-grid .process-step:last-child {
  grid-column: span 2;
}

@media (max-width: 1100px) {
  .printing-grid,
  .printing-category-grid,
  .printing-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .printing-process-grid .process-step:last-child {
    grid-column: span 1;
  }
}

@media (max-width: 700px) {
  .printing-grid,
  .printing-category-grid,
  .printing-process-grid {
    grid-template-columns: 1fr;
  }

  .printing-summary-image img {
    min-height: 300px;
  }
}


/* =========================================================
   Announcement running text below hero
   ========================================================= */
.announcement-bar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #061a35 0%, #0f4f86 50%, #061a35 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(6, 26, 53, 0.16);
  white-space: nowrap;
}

.announcement-bar::before,
.announcement-bar::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.announcement-bar::before {
  left: 0;
  background: linear-gradient(90deg, #061a35, rgba(6, 26, 53, 0));
}

.announcement-bar::after {
  right: 0;
  background: linear-gradient(270deg, #061a35, rgba(6, 26, 53, 0));
}

.announcement-track {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  min-width: max-content;
  padding: 12px 0;
  animation: vijayaMarquee 24s linear infinite;
}

.announcement-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.announcement-track span::before {
  content: "✦";
  color: #ffb23f;
  font-size: 1rem;
}

.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

@keyframes vijayaMarquee {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .announcement-bar::before,
  .announcement-bar::after {
    width: 42px;
  }

  .announcement-track {
    gap: 42px;
    padding: 10px 0;
    animation-duration: 18s;
  }

  .announcement-track span {
    font-size: 0.86rem;
  }
}

/* =========================================================
   Update V11: Halaman Perlengkapan Kapal
   ========================================================= */
.marine-hero-dual {
  position: relative;
  overflow: hidden;
  background: #061a35;
}

.marine-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: marineHeroFade 15s infinite;
}

.marine-hero-bg-one {
  background-image: url('/assets/img/hero1-kapal.jpeg');
  animation-delay: 0s;
}

.marine-hero-bg-two {
  background-image: url('/assets/img/hero2-kapal.jpeg');
  animation-delay: 5s;
}

.marine-hero-bg-three {
  background-image: url('/assets/img/hero3-kapal.jpeg');
  animation-delay: 10s;
}

.marine-hero .page-hero-overlay {
  background: linear-gradient(90deg, rgba(6, 26, 53, .86), rgba(6, 26, 53, .54), rgba(6, 26, 53, .22));
}

@keyframes marineHeroFade {
  0%, 29% { opacity: 1; transform: scale(1); }
  33%, 96% { opacity: 0; transform: scale(1.045); }
  100% { opacity: 1; transform: scale(1); }
}

.marine-summary-section,
.marine-detail-section {
  background: var(--white);
}

.marine-summary-image img {
  min-height: 440px;
  object-fit: cover;
}

.marine-grid {
  grid-template-columns: repeat(4, 1fr);
}

.marine-card img {
  height: 235px;
  object-fit: cover;
  transition: transform 0.42s ease, filter 0.42s ease;
}

.marine-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.03);
}

.marine-card h3 {
  min-height: 58px;
}

.marine-category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.marine-value-card {
  position: relative;
  overflow: hidden;
}

.marine-value-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(21, 94, 159, 0.08);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.marine-value-card:hover::after {
  transform: scale(1.35);
  opacity: 1;
}

@media (max-width: 1100px) {
  .marine-grid,
  .marine-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .marine-grid,
  .marine-category-grid {
    grid-template-columns: 1fr;
  }

  .marine-summary-image img {
    min-height: 300px;
  }
}

/* =========================================================
   Update V13: Hero Perlengkapan Kapal dengan tagline per slide
   ========================================================= */
.marine-hero-content {
  min-height: 440px;
  width: min(100%, 980px);
  max-width: 980px;
}

.marine-hero-copy {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(100%, 860px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-42%) translateX(34px);
  filter: blur(8px);
  animation: marineHeroText 15s infinite;
}

.marine-copy-one { animation-delay: 0s; }
.marine-copy-two { animation-delay: 5s; }
.marine-copy-three { animation-delay: 10s; }

.marine-hero-copy .eyebrow,
.marine-hero-copy h1,
.marine-hero-copy p,
.marine-hero-copy .hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: marineHeroChild 15s infinite;
}

.marine-copy-one .eyebrow,
.marine-copy-one h1,
.marine-copy-one p,
.marine-copy-one .hero-actions { animation-delay: 0s; }

.marine-copy-two .eyebrow,
.marine-copy-two h1,
.marine-copy-two p,
.marine-copy-two .hero-actions { animation-delay: 5s; }

.marine-copy-three .eyebrow,
.marine-copy-three h1,
.marine-copy-three p,
.marine-copy-three .hero-actions { animation-delay: 10s; }

.marine-hero-copy h1 {
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.marine-hero-copy p {
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

@keyframes marineHeroText {
  0% {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-42%) translateX(34px);
    filter: blur(8px);
  }
  5%, 27% {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
    filter: blur(0);
  }
  31%, 100% {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-58%) translateX(-24px);
    filter: blur(8px);
  }
}

@keyframes marineHeroChild {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  7%, 25% {
    opacity: 1;
    transform: translateY(0);
  }
  30%, 100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.marine-hero:hover .marine-hero-bg,
.marine-hero:hover .marine-hero-copy,
.marine-hero:hover .marine-hero-copy .eyebrow,
.marine-hero:hover .marine-hero-copy h1,
.marine-hero:hover .marine-hero-copy p,
.marine-hero:hover .marine-hero-copy .hero-actions {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .marine-hero-content {
    min-height: 520px;
  }

  .marine-hero-copy {
    width: 100%;
    padding-right: 12px;
  }

  .marine-hero-copy h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .marine-hero-copy p {
    font-size: 16px;
  }
}


/* =========================================================
   Update V19: Hero slider 6 detik dengan efek masuk ke dalam
   ========================================================= */
.hero-slide {
  opacity: 0;
  transform: scale(1.1);
  filter: blur(2px);
  transition: opacity 1300ms ease, transform 6200ms cubic-bezier(.16, 1, .3, 1), filter 1300ms ease;
  will-change: opacity, transform, filter;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  animation: heroDepthEnter 6000ms cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes heroDepthEnter {
  0% {
    opacity: 0;
    transform: scale(1.01);
    filter: blur(5px) saturate(.96);
  }
  22% {
    opacity: 1;
    filter: blur(0) saturate(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1.08);
    filter: blur(0) saturate(1.04);
  }
}

.hero-slide.active .hero-content .eyebrow,
.hero-slide.active .hero-content h1,
.hero-slide.active .hero-content h2,
.hero-slide.active .hero-content p,
.hero-slide.active .hero-actions {
  animation: heroTextDepthEnter 900ms cubic-bezier(.16, 1, .3, 1) both;
}

.hero-slide.active .hero-content .eyebrow { animation-delay: 120ms; }
.hero-slide.active .hero-content h1,
.hero-slide.active .hero-content h2 { animation-delay: 220ms; }
.hero-slide.active .hero-content p { animation-delay: 330ms; }
.hero-slide.active .hero-actions { animation-delay: 460ms; }

@keyframes heroTextDepthEnter {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(.985);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Hero Perlengkapan Kapal: 3 slide x 4 detik = 12 detik */
.marine-hero-bg {
  animation-name: marineHeroFadeDepth;
  animation-duration: 12s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  will-change: opacity, transform, filter;
}

.marine-hero-bg-one { animation-delay: 0s; }
.marine-hero-bg-two { animation-delay: 4s; }
.marine-hero-bg-three { animation-delay: 8s; }

@keyframes marineHeroFadeDepth {
  0% {
    opacity: 0;
    transform: scale(1.01);
    filter: blur(5px) saturate(.96);
  }
  7%, 29% {
    opacity: 1;
    filter: blur(0) saturate(1.02);
  }
  32% {
    opacity: 0;
    transform: scale(1.09);
    filter: blur(3px) saturate(1.04);
  }
  100% {
    opacity: 0;
    transform: scale(1.09);
    filter: blur(3px) saturate(1.04);
  }
}

.marine-hero-copy {
  animation-name: marineHeroTextDepth;
  animation-duration: 12s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-iteration-count: infinite;
}

.marine-copy-one { animation-delay: 0s; }
.marine-copy-two { animation-delay: 4s; }
.marine-copy-three { animation-delay: 8s; }

.marine-hero-copy .eyebrow,
.marine-hero-copy h1,
.marine-hero-copy p,
.marine-hero-copy .hero-actions {
  animation-name: marineHeroChildDepth;
  animation-duration: 12s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-iteration-count: infinite;
}

.marine-copy-one .eyebrow,
.marine-copy-one h1,
.marine-copy-one p,
.marine-copy-one .hero-actions { animation-delay: 0s; }

.marine-copy-two .eyebrow,
.marine-copy-two h1,
.marine-copy-two p,
.marine-copy-two .hero-actions { animation-delay: 4s; }

.marine-copy-three .eyebrow,
.marine-copy-three h1,
.marine-copy-three p,
.marine-copy-three .hero-actions { animation-delay: 8s; }

@keyframes marineHeroTextDepth {
  0% {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-42%) translateX(34px) scale(.985);
    filter: blur(8px);
  }
  7%, 28% {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0) scale(1);
    filter: blur(0);
  }
  32%, 100% {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-58%) translateX(-24px) scale(.99);
    filter: blur(8px);
  }
}

@keyframes marineHeroChildDepth {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(.985);
    filter: blur(6px);
  }
  8%, 27% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  31%, 100% {
    opacity: 0;
    transform: translateY(-12px) scale(.99);
    filter: blur(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.active,
  .hero-slide.active .hero-content .eyebrow,
  .hero-slide.active .hero-content h1,
  .hero-slide.active .hero-content h2,
  .hero-slide.active .hero-content p,
  .hero-slide.active .hero-actions,
  .marine-hero-bg,
  .marine-hero-copy,
  .marine-hero-copy .eyebrow,
  .marine-hero-copy h1,
  .marine-hero-copy p,
  .marine-hero-copy .hero-actions {
    animation: none !important;
    transition: none !important;
    filter: none !important;
  }
}


/* =========================================================
   Update V18: running text beranda + alur pengerjaan lebih elegan
   ========================================================= */

/* Ruang pengumuman di bawah hero beranda agar konsisten dengan halaman lain */
.hero-slider + .announcement-bar {
  margin-top: 0;
}

/* Alur pengerjaan dibuat lebih premium dan tidak terlalu kosong */
.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 181, 68, 0.10), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(15, 79, 134, 0.08), transparent 26%),
    #ffffff;
}

.process-section .process-grid {
  gap: 26px;
  position: relative;
}

.process-section .process-step {
  min-height: 198px !important;
  padding: 28px 28px 26px !important;
  border-radius: 28px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)) !important;
  border: 1px solid rgba(13, 46, 83, 0.10) !important;
  box-shadow: 0 18px 48px rgba(7, 26, 51, 0.07) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform 0.38s ease,
    box-shadow 0.38s ease,
    border-color 0.38s ease,
    background 0.38s ease !important;
}

.process-section .process-step::before {
  content: "" !important;
  position: absolute !important;
  left: 24px !important;
  right: 24px !important;
  bottom: 20px !important;
  height: 4px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, var(--gold), var(--orange)) !important;
  transform: scaleX(0.32) !important;
  transform-origin: left center !important;
  opacity: 0.35 !important;
  animation: none !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.process-section .process-step::after {
  content: "" !important;
  position: absolute !important;
  width: 150px !important;
  height: 150px !important;
  right: -72px !important;
  bottom: -84px !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle, rgba(245, 181, 68, 0.20), rgba(245, 181, 68, 0.06) 48%, transparent 70%) !important;
  opacity: 1 !important;
  transform: scale(1) !important;
  transition: transform 0.42s ease, opacity 0.42s ease !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.process-section .process-step .process-number {
  width: 48px !important;
  height: 34px !important;
  border-radius: 999px !important;
  display: inline-grid !important;
  place-items: center !important;
  background: rgba(245, 181, 68, 0.16) !important;
  border: 1px solid rgba(245, 181, 68, 0.22) !important;
  color: var(--navy) !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  letter-spacing: 0.02em !important;
  line-height: 1 !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 3 !important;
}

.process-section .process-step .process-icon {
  top: 18px !important;
  right: 20px !important;
  width: 92px !important;
  height: 92px !important;
  font-size: 52px !important;
  opacity: 0.13 !important;
  filter: blur(0.7px) saturate(0.85) !important;
  background: transparent !important;
  z-index: 1 !important;
  transform: rotate(-7deg) !important;
}

.process-section .process-step p {
  position: relative !important;
  z-index: 3 !important;
  margin: 52px 0 10px !important;
  max-width: 230px;
  color: var(--navy) !important;
  font-size: 1.05rem !important;
  line-height: 1.36 !important;
  font-weight: 950 !important;
  transition: color 0.35s ease, transform 0.35s ease !important;
}

.process-section .process-step:hover {
  background: linear-gradient(135deg, #061a35 0%, #0f4f86 100%) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 34px 82px rgba(7, 26, 51, 0.24) !important;
  transform: translateY(-12px) !important;
}

.process-section .process-step:hover::before {
  transform: scaleX(1) !important;
  opacity: 0.95 !important;
}

.process-section .process-step:hover::after {
  transform: scale(1.2) !important;
  opacity: 0.95 !important;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.20), rgba(245, 181, 68, 0.13) 45%, transparent 72%) !important;
}

.process-section .process-step:hover .process-number {
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
}

.process-section .process-step:hover .process-icon {
  opacity: 0.19 !important;
  filter: blur(0.5px) saturate(0.9) !important;
  transform: translateY(-4px) rotate(4deg) scale(1.08) !important;
}

.process-section .process-step:hover p {
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 900px) {
  .process-section .process-grid {
    gap: 18px;
  }

  .process-section .process-step {
    min-height: 172px !important;
    padding: 24px !important;
  }

  .process-section .process-step p {
    margin-top: 42px !important;
  }
}

@media (max-width: 640px) {
  .process-section .process-step {
    min-height: 154px !important;
  }

  .process-section .process-step .process-icon {
    width: 74px !important;
    height: 74px !important;
    font-size: 42px !important;
  }
}

/* =========================================================
   Update V20: Beranda fokus 3 layanan Vijaya
   ========================================================= */
.vijaya-services-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 179, 55, .14), transparent 32%),
    linear-gradient(180deg, #f3f7fc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.vijaya-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(6, 26, 53, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 26, 53, .035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 78%, transparent);
  pointer-events: none;
}

.vijaya-service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 46px;
}

.vijaya-service-card {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(17, 54, 94, .12);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 26px 70px rgba(6, 26, 53, .10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease, background .45s ease;
}

.vijaya-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #061a35 0%, #0f4778 58%, #0c6aa1 100%);
  opacity: 0;
  transition: opacity .45s ease;
  z-index: 0;
}

.vijaya-service-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -62px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(255, 179, 55, .18);
  transform: scale(.8);
  transition: transform .45s ease, opacity .45s ease;
  opacity: .55;
  z-index: 0;
}

.vijaya-service-card > * {
  position: relative;
  z-index: 1;
}

.vijaya-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 34px;
  background: linear-gradient(145deg, rgba(255, 179, 55, .26), rgba(255,255,255,.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 15px 30px rgba(6,26,53,.10);
  transition: transform .45s ease, background .45s ease;
}

.vijaya-card-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 179, 55, .16);
  color: #a96900;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.vijaya-service-card h3 {
  margin: 0;
  color: #061a35;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.08;
}

.vijaya-service-card p,
.vijaya-service-card li {
  color: #526882;
  font-size: 16px;
  line-height: 1.75;
}

.vijaya-service-card ul {
  margin: 0 0 8px;
  padding-left: 20px;
}

.vijaya-service-card .btn {
  margin-top: auto;
}

.vijaya-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 34px 90px rgba(6, 26, 53, .22);
  border-color: rgba(255, 179, 55, .42);
}

.vijaya-service-card:hover::before { opacity: 1; }
.vijaya-service-card:hover::after { transform: scale(1.25); opacity: .9; }
.vijaya-service-card:hover .vijaya-card-icon { transform: translateY(-6px) rotate(-3deg) scale(1.05); background: rgba(255,255,255,.16); }
.vijaya-service-card:hover .vijaya-card-kicker { background: rgba(255,255,255,.14); color: #ffd98a; }
.vijaya-service-card:hover h3,
.vijaya-service-card:hover p,
.vijaya-service-card:hover li { color: #fff; }
.vijaya-service-card:hover .btn-primary { background: linear-gradient(135deg, #ffbd45, #ff981f); color: #061a35; }

.about-vijaya-section {
  background: #fff;
}

.about-vijaya-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, #061a35, #164f84);
  box-shadow: 0 28px 80px rgba(6, 26, 53, .18);
  color: #fff;
}

.about-vijaya-panel span {
  align-self: start;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 179, 55, .18);
  color: #ffbd45;
  font-weight: 900;
}

.about-vijaya-panel strong {
  color: #fff;
  font-size: 20px;
}

.about-vijaya-panel p {
  grid-column: 2;
  margin: -4px 0 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .vijaya-service-grid { grid-template-columns: 1fr; }
  .vijaya-service-card { min-height: auto; }
}

@media (max-width: 640px) {
  .vijaya-service-card { padding: 26px; border-radius: 22px; }
  .vijaya-card-icon { width: 62px; height: 62px; font-size: 28px; }
  .about-vijaya-panel { padding: 26px; }
}


/* =========================================================
   Update V23: Gambar kartu Layanan Vijaya
   ========================================================= */
.vijaya-service-card {
  min-height: 560px;
}

.vijaya-card-media {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin-bottom: 4px;
  border: 1px solid rgba(17, 54, 94, .10);
  box-shadow: 0 14px 30px rgba(6, 26, 53, .12);
  transition: transform .45s ease, box-shadow .45s ease, filter .45s ease;
}

.vijaya-service-card:hover .vijaya-card-media {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(6, 26, 53, .22);
  filter: saturate(1.08) contrast(1.03);
}

@media (max-width: 768px) {
  .vijaya-service-card {
    min-height: auto;
  }

  .vijaya-card-media {
    height: 165px;
    border-radius: 18px;
  }
}


/* =========================================================
   Update V24: Beranda 3 layanan lebih rapat dan hero 3 slide
   ========================================================= */
@media (min-width: 1024px) {
  .vijaya-services-section .section-heading h2 {
    max-width: none;
    white-space: nowrap;
  }
}

.vijaya-service-card {
  padding: 22px 28px 34px;
}

.vijaya-card-media {
  width: calc(100% + 28px);
  height: 190px;
  margin: -8px -14px 14px;
  border-radius: 20px;
}

.vijaya-service-card .vijaya-card-icon {
  display: none !important;
}

@media (max-width: 768px) {
  .vijaya-service-card {
    padding: 20px 22px 28px;
  }

  .vijaya-card-media {
    width: calc(100% + 20px);
    height: 160px;
    margin: -6px -10px 12px;
    border-radius: 18px;
  }
}


/* =========================================================
   Update V25: Gambar kartu layanan full tanpa padding
   ========================================================= */
.vijaya-service-card {
  padding: 0 0 30px !important;
  border-radius: 28px;
}

.vijaya-card-media {
  width: 100% !important;
  height: 250px !important;
  margin: 0 0 26px !important;
  border-radius: 28px 28px 0 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  object-fit: cover;
}

.vijaya-service-card .vijaya-card-kicker,
.vijaya-service-card h3,
.vijaya-service-card p,
.vijaya-service-card ul,
.vijaya-service-card .btn {
  margin-left: 34px;
  margin-right: 34px;
}

.vijaya-service-card h3 {
  font-size: clamp(20px, 1.55vw, 26px) !important;
  line-height: 1.12;
  text-transform: none;
  letter-spacing: -0.02em;
}

.vijaya-service-card .btn {
  width: fit-content;
}

.vijaya-service-card:hover .vijaya-card-media {
  transform: none !important;
  box-shadow: none !important;
  filter: saturate(1.06) contrast(1.03);
}

@media (max-width: 768px) {
  .vijaya-service-card {
    padding: 0 0 26px !important;
    border-radius: 24px;
  }

  .vijaya-card-media {
    height: 200px !important;
    border-radius: 24px 24px 0 0 !important;
    margin-bottom: 22px !important;
  }

  .vijaya-service-card .vijaya-card-kicker,
  .vijaya-service-card h3,
  .vijaya-service-card p,
  .vijaya-service-card ul,
  .vijaya-service-card .btn {
    margin-left: 24px;
    margin-right: 24px;
  }

  .vijaya-service-card h3 {
    font-size: 23px !important;
  }
}


/* =========================================================
   Update V26 SEO + Kartu layanan Beranda
   ========================================================= */
.vijaya-service-card {
  padding: 0 0 30px !important;
  border-radius: 28px;
}

.vijaya-card-media {
  width: 100% !important;
  height: 250px !important;
  margin: 0 0 26px !important;
  border-radius: 28px 28px 0 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  object-fit: cover;
}

.vijaya-service-card .vijaya-card-icon {
  display: none !important;
}

.vijaya-service-card .vijaya-card-kicker,
.vijaya-service-card h3,
.vijaya-service-card p,
.vijaya-service-card ul,
.vijaya-service-card .btn {
  margin-left: 34px;
  margin-right: 34px;
}

.vijaya-service-card h3 {
  font-size: clamp(20px, 1.55vw, 26px) !important;
  line-height: 1.12;
  text-transform: none;
  letter-spacing: -0.02em;
}

.vijaya-service-card .btn {
  width: fit-content;
}

.vijaya-service-card:hover .vijaya-card-media {
  transform: none !important;
  box-shadow: none !important;
  filter: saturate(1.06) contrast(1.03);
}

@media (min-width: 1024px) {
  .vijaya-services-section .section-heading h2 {
    max-width: none;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .vijaya-service-card {
    padding: 0 0 26px !important;
    border-radius: 24px;
  }

  .vijaya-card-media {
    height: 200px !important;
    border-radius: 24px 24px 0 0 !important;
    margin-bottom: 22px !important;
  }

  .vijaya-service-card .vijaya-card-kicker,
  .vijaya-service-card h3,
  .vijaya-service-card p,
  .vijaya-service-card ul,
  .vijaya-service-card .btn {
    margin-left: 24px;
    margin-right: 24px;
  }

  .vijaya-service-card h3 {
    font-size: 23px !important;
  }
}
