/* === Sticky Header === */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #003366;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  padding: 12px 20px; /* Diperbesar */
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.sticky-header.show {
  transform: translateY(0);
}

.sticky-header .header-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.sticky-header .header-link:hover {
  opacity: 0.9;
}

/* Logo dan Masero */
.sticky-header .logo-header {
  height: 48px; /* sebelumnya terlalu kecil */
  margin-right: 6px;
}

.sticky-header .logo-masero {
  height: 46px;
  margin-right: 8px;
}

/* Judul Header */
.sticky-header .title-header {
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.2;
}

.title-header .kab {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.title-header .nama {
  font-size: 23px;
  font-weight: 700;
  color: #ffffff;
}

/* === Sticky Bottom Tetap === */
.sticky-bottom {
  display: none;
  position: fixed;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  transition: transform 0.3s ease;
  z-index: 999;
  padding: 0;
}


.sticky-bottom.show {
  display: block;
  transform: translateX(-50%) translateY(0%);
}


.sticky-bottom .bottom-box {
  background: #e7dfdf transparent;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 10px 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.sticky-bottom .bottom-box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #000;
  text-decoration: none;
  width: 75px;
  height: 60px;
  border-radius: 12px;
  transition: transform 0.2s;
}

.sticky-bottom .bottom-box a:hover {
  transform: translateY(-3px);
}

.sticky-bottom .bottom-box i {
  font-size: 16px;
  margin-bottom: 4px;
}

.sticky-bottom .bottom-box a.e-kinerja { background-color: #007BFF; }
.sticky-bottom .bottom-box a.berita    { background-color: #eeb155; }
.sticky-bottom .bottom-box a.kontak    { background-color: #fff9c4; }
.sticky-bottom .bottom-box a.ppid      { background-color: #c8e6c9; }
.sticky-bottom .bottom-box a.satudata  { background-color: #f0f4c3; }
.sticky-bottom .bottom-box a.lainnya   { background-color: #f8bbd0; }


/* === Responsive Fixes === */
@media (max-width: 600px) {
  .sticky-header {
    padding: 10px 12px;
  }

  .sticky-header .logo-header {
    height: 37px;
    margin-right: 1px;
  }

  .sticky-header .logo-masero {
    height: 36px;
    margin-right: 2px;
  }

  .title-header .kab {
    font-size: 10px;
  }

  .title-header .nama {
    font-size: 18.4px;
  }

  .sticky-bottom {
    bottom: 100px;
  }

  .sticky-bottom .bottom-box {
    gap: 4px;
    padding: 8px 10px;
  }

  .sticky-bottom .bottom-box a {
    width: 52px;
    height: 50px;
    font-size: 8px;
  }

  .sticky-bottom .bottom-box i {
    font-size: 14px;
  }
}
