:root {
  --navy: #0b2d5c;
  --navy2: #0a1d3a;
  --blue: #2b6ea8;
  --sky: #eaf5ff;
  --gold: #f2b84b;
  --goldDark: #b77435;
  --ivory: #f8fbff;
  --white: #fff;
  --text: #2f4057;
  --muted: #5d718a;
  --line: #dceaf7;
  --shadow: 0 20px 50px rgba(11, 45, 92, 0.12);
  --soft: 0 12px 30px rgba(11, 45, 92, 0.08);
  --r: 24px;
  --container: 1160px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Manrope, Inter, system-ui, sans-serif;
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(215, 236, 255, 0.8),
      transparent 22rem
    ),
    var(--ivory);
  color: var(--text);
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(100% - 32px, var(--container));
  margin: auto;
}
.section {
  padding: 84px 0;
}
.section-sm {
  padding: 52px 0;
}
h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}
h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}
p {
  margin: 0;
}
.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}
.kicker {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(242, 184, 75, 0.35);
  background: #fff7e8;
  color: var(--goldDark);
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 16px 28px rgba(11, 45, 92, 0.23);
}
.btn-gold {
  color: var(--navy2);
  background: var(--gold);
}
.btn-outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 45, 92, 0.18);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(248, 251, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.navbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 58px;
}
.brand strong {
  display: block;
  color: var(--navy);
  line-height: 1.1;
}
.brand span span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.nav-menu {
  display: flex;
  gap: 6px;
}
.nav-menu a {
  font-weight: 850;
  color: var(--navy2);
  padding: 10px 14px;
  border-radius: 999px;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: var(--sky);
}
.header-actions {
  display: flex;
  gap: 12px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}
.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
  border-radius: 9px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    100deg,
    rgba(234, 245, 255, 0.96),
    rgba(255, 255, 255, 0.82) 48%,
    rgba(199, 230, 255, 0.92)
  );
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  padding: 74px 0 46px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 52px;
}
.hero-copy {
  display: grid;
  gap: 22px;
}
.gold-line {
  width: 68px;
  height: 4px;
  background: var(--gold);
  border-radius: 99px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.feature-mini {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.feature-mini div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  color: var(--navy);
}
.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--goldDark);
  background: #fff7e8;
  border: 1px solid rgba(242, 184, 75, 0.34);
}
.hero-media {
  position: relative;
}
.main-visual {
  overflow: hidden;
  border-radius: 46px 46px 46px 130px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.main-visual img {
  width: 100%;
  aspect-ratio: 1.56/1;
  object-fit: cover;
}
.float-feature {
  position: absolute;
  right: 18px;
  width: min(300px, 58%);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 13px;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 13px;
  box-shadow: var(--soft);
}
.float-feature img {
  width: 64px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
}
.float-feature strong {
  display: block;
  color: var(--navy);
  line-height: 1.1;
}
.float-feature span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}
.float-feature.one {
  top: 42px;
}
.float-feature.two {
  top: 154px;
  right: 44px;
}
.float-feature.three {
  top: 266px;
}
.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 22px;
  align-items: start;
}
.panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--soft);
}
.panel-pad {
  padding: 26px;
}
.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 20px;
}
.section-title-row a {
  color: var(--muted);
  font-weight: 850;
}
.package-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.package-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--soft);
}
.package-image {
  position: relative;
}
.package-image img {
  width: 100%;
  aspect-ratio: 1.25/1;
  object-fit: cover;
}
.package-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  color: white;
  background: var(--navy);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 900;
}
.package-body {
  padding: 16px;
  display: grid;
  gap: 10px;
}
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}
.package-price {
  color: var(--navy);
  font-weight: 950;
}
.package-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  align-items: center;
}
.chat-mini {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--navy);
}
.arrow-round {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  font-weight: 950;
}
.timeline-card {
  padding: 25px;
}
.timeline {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 42px;
  width: 2px;
  height: calc(100% - 22px);
  background: var(--line);
}
.timeline-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy);
  font-weight: 900;
  z-index: 1;
}
.timeline-item strong {
  display: block;
  color: var(--navy);
}
.timeline-item p {
  color: var(--muted);
  font-size: 0.92rem;
}
.validation-card {
  overflow: hidden;
}
.validation-head {
  padding: 24px;
  color: white;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(242, 184, 75, 0.23),
      transparent 16rem
    ),
    var(--navy);
}
.validation-head h2,
.validation-head h3 {
  color: white;
}
.validation-list {
  display: grid;
  gap: 17px;
  margin-top: 18px;
}
.validation-list div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}
.validation-list span {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(242, 184, 75, 0.14);
  color: var(--gold);
}
.validation-list strong {
  display: block;
  color: white;
}
.validation-list small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}
.disclaimer {
  padding: 22px 24px;
  background: white;
  color: var(--muted);
  font-size: 0.92rem;
}
.testimonials-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.review {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  font-weight: 950;
}
.stars {
  color: var(--goldDark);
  letter-spacing: 2px;
  font-size: 0.85rem;
}
.review p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
  margin-top: 4px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(145deg, var(--sky), white);
}
.stat {
  padding: 25px 15px;
  text-align: center;
  border-right: 1px solid rgba(11, 45, 92, 0.1);
}
.stat:last-child {
  border-right: 0;
}
.stat-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 7px;
}
.stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.75rem;
  line-height: 1;
}
.stat span {
  display: block;
  color: var(--navy);
  font-weight: 900;
  margin-top: 6px;
}
.stat small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
  margin-top: 5px;
}
.cta-banner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 28px 34px;
  color: white;
  background:
    radial-gradient(circle at 0 0, rgba(242, 184, 75, 0.2), transparent 18rem),
    var(--navy);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.cta-banner h2 {
  color: white;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 8px;
}
.page-hero {
  padding: 62px 0 38px;
  background: var(--sky);
  border-bottom: 1px solid var(--line);
}
.page-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}
.filters {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 220px 180px;
  gap: 12px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--soft);
}
.form-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--navy);
  border-radius: 15px;
  padding: 0 14px;
  outline: none;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(43, 110, 168, 0.13);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.detail-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.detail-image {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--soft);
}
.detail-info {
  display: grid;
  gap: 16px;
}
.detail-card,
.contact-box {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--soft);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}
.info-table th,
.info-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.info-table th {
  color: var(--navy);
  width: 34%;
}
.list-check {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.list-check li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}
.list-check li:before {
  content: "✓";
  color: var(--goldDark);
  font-weight: 950;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}
.contact-list {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}
.contact-list a,
.contact-list span {
  color: var(--navy);
  font-weight: 900;
}
.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
textarea.form-control {
  min-height: 140px;
  padding-block: 13px;
  resize: vertical;
}
.notice {
  padding: 18px;
  border-radius: 18px;
  background: #fff7e8;
  border: 1px solid rgba(242, 184, 75, 0.35);
  color: #765723;
  font-weight: 750;
}
.site-footer {
  margin-top: 44px;
  padding: 58px 0 26px;
  background: var(--navy2);
  color: rgba(255, 255, 255, 0.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 26px;
}
.footer-grid h3,
.footer-grid h4 {
  color: white;
  margin-bottom: 12px;
}
.footer-grid a {
  display: block;
  padding: 5px 0;
}
.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}
.sticky-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 88;
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
  font-weight: 900;
}
@media (max-width: 1080px) {
  .hero-inner,
  .main-grid,
  .detail-layout,
  .contact-grid,
  .testimonials-stats {
    grid-template-columns: 1fr;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-image {
    position: static;
  }
}
@media (max-width: 840px) {
  .header-actions .btn {
    display: none;
  }
  .menu-toggle {
    display: inline-block;
  }
  .nav-menu {
    display: none;
    position: fixed;
    inset: 82px 16px auto 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow);
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    padding: 13px 14px;
  }
  .hero-inner {
    padding-top: 44px;
  }
  .float-feature {
    display: none;
  }
  .package-carousel,
  .review-grid,
  .filters,
  .page-head {
    grid-template-columns: 1fr;
  }
  .package-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  .package-card {
    min-width: 270px;
    scroll-snap-align: start;
  }
  .cta-banner {
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .sticky-whatsapp {
    display: inline-flex;
  }
}
@media (max-width: 620px) {
  h1 {
    font-size: 2.3rem;
  }
  .section {
    padding: 60px 0;
  }
  .main-visual {
    border-radius: 28px;
  }
  .brand img {
    width: 50px;
  }
  .brand strong {
    font-size: 0.96rem;
  }
  .brand span span {
    font-size: 0.74rem;
  }
  .catalog-grid,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(11, 45, 92, 0.1);
  }
  .stat:last-child {
    border-bottom: 0;
  }
  .sticky-whatsapp {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}
/* =========================================================
   HERO POSTER FINAL FIX
   Tujuan:
   - Poster diperbesar agar lebih terbaca
   - Tidak terpotong
   - Tetap proporsional secara UI/UX
   - Gradient sisi poster dibuat halus agar menyatu dengan background
========================================================= */

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  min-height: calc(100vh - 82px);
  padding: 62px 0 54px;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(38px, 4vw, 66px);
}

.hero-copy {
  max-width: 600px;
}

.hero-copy h1 {
  max-width: 580px;
}

.hero-copy .lead {
  max-width: 560px;
}

/* Area kanan hero */
.hero-media {
  position: relative;
  min-height: clamp(560px, 56vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  isolation: isolate;
}

/* Glow besar di belakang poster */
.hero-media::before {
  content: "";
  position: absolute;
  inset: 4% 0;
  z-index: 0;
  border-radius: 52px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(232, 247, 255, 0.86) 42%,
    rgba(205, 233, 250, 0.58) 68%,
    rgba(205, 233, 250, 0) 100%
  );
  filter: blur(10px);
}

/* Container poster */
.main-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  min-height: clamp(540px, 54vh, 670px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border: 0;
  border-radius: 44px;
  background: transparent;
  box-shadow: none;
}

/* Background lembut di belakang poster */
.main-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border-radius: 42px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(226, 244, 255, 0.78)
  );
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 28px 60px rgba(11, 45, 92, 0.14),
    inset 0 0 38px rgba(255, 255, 255, 0.7);
}

/* Gradient halus di sisi poster */
.main-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 4;
  pointer-events: none;
  border-radius: 42px;
  background:
    linear-gradient(
      90deg,
      rgba(226, 244, 255, 0.88) 0%,
      rgba(226, 244, 255, 0.45) 8%,
      rgba(226, 244, 255, 0) 20%,
      rgba(226, 244, 255, 0) 80%,
      rgba(226, 244, 255, 0.45) 92%,
      rgba(226, 244, 255, 0.88) 100%
    ),
    linear-gradient(
      180deg,
      rgba(226, 244, 255, 0.62) 0%,
      rgba(226, 244, 255, 0) 16%,
      rgba(226, 244, 255, 0) 84%,
      rgba(226, 244, 255, 0.62) 100%
    );
}

/* Poster utama */
.main-visual img {
  position: relative;
  z-index: 3;
  width: auto !important;
  height: clamp(520px, 50vw, 650px) !important;
  max-width: min(100%, 520px) !important;
  max-height: calc(100vh - 150px) !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 24px;
  filter: drop-shadow(0 30px 48px rgba(11, 45, 92, 0.22));
}

/* Floating card lama disembunyikan agar tidak menutupi poster */
.hero-media .float-feature {
  display: none !important;
}

/* Tablet */
@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 54px 0 58px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-copy h1,
  .hero-copy .lead {
    max-width: 680px;
  }

  .hero-media {
    min-height: clamp(500px, 72vw, 640px);
    margin-top: 8px;
  }

  .main-visual {
    width: min(100%, 620px);
    min-height: clamp(500px, 72vw, 640px);
  }

  .main-visual img {
    height: clamp(500px, 72vw, 620px) !important;
    max-width: min(100%, 500px) !important;
    max-height: none !important;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .hero-inner {
    padding: 42px 0 48px;
    gap: 34px;
  }

  .hero-media {
    min-height: clamp(430px, 112vw, 540px);
  }

  .main-visual {
    width: 100%;
    min-height: clamp(430px, 112vw, 540px);
    border-radius: 30px;
  }

  .main-visual::before,
  .main-visual::after {
    inset: 8px;
    border-radius: 28px;
  }

  .main-visual img {
    height: clamp(420px, 108vw, 520px) !important;
    max-width: min(100%, 420px) !important;
    border-radius: 18px;
  }
}

/* =========================================================
   FIX UKURAN LOGO FOOTER CONTACT
   Membatasi logo WhatsApp, Instagram, TikTok, dan lokasi
========================================================= */

.footer-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.footer-contact-item {
  display: grid !important;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 6px 0 !important;
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact-icon {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Untuk logo SVG */
.footer-contact-icon svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
  fill: currentColor !important;
}

/* Untuk path di dalam SVG agar warnanya mengikuti icon */
.footer-contact-icon svg path {
  fill: currentColor !important;
}

/* Untuk logo berbentuk gambar PNG/JPG/WEBP */
.footer-contact-icon img {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  object-fit: contain;
  display: block;
}

/* Warna masing-masing platform */
.wa-icon {
  color: #25d366;
}

.ig-icon {
  color: #f77737;
}

.tiktok-icon {
  color: #ffffff;
}

.maps-icon {
  color: var(--gold);
}

.footer-contact-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.25;
}

.footer-contact-item small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

/* Menghapus efek ukuran bawaan dari SVG besar */
.footer-contact svg {
  width: 20px !important;
  height: 20px !important;
}

.footer-contact a {
  width: 100%;
}

/* =========================================================
   GLOBAL BACKGROUND FIX - NO WHITE COVER LAYER
   Menghapus efek layer putih yang menutupi background utama.
   Tempel di paling bawah style.css.
========================================================= */

/* Background utama website */
html,
body {
  min-height: 100%;
  background:
    radial-gradient(
      circle at 8% 6%,
      rgba(43, 110, 168, 0.26),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(242, 184, 75, 0.18),
      transparent 26rem
    ),
    radial-gradient(
      circle at 50% 90%,
      rgba(11, 45, 92, 0.12),
      transparent 34rem
    ),
    linear-gradient(135deg, #f1f9ff 0%, #e7f4ff 42%, #fff3dc 100%) !important;
  background-attachment: fixed;
}

/* Jangan pakai body::before/body::after sebagai layer putih */
body::before,
body::after {
  content: none !important;
  display: none !important;
}

/* Main dibuat transparan agar background body terlihat */
main {
  position: relative;
  overflow: hidden;
  background: transparent !important;
}

/* Pattern dekoratif dipasang di main, bukan body */
main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(
      30deg,
      rgba(11, 45, 92, 0.05) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(11, 45, 92, 0.05) 87.5%,
      rgba(11, 45, 92, 0.05)
    ),
    linear-gradient(
      150deg,
      rgba(11, 45, 92, 0.05) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(11, 45, 92, 0.05) 87.5%,
      rgba(11, 45, 92, 0.05)
    ),
    radial-gradient(circle, rgba(242, 184, 75, 0.14) 0 1.4px, transparent 1.6px);
  background-size:
    94px 162px,
    94px 162px,
    38px 38px;
  background-position:
    0 0,
    47px 81px,
    0 0;
}

/* Semua konten utama harus berada di atas pattern */
.site-header,
.hero,
.section,
.section-sm,
.site-footer,
.sticky-whatsapp {
  position: relative;
  z-index: 1;
}

/* Inilah layer yang sebelumnya terlihat putih/menutup background */
.hero {
  background: linear-gradient(
    100deg,
    rgba(234, 245, 255, 0.48),
    rgba(255, 255, 255, 0.28) 48%,
    rgba(199, 230, 255, 0.42)
  ) !important;
  backdrop-filter: blur(6px);
}

/* Section bawah dibuat transparan */
.section,
.section-sm {
  background: transparent !important;
}

/* Header dibuat glass, bukan putih solid */
.site-header {
  background: rgba(248, 251, 255, 0.72) !important;
  backdrop-filter: blur(18px);
}

/* Card tetap readable tetapi tidak putih mati */
.panel,
.contact-box,
.detail-card,
.package-card {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(220, 234, 247, 0.82) !important;
}

/* Panel statistik jangan terlalu putih */
.stats {
  background: linear-gradient(
    145deg,
    rgba(234, 245, 255, 0.78),
    rgba(255, 255, 255, 0.62)
  ) !important;
}

/* Review card juga dibuat soft-glass */
.review {
  background: rgba(255, 255, 255, 0.74) !important;
  backdrop-filter: blur(14px);
}

/* Disclaimer jangan putih terlalu solid */
.disclaimer {
  background: rgba(255, 255, 255, 0.78) !important;
}

/* Area poster hero jangan membuat layer putih terlalu besar */
.main-visual::before {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.58),
    rgba(226, 244, 255, 0.46)
  ) !important;
  box-shadow:
    0 28px 60px rgba(11, 45, 92, 0.12),
    inset 0 0 38px rgba(255, 255, 255, 0.4);
}

.main-visual::after {
  background:
    linear-gradient(
      90deg,
      rgba(226, 244, 255, 0.42) 0%,
      rgba(226, 244, 255, 0.18) 8%,
      rgba(226, 244, 255, 0) 22%,
      rgba(226, 244, 255, 0) 78%,
      rgba(226, 244, 255, 0.18) 92%,
      rgba(226, 244, 255, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(226, 244, 255, 0.34) 0%,
      rgba(226, 244, 255, 0) 18%,
      rgba(226, 244, 255, 0) 82%,
      rgba(226, 244, 255, 0.34) 100%
    ) !important;
}

/* CTA dan validasi tetap kontras */
.validation-head {
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(242, 184, 75, 0.26),
      transparent 16rem
    ),
    linear-gradient(135deg, #0b2d5c 0%, #0a1d3a 100%) !important;
}

.cta-banner {
  background:
    radial-gradient(circle at 0 0, rgba(242, 184, 75, 0.24), transparent 18rem),
    linear-gradient(135deg, #0b2d5c 0%, #0a1d3a 100%) !important;
}

/* Footer tetap premium */
.site-footer {
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(242, 184, 75, 0.16),
      transparent 22rem
    ),
    linear-gradient(135deg, #07172f 0%, #0a1d3a 56%, #0b2d5c 100%) !important;
}

/* Mobile: pattern diperkecil agar tidak ramai */
@media (max-width: 620px) {
  main::before {
    opacity: 0.22;
    background-size:
      78px 136px,
      78px 136px,
      34px 34px;
    background-position:
      0 0,
      39px 68px,
      0 0;
  }

  .panel,
  .contact-box,
  .detail-card,
  .package-card {
    background: rgba(255, 255, 255, 0.84) !important;
  }

  .hero {
    background: linear-gradient(
      120deg,
      rgba(234, 245, 255, 0.56),
      rgba(255, 255, 255, 0.34),
      rgba(255, 243, 220, 0.46)
    ) !important;
  }
}

/* =========================================================
   PRODUCT-FIRST LANDING PAGE REVISION
   Fokus: produk paket + konsultasi seat/harga via admin
========================================================= */

.section-subtitle {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}

.hero-trust-list {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.hero-trust-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(220, 234, 247, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
}

.hero-trust-list strong,
.hero-trust-list small {
  display: block;
}

.hero-trust-list strong {
  color: var(--navy);
  line-height: 1.25;
}

.hero-trust-list small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
  margin-top: 2px;
}

.trust-strip {
  position: relative;
  z-index: 1;
  margin-top: -22px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(220, 234, 247, 0.9);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--soft);
}

.trust-strip-inner div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(234, 245, 255, 0.64);
}

.trust-strip-inner strong,
.trust-strip-inner span {
  display: block;
}

.trust-strip-inner strong {
  color: var(--navy);
  font-weight: 950;
}

.trust-strip-inner span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.45;
  margin-top: 3px;
}

.product-title-row {
  align-items: start;
}

.mitra-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.mitra-product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 20px;
  min-height: 100%;
  border: 1px solid rgba(220, 234, 247, 0.9);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(242, 184, 75, 0.13),
      transparent 12rem
    ),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft);
}

.mitra-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), rgba(43, 110, 168, 0.45));
}

.featured-product {
  border-color: rgba(242, 184, 75, 0.55);
  box-shadow: 0 18px 42px rgba(183, 116, 53, 0.14);
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.package-status {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.status-check {
  color: var(--navy);
  background: var(--sky);
  border: 1px solid rgba(43, 110, 168, 0.18);
}

.status-limited {
  color: #765723;
  background: #fff7e8;
  border: 1px solid rgba(242, 184, 75, 0.38);
}

.status-full {
  color: #7a2a2a;
  background: #fff0f0;
  border: 1px solid rgba(180, 70, 70, 0.22);
}

.product-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--goldDark);
  background: #fff7e8;
  border: 1px solid rgba(242, 184, 75, 0.34);
  font-weight: 950;
}

.mitra-product-card h3 {
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.mitra-product-card p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.58;
}

.mitra-product-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mitra-product-card li {
  display: flex;
  gap: 8px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.45;
}

.mitra-product-card li::before {
  content: "✓";
  color: var(--goldDark);
  font-weight: 950;
}

.product-cta {
  width: 100%;
  margin-top: auto;
  min-height: 44px;
  padding: 11px 14px;
  font-size: 0.88rem;
}

.availability-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(242, 184, 75, 0.34);
  border-radius: 20px;
  background: rgba(255, 247, 232, 0.84);
  color: #765723;
  font-weight: 720;
  line-height: 1.6;
}

.home-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.consult-section {
  padding-top: 26px;
}

.consult-point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.consult-point-grid div {
  padding: 16px;
  border: 1px solid rgba(220, 234, 247, 0.86);
  border-radius: 18px;
  background: rgba(234, 245, 255, 0.55);
}

.consult-point-grid strong,
.consult-point-grid span {
  display: block;
}

.consult-point-grid strong {
  color: var(--navy);
  font-weight: 950;
}

.consult-point-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 4px;
}

.faq-panel {
  overflow: hidden;
}

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

.faq-item {
  padding: 18px;
  border: 1px solid rgba(220, 234, 247, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-item h3 {
  font-size: 1rem;
  line-height: 1.35;
}

.faq-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 680;
  line-height: 1.62;
}

.compact-validation {
  max-width: 100%;
}

.closing-section {
  padding-top: 10px;
}

@media (max-width: 1080px) {
  .mitra-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-content-grid,
  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .trust-strip {
    margin-top: 0;
  }

  .section-title-row.product-title-row,
  .section-title-row {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .hero-trust-list > div {
    grid-template-columns: 38px 1fr;
  }

  .trust-strip-inner,
  .mitra-product-grid,
  .home-content-grid,
  .consult-point-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .mitra-product-card {
    padding: 18px;
  }

  .product-card-top {
    align-items: start;
  }
}
/* =========================================================
   MITRA BENEFIT SECTION
   Pengganti section lama: "Informasi Aman Sebelum Daftar"
========================================================= */

.mitra-benefit-section {
  overflow: hidden;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(242, 184, 75, 0.22),
      transparent 18rem
    ),
    linear-gradient(135deg, #0b2d5c 0%, #0a1d3a 100%) !important;
  border-radius: var(--r);
}

.mitra-benefit-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 34px 34px 26px;
}

.benefit-kicker {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.mitra-benefit-head h2 {
  max-width: 780px;
  margin-top: 14px;
  color: #ffffff;
}

.mitra-benefit-head p {
  max-width: 850px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.75;
}

.mitra-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 34px 34px;
}

.mitra-benefit-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.mitra-benefit-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(242, 184, 75, 0.16);
  color: var(--gold);
  font-weight: 950;
}

.mitra-benefit-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.35;
}

.mitra-benefit-item small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.65;
}

.mitra-benefit-note {
  padding: 20px 34px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.mitra-benefit-note strong {
  color: var(--navy);
}

/* Mengamankan selector lama agar tidak merusak layout baru */
.compact-validation .validation-list > div {
  display: grid;
  grid-template-columns: 40px 1fr;
}

.compact-validation .validation-list > div > div {
  display: block;
  grid-template-columns: initial;
}

/* Responsive */
@media (max-width: 1080px) {
  .mitra-benefit-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mitra-benefit-head .btn {
    width: fit-content;
  }

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

@media (max-width: 620px) {
  .mitra-benefit-head {
    padding: 26px 22px 20px;
  }

  .mitra-benefit-grid {
    grid-template-columns: 1fr;
    padding: 0 22px 26px;
  }

  .mitra-benefit-item {
    grid-template-columns: 42px 1fr;
    padding: 16px;
  }

  .mitra-benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .mitra-benefit-note {
    padding: 18px 22px;
  }
}
/* =========================================================
   SEARCH HERO - SECTION PERTAMA PEMILIHAN TANGGAL
========================================================= */

.search-hero {
  position: relative;
  padding: 52px 0 34px;
}

.search-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.search-hero-copy {
  padding: 12px 0;
}

.search-hero-copy h1 {
  max-width: 640px;
  margin-top: 14px;
}

.search-hero-copy .lead {
  max-width: 620px;
  margin-top: 16px;
}

.search-benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.search-benefit-chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 45, 92, 0.12);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.search-hero-panel {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(220, 234, 247, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 24px;
}

.search-panel-head {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.search-tabs {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
}

.search-tab {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(11, 45, 92, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.search-tab.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 24px rgba(11, 45, 92, 0.18);
}

.search-panel-title strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.search-panel-title small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.departure-search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field label {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 850;
}

.search-action-row {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.nearest-departure-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.mini-departure-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--soft);
  transition: 0.2s ease;
}

.mini-departure-card:hover {
  transform: translateY(-3px);
}

.mini-departure-thumb {
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(145deg, #eef7ff, #ffffff);
  border: 1px solid rgba(11, 45, 92, 0.08);
}

.mini-departure-thumb img {
  width: 100%;
  height: 100%;
  min-height: 122px;
  object-fit: cover;
}

.mini-departure-body {
  display: grid;
  gap: 8px;
}

.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.mini-departure-body h3 {
  font-size: 1rem;
  line-height: 1.3;
}

.mini-route {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.mini-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.mini-bottom strong {
  color: #d31212;
  font-size: 1rem;
  line-height: 1.2;
}

.mini-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-full-soft {
  background: rgba(237, 80, 80, 0.12);
  color: #cf2121;
}

.status-limited-soft {
  background: rgba(46, 188, 121, 0.16);
  color: #0b8a4a;
}

.search-panel-footer {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

@media (max-width: 1080px) {
  .search-hero-shell {
    grid-template-columns: 1fr;
  }

  .departure-search-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .nearest-departure-list,
  .departure-search-grid {
    grid-template-columns: 1fr;
  }

  .mini-departure-card {
    grid-template-columns: 92px 1fr;
  }
}

@media (max-width: 620px) {
  .search-hero {
    padding: 40px 0 24px;
  }

  .search-hero-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .mini-departure-card {
    grid-template-columns: 86px 1fr;
    gap: 12px;
    padding: 10px;
  }

  .mini-departure-thumb img {
    min-height: 112px;
  }

  .mini-bottom {
    flex-direction: column;
    align-items: start;
  }
}
/* =========================================================
   SEARCH HERO LEFT BANNER SLOT
   Mengganti teks besar di kiri menjadi area banner/poster
========================================================= */

.search-banner-slot {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: flex;
  align-items: stretch;
}

.banner-placeholder {
  position: relative;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 30px;
  border: 1px dashed rgba(11, 45, 92, 0.26);
  background:
    radial-gradient(
      circle at 20% 15%,
      rgba(242, 184, 75, 0.2),
      transparent 18rem
    ),
    linear-gradient(
      135deg,
      rgba(234, 245, 255, 0.92),
      rgba(255, 255, 255, 0.72)
    );
  box-shadow: var(--soft);
}

.banner-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(11, 45, 92, 0.08);
  pointer-events: none;
}

.banner-label {
  position: relative;
  z-index: 1;
  width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff7e8;
  border: 1px solid rgba(242, 184, 75, 0.38);
  color: var(--goldDark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 440px;
}

.banner-content strong {
  display: block;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.banner-content small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.banner-size-note {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 45, 92, 0.1);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
}

/* Jika nanti memakai gambar banner */
.banner-placeholder img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1080px) {
  .search-banner-slot,
  .banner-placeholder {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .search-banner-slot,
  .banner-placeholder {
    min-height: 360px;
  }

  .banner-placeholder {
    padding: 22px;
    border-radius: 24px;
  }

  .banner-content strong {
    font-size: 2rem;
  }

  .banner-content small {
    font-size: 0.92rem;
  }
}
/* =========================================================
   FIX POSISI SEARCH HERO
   Banner di atas, panel kategori/jadwal di bawah
========================================================= */

.search-hero {
  padding: 34px 0 46px;
}

/* Ubah dari 2 kolom menjadi 1 kolom */
.search-hero-shell {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
  align-items: stretch !important;
}

/* Area banner dibuat full width horizontal */
.search-banner-slot {
  width: 100%;
  min-height: auto !important;
  display: block !important;
}

/* Placeholder banner dibuat seperti area poster horizontal */
.banner-placeholder {
  width: 100%;
  min-height: clamp(300px, 34vw, 460px) !important;
  aspect-ratio: 16 / 6;
  border-radius: 30px;
}

/* Jika nanti memakai gambar banner asli */
.banner-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Panel kategori tetap seperti desain sekarang, hanya turun ke bawah banner */
.search-hero-panel {
  width: min(100%, 980px);
  margin: 0 auto;
}

/* Filter tetap 3 kolom di desktop */
.departure-search-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Card jadwal tetap 2 kolom agar tidak terlalu melebar */
.nearest-departure-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Tablet */
@media (max-width: 840px) {
  .banner-placeholder {
    min-height: 300px !important;
    aspect-ratio: 16 / 7;
  }

  .departure-search-grid,
  .nearest-departure-list {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .search-hero {
    padding: 28px 0 36px;
  }

  .banner-placeholder {
    min-height: 240px !important;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .search-hero-panel {
    padding: 18px;
    border-radius: 22px;
  }
}

/* =========================================================
   SERVICE SHORTCUT SECTION
   Section shortcut layanan utama sebelum katalog paket
========================================================= */

.service-shortcut-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.service-shortcut-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.service-shortcut-head h2 {
  margin-top: 12px;
  color: var(--navy);
}

.service-shortcut-head p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.7;
}

.service-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.service-shortcut-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid rgba(220, 234, 247, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft);
  backdrop-filter: blur(16px);
  transition: 0.24s ease;
}

.service-shortcut-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(11, 45, 92, 0.16);
  border-color: rgba(242, 184, 75, 0.48);
}

.service-shortcut-card-featured {
  border-color: rgba(242, 184, 75, 0.5);
  box-shadow: 0 20px 44px rgba(183, 116, 53, 0.13);
}

.service-shortcut-image {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(242, 184, 75, 0.2),
      transparent 12rem
    ),
    linear-gradient(145deg, #eef7ff, #ffffff);
}

.service-shortcut-image img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  transition: 0.25s ease;
}

.service-shortcut-card:hover .service-shortcut-image img {
  transform: scale(1.04);
}

.service-shortcut-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.service-shortcut-tag {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7e8;
  border: 1px solid rgba(242, 184, 75, 0.38);
  color: var(--goldDark);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-shortcut-body h3 {
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.service-shortcut-body p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.6;
}

.service-shortcut-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(234, 245, 255, 0.84);
  border: 1px solid rgba(11, 45, 92, 0.14);
  font-size: 0.86rem;
  font-weight: 950;
  transition: 0.2s ease;
}

.service-shortcut-card:hover .service-shortcut-button {
  color: #ffffff;
  background: var(--navy);
}

/* Responsive */
@media (max-width: 900px) {
  .service-shortcut-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .service-shortcut-section {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .service-shortcut-grid {
    grid-template-columns: 1fr;
  }

  .service-shortcut-head {
    text-align: left;
    margin-bottom: 22px;
  }

  .service-shortcut-head p {
    margin-left: 0;
    margin-right: 0;
  }

  .service-shortcut-body {
    padding: 16px;
  }
}
/* =========================================================
   FINAL FIX - BANNER SLIDER FIT TANPA TERPOTONG
========================================================= */

.search-banner-slot {
  width: 100%;
  display: block !important;
  min-height: auto !important;
}

/* Container utama slider */
.banner-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  min-height: clamp(280px, 34vw, 460px);
  overflow: hidden;
  border-radius: 30px;
  background: #f8fbff;
  border: 1px solid rgba(220, 234, 247, 0.9);
  box-shadow: var(--soft);
}

/* Setiap slide menumpuk penuh */
.banner-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.985);
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    transform 0.6s ease;
  background: #f8fbff;
}

.banner-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Kunci utama: poster FIT, tidak crop */
.banner-slider .banner-slide img {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  background: #f8fbff;
}

/* Tombol prev/next */
.banner-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 45, 92, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: 0.2s ease;
}

.banner-nav:hover {
  background: var(--navy);
  color: #ffffff;
}

.banner-prev {
  left: 16px;
}

.banner-next {
  right: 16px;
}

/* Dot indicator */
.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 6;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11, 45, 92, 0.16);
  backdrop-filter: blur(10px);
}

.banner-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: 0.2s ease;
}

.banner-dots button.active {
  width: 26px;
  background: var(--gold);
}

/* Mobile */
@media (max-width: 620px) {
  .banner-slider {
    aspect-ratio: 4 / 3;
    min-height: 260px;
    border-radius: 22px;
  }

  .banner-nav {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }

  .banner-prev {
    left: 10px;
  }

  .banner-next {
    right: 10px;
  }

  .banner-dots {
    bottom: 10px;
  }
}

/* =========================================================
   FINAL FULL WIDTH BANNER SLIDER
   Banner mentok kiri-kanan + gambar tidak terpotong
========================================================= */

.hero-banner-full {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 0 8px;
  overflow: hidden;
}

/* Banner dibuat full viewport */
.hero-banner-full .banner-slider {
  position: relative !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden !important;
  background: #f8fbff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Semua slide nonaktif ditumpuk */
.hero-banner-full .banner-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scale(1) !important;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #f8fbff !important;
}

/* Slide aktif menentukan tinggi banner */
.hero-banner-full .banner-slide.active {
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Gambar fit penuh tanpa crop */
.hero-banner-full .banner-slide img {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #f8fbff !important;
}

/* Tombol navigasi banner */
.hero-banner-full .banner-nav {
  position: absolute !important;
  top: 50% !important;
  z-index: 10 !important;
  width: 46px !important;
  height: 46px !important;
  transform: translateY(-50%) !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #0b2d5c !important;
  font-size: 1.7rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12) !important;
  backdrop-filter: blur(8px) !important;
  transition: 0.2s ease !important;
}

.hero-banner-full .banner-nav:hover {
  background: #0b2d5c !important;
  color: #ffffff !important;
}

.hero-banner-full .banner-prev {
  left: 20px !important;
}

.hero-banner-full .banner-next {
  right: 20px !important;
}

/* Dots banner */
.hero-banner-full .banner-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 18px !important;
  z-index: 11 !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 8px !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(8px) !important;
}

.hero-banner-full .banner-dots button {
  width: 10px !important;
  height: 10px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  cursor: pointer !important;
  transition: 0.25s ease !important;
}

.hero-banner-full .banner-dots button.active {
  width: 28px !important;
  background: #f2b84b !important;
}

/* =========================================================
   SEARCH PANEL DI BAWAH BANNER
========================================================= */

.search-hero {
  padding: 10px 0 42px !important;
}

.search-hero-shell {
  display: block !important;
  grid-template-columns: 1fr !important;
}

.search-hero-panel {
  width: min(100%, 980px) !important;
  margin: 0 auto !important;
}

/* Supaya filter tetap rapi */
.departure-search-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.nearest-departure-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* Thumbnail card kecil */
.mini-departure-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .departure-search-grid,
  .nearest-departure-list {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .hero-banner-full {
    padding: 16px 0 4px;
  }

  .hero-banner-full .banner-nav {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.3rem !important;
  }

  .hero-banner-full .banner-prev {
    left: 10px !important;
  }

  .hero-banner-full .banner-next {
    right: 10px !important;
  }

  .hero-banner-full .banner-dots {
    bottom: 10px !important;
  }

  .search-hero {
    padding: 10px 0 32px !important;
  }
}

@media (max-width: 520px) {
  .hero-banner-full .banner-nav {
    width: 34px !important;
    height: 34px !important;
  }

  .hero-banner-full .banner-dots {
    padding: 7px 10px !important;
  }

  .hero-banner-full .banner-dots button {
    width: 8px !important;
    height: 8px !important;
  }

  .hero-banner-full .banner-dots button.active {
    width: 22px !important;
  }
}

/* =========================================================
   FINAL FIX V2 - BANNER FULL WIDTH TANPA TERPOTONG
   Catatan:
   - Menghapus efek crop dari rasio tinggi tetap.
   - Tinggi slider mengikuti tinggi gambar aktif.
   - Banner tetap full-width mentok kiri-kanan viewport.
========================================================= */

html,
body {
  overflow-x: hidden !important;
}

.hero-banner-full {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
}

.hero-banner-full .banner-slider {
  position: relative !important;
  width: 100vw !important;
  max-width: 100vw !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  line-height: 0 !important;
}

.hero-banner-full .banner-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  visibility: hidden !important;
  display: block !important;
  transform: none !important;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease !important;
  background: transparent !important;
  line-height: 0 !important;
}

.hero-banner-full .banner-slide.active {
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
}

.hero-banner-full .banner-slide img {
  position: relative !important;
  inset: auto !important;
  z-index: 1 !important;
  display: block !important;
  width: 100vw !important;
  max-width: 100vw !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
}

/* Slide nonaktif tetap mengikuti ukuran area aktif */
.hero-banner-full .banner-slide:not(.active) img {
  width: 100vw !important;
  height: auto !important;
}

/* Tombol navigasi */
.hero-banner-full .banner-nav {
  position: absolute !important;
  top: 50% !important;
  z-index: 10 !important;
  width: 46px !important;
  height: 46px !important;
  transform: translateY(-50%) !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--navy) !important;
  font-size: 1.7rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.13) !important;
  backdrop-filter: blur(10px) !important;
  transition: 0.2s ease !important;
}

.hero-banner-full .banner-nav:hover {
  background: var(--navy) !important;
  color: #ffffff !important;
}

.hero-banner-full .banner-prev {
  left: 18px !important;
}

.hero-banner-full .banner-next {
  right: 18px !important;
}

/* Dot indicator */
.hero-banner-full .banner-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 16px !important;
  z-index: 11 !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 8px 12px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(8px) !important;
  line-height: 1 !important;
}

.hero-banner-full .banner-dots button {
  width: 10px !important;
  height: 10px !important;
  min-width: 10px !important;
  min-height: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.85) !important;
  cursor: pointer !important;
  transition: 0.25s ease !important;
}

.hero-banner-full .banner-dots button.active {
  width: 28px !important;
  background: var(--gold) !important;
}

/* Panel filter di bawah banner */
.search-hero {
  position: relative !important;
  z-index: 2 !important;
  padding: 20px 0 42px !important;
}

.search-hero-shell {
  display: block !important;
  grid-template-columns: 1fr !important;
}

.search-hero-panel {
  width: min(100%, 980px) !important;
  margin: 0 auto !important;
}

.departure-search-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.nearest-departure-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

/* Gambar kecil pada card tidak menyebabkan 404 jika placeholder belum ada */
.mini-departure-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 900px) {
  .departure-search-grid,
  .nearest-departure-list {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .hero-banner-full .banner-nav {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.3rem !important;
  }

  .hero-banner-full .banner-prev {
    left: 10px !important;
  }

  .hero-banner-full .banner-next {
    right: 10px !important;
  }

  .hero-banner-full .banner-dots {
    bottom: 10px !important;
  }

  .search-hero {
    padding: 14px 0 32px !important;
  }
}

@media (max-width: 520px) {
  .hero-banner-full .banner-nav {
    width: 34px !important;
    height: 34px !important;
  }

  .hero-banner-full .banner-dots {
    padding: 7px 10px !important;
  }

  .hero-banner-full .banner-dots button {
    width: 8px !important;
    height: 8px !important;
    min-width: 8px !important;
    min-height: 8px !important;
  }

  .hero-banner-full .banner-dots button.active {
    width: 22px !important;
  }
}
/* =========================================================
   NAVBAR SUBMENU
   Submenu Paket -> Katalog
========================================================= */

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

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.submenu-arrow {
  font-size: 0.72rem;
  line-height: 1;
  opacity: 0.75;
  transition: transform 0.2s ease;
}

.has-submenu:hover .submenu-arrow,
.has-submenu:focus-within .submenu-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 100;
  min-width: 180px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 234, 247, 0.92);
  box-shadow: 0 18px 42px rgba(11, 45, 92, 0.14);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.has-submenu:hover .nav-dropdown,
.has-submenu:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 11px 13px;
  border-radius: 13px;
  color: var(--navy2);
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--navy);
  background: var(--sky);
}

/* Mobile submenu */
@media (max-width: 840px) {
  .nav-item {
    display: block;
  }

  .nav-parent {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    gap: 4px;
    min-width: 100%;
    margin-top: 4px;
    padding: 6px;
    border-radius: 16px;
    background: rgba(234, 245, 255, 0.72);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown a {
    padding-left: 18px;
  }

  .submenu-arrow {
    transform: none !important;
  }
}
/* =========================================================
   NAVBAR DROPDOWN FIX
   Paket -> Katalog
========================================================= */

.site-header,
.navbar,
.nav-menu {
  overflow: visible !important;
}

.site-header {
  z-index: 9999 !important;
}

.nav-menu {
  position: relative;
  align-items: center;
}

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

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy2);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.nav-parent:hover,
.nav-item.open .nav-parent,
.has-submenu:hover .nav-parent {
  background: var(--sky);
}

.submenu-arrow {
  font-size: 0.72rem;
  line-height: 1;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.nav-item.open .submenu-arrow,
.has-submenu:hover .submenu-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 10000;
  min-width: 180px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(220, 234, 247, 0.95);
  box-shadow: 0 18px 42px rgba(11, 45, 92, 0.18);
  backdrop-filter: blur(16px);

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

/* Bridge agar dropdown tidak hilang saat cursor turun */
.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  top: -14px;
  width: 100%;
  height: 14px;
}

.has-submenu:hover .nav-dropdown,
.has-submenu:focus-within .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: block;
  padding: 11px 13px;
  border-radius: 13px;
  color: var(--navy2);
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  color: var(--navy);
  background: var(--sky);
}

/* Mobile */
@media (max-width: 840px) {
  .nav-menu {
    overflow: visible !important;
  }

  .nav-item {
    display: block;
    width: 100%;
  }

  .nav-parent {
    width: 100%;
    justify-content: space-between;
    padding: 13px 14px;
  }

  .nav-dropdown {
    position: static;
    display: none;
    min-width: 100%;
    margin-top: 4px;
    padding: 6px;
    border-radius: 16px;
    background: rgba(234, 245, 255, 0.72);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-item.open .nav-dropdown {
    display: grid;
    gap: 4px;
  }

  .nav-dropdown a {
    padding-left: 18px;
  }
}
/* =========================================================
   CATALOG BUTTON FINAL STYLE
   Lihat Detail biru + Chat WA hijau
========================================================= */

.catalog-action-row {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 10px;
  margin-top: 14px;
  align-items: center;
}

.catalog-detail-btn,
.catalog-wa-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 950;
  line-height: 1;
  transition: 0.2s ease;
}

.catalog-detail-btn {
  color: #ffffff !important;
  background: var(--navy) !important;
  border: 1px solid var(--navy) !important;
  box-shadow: 0 12px 24px rgba(11, 45, 92, 0.22);
}

.catalog-detail-btn:hover {
  transform: translateY(-2px);
  background: #071f47 !important;
}

.catalog-wa-btn {
  width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0 !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  background: #25d366 !important;
  border: 1px solid #25d366 !important;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
}

.catalog-wa-btn:hover {
  transform: translateY(-2px);
  background: #1ebe5d !important;
}

.catalog-wa-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.catalog-detail-btn {
  color: #ffffff !important;
  background: var(--navy) !important;
  border: 1px solid var(--navy) !important;
  box-shadow: 0 12px 24px rgba(11, 45, 92, 0.22);
}

.catalog-detail-btn:hover {
  transform: translateY(-2px);
  background: #071f47 !important;
}

.catalog-wa-btn:hover {
  transform: translateY(-2px);
  background: #1ebe5d !important;
}

/* Fallback jika HTML lama masih sempat terbaca */
.package-bottom .chat-mini {
  color: #ffffff !important;
  background: var(--navy) !important;
  border-color: var(--navy) !important;
}

.package-bottom .arrow-round {
  width: auto !important;
  min-width: 94px !important;
  height: 44px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: #25d366 !important;
  font-size: 0 !important;
}

.package-bottom .arrow-round::before {
  content: "Chat WA";
  font-size: 0.82rem;
  font-weight: 950;
}

@media (max-width: 620px) {
  .catalog-action-row {
    grid-template-columns: 1fr 52px;
  }

  .catalog-wa-btn {
    width: 52px;
    height: 52px;
    min-height: 52px;
  }
}
/* =========================================================
   NAVBAR HAJI & UMROH DROPDOWN ADDITION
========================================================= */

.nav-parent.active {
  background: var(--sky);
}

.nav-dropdown-wide {
  min-width: 260px;
}

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 840px) {
  .nav-dropdown-wide {
    min-width: 100%;
  }

  .nav-menu.open {
    max-height: calc(100dvh - 112px);
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
}
/* =========================================================
   NAVBAR INFORMASI DROPDOWN
========================================================= */

.nav-dropdown-info {
  min-width: 210px;
}

@media (max-width: 840px) {
  .nav-dropdown-info {
    min-width: 100%;
  }
}
/* =========================================================
   PRODUCT MANAGEMENT UI FINAL ADDITION
   Mendukung data produk dari packages.json:
   - thumbnail
   - status produk
   - active/featured/nearest/shortcut via JS
   - kategori produk
========================================================= */

/* Container badge di atas thumbnail produk */
.package-badge-row {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

/* Override .package-tag lama agar tidak bentrok saat berada di badge row */
.package-badge-row .package-tag {
  position: static !important;
  left: auto !important;
  top: auto !important;
  max-width: 58%;
  color: #ffffff;
  background: var(--navy);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badge status produk global */
.product-status {
  display: inline-flex;
  width: max-content;
  max-width: 46%;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(11, 45, 92, 0.12);
}

/* Status: tersedia */
.status-available {
  color: #0b8a4a;
  background: rgba(46, 188, 121, 0.16);
  border: 1px solid rgba(46, 188, 121, 0.26);
}

/* Status: seat terbatas */
.product-status.status-limited,
.package-status.status-limited {
  color: #765723;
  background: #fff7e8;
  border: 1px solid rgba(242, 184, 75, 0.38);
}

/* Status: full seat */
.product-status.status-full,
.package-status.status-full {
  color: #cf2121;
  background: rgba(237, 80, 80, 0.12);
  border: 1px solid rgba(237, 80, 80, 0.24);
}

/* Status: ditutup */
.status-closed {
  color: #5d718a;
  background: rgba(93, 113, 138, 0.12);
  border: 1px solid rgba(93, 113, 138, 0.22);
}

/* Status: segera hadir */
.status-coming-soon {
  color: var(--navy);
  background: var(--sky);
  border: 1px solid rgba(43, 110, 168, 0.18);
}

/* Status default untuk home card lama */
.package-status.status-available {
  color: #0b8a4a;
  background: rgba(46, 188, 121, 0.16);
  border: 1px solid rgba(46, 188, 121, 0.26);
}

.package-status.status-closed {
  color: #5d718a;
  background: rgba(93, 113, 138, 0.12);
  border: 1px solid rgba(93, 113, 138, 0.22);
}

.package-status.status-coming-soon {
  color: var(--navy);
  background: var(--sky);
  border: 1px solid rgba(43, 110, 168, 0.18);
}

/* Kategori kecil di card katalog */
.catalog-product-category {
  width: max-content;
  max-width: 100%;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(234, 245, 255, 0.78);
  border: 1px solid rgba(43, 110, 168, 0.12);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
}

/* Ringkasan produk katalog agar tinggi card lebih stabil */
.catalog-product-summary {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.55;
}

/* Card katalog dibuat lebih stabil saat data dinamis */
.catalog-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.catalog-product-body {
  display: grid;
  align-content: space-between;
  min-height: 100%;
}

/* Thumbnail katalog */
.catalog-product-image {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(242, 184, 75, 0.14),
      transparent 12rem
    ),
    linear-gradient(145deg, #eef7ff, #ffffff);
}

.catalog-product-image img {
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.catalog-product-card:hover .catalog-product-image img {
  transform: scale(1.04);
}

/* Placeholder notice di grid dinamis agar tidak hanya menempati 1 kolom */
.nearest-departure-list > .notice,
.service-shortcut-grid > .notice,
.mitra-product-grid > .notice,
.catalog-grid > .notice {
  grid-column: 1 / -1;
}

/* Tombol detail kecil di card Paket Pilihan homepage */
.mitra-product-card .chat-mini {
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: -4px;
  color: var(--navy);
  background: rgba(234, 245, 255, 0.76);
  border: 1px solid rgba(43, 110, 168, 0.14);
}

.mitra-product-card .chat-mini:hover {
  color: #ffffff;
  background: var(--navy);
  transform: translateY(-2px);
}

/* Anchor card keberangkatan terdekat */
a.mini-departure-card {
  color: inherit;
}

a.mini-departure-card:hover h3 {
  color: var(--blue);
}

/* Status pada mini card agar konsisten */
.status-full-soft {
  background: rgba(237, 80, 80, 0.12) !important;
  color: #cf2121 !important;
  border: 1px solid rgba(237, 80, 80, 0.18);
}

.status-limited-soft {
  background: rgba(46, 188, 121, 0.16) !important;
  color: #0b8a4a !important;
  border: 1px solid rgba(46, 188, 121, 0.22);
}

/* Empty state / notice agar lebih rapi di section dinamis */
[data-nearest-packages] .notice,
[data-service-shortcuts] .notice,
[data-featured-packages] .notice {
  width: 100%;
  text-align: center;
}

/* Mobile adjustment */
@media (max-width: 620px) {
  .package-badge-row {
    left: 10px;
    right: 10px;
    top: 10px;
    gap: 6px;
  }

  .package-badge-row .package-tag,
  .product-status {
    max-width: 50%;
    padding: 5px 8px;
    font-size: 0.68rem;
  }

  .catalog-product-category {
    font-size: 0.72rem;
  }

  .catalog-product-summary {
    font-size: 0.86rem;
  }
}
/* =========================================================
   SPLIT CATALOG PAGE
   Untuk halaman haji.html, umrah.html, tabungan-umroh.html
========================================================= */

.split-catalog-hero {
  padding: 72px 0 44px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(242, 184, 75, 0.18),
      transparent 24rem
    ),
    linear-gradient(135deg, rgba(234, 245, 255, 0.72), rgba(255, 255, 255, 0.5));
  border-bottom: 1px solid rgba(220, 234, 247, 0.82);
}

.split-catalog-hero h1 {
  max-width: 820px;
  margin-top: 16px;
}

.split-catalog-hero .lead {
  max-width: 760px;
  margin-top: 14px;
}

.split-filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 220px 180px 180px;
  gap: 12px;
  padding: 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(220, 234, 247, 0.9);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft);
  backdrop-filter: blur(16px);
}

.split-filter-bar-compact {
  grid-template-columns: minmax(240px, 1fr) 220px 180px;
}

.split-catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 18px;
  color: var(--navy);
}

.split-catalog-grid {
  align-items: stretch;
}

.split-catalog-grid > .notice {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .split-filter-bar,
  .split-filter-bar-compact {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .split-catalog-hero {
    padding: 52px 0 34px;
  }

  .split-filter-bar,
  .split-filter-bar-compact {
    grid-template-columns: 1fr;
    padding: 14px;
  }
}
