/* ============================================
   FULL WIDTH MEGA MENU STYLE (EFEK HORDENG)
============================================ */
.mega-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;

  /* WARNA BIRU LEBIH TERANG + TRANSPARAN */
  background: rgba(32, 50, 110, 0.82);
  backdrop-filter: blur(10px);

  /* BAYANGAN MELAYANG */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.30);

  padding: 35px 0;
  opacity: 0;

  transition: top 0.55s cubic-bezier(.25, .46, .45, .94),
    opacity 0.35s ease;

  z-index: 1200;

  /* FIX SCROLL HP */
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  /* Biar bagian bawah tidak kepotong */
  padding-bottom: 140px;
}

/* Saat muncul (turun seperti hordeng) */
.mega-menu.show {
  top: 75px;
  opacity: 1;
}

/* TEKS HEAD PEMBUKA (harus di luar .mega-menu) */
.mega-head-title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  text-align: center;
}

/* Konten */
.mega-menu-content {
  color: white;
}

.mega-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffd857;
}

.mega-desc {
  font-size: 14px;
  opacity: 0.85;
}

/* Tombol / Link */
.mega-link {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #14214C;
  background: #ffd857;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.25s ease;
}

/* Hover */
.mega-link:hover {
  background: #ffe488;
  color: #000;
  transform: translateY(-2px);
}

/* Hindari hover default Bootstrap */
.nav-item.dropdown:hover .dropdown-menu {
  display: none !important;
}

/* Narasi */
.narasi-layanan {
  align-items: center;
  text-align: justify;
}


@media (max-width: 480px) {
.mega-menu {
    position: fixed !important;
    left: 0;
    width: 100%;
    z-index: 1 !important;

    /* Tinggi panel */
    max-height: 80vh !important;
    height: 80vh !important;
    margin-top: 135px !important;
    background: rgba(32, 50, 110, 0.90);
    backdrop-filter: blur(10px);

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    opacity: 0;
    border-radius: 0 0 18px 18px;
    transition: top 0.45s ease, opacity 0.35s ease;
    top: -100% !important;
  }

  .mega-menu.show {
    top: 0 !important;
    opacity: 1 !important;
    z-index: 9999 !important;
  }

  /* Rata tengah (tetap sama) */
  .mega-menu-content,
  .mega-menu .col-md-4 {
    text-align: center !important;
  }

  .mega-title {
    font-size: 13px !important;
  }

  .mega-desc {
    font-size: 12px !important;
  }

  .mega-link {
    font-size: 12px !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
  }

  .mega-head-title {
    font-size: 14px !important;
    text-align: center !important;
  }
}