/* ===== TOMBOL MELAYANG CEK TARIF - ATLAS KARGO ===== */
.floating-btn-tarif {
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 99999;
  background-color: #cc0000;
  color: #ffffff !important;
  padding: 13px 22px;
  border-radius: 50px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 20px rgba(180, 0, 0, 0.45);
  display: none;
  align-items: center;
  gap: 8px;
  animation: float-up-down 3s ease-in-out infinite;
  transition: background-color 0.2s, transform 0.2s;
}

.floating-btn-tarif:hover {
  background-color: #aa0000;
  transform: translateY(-3px) scale(1.03);
}

@keyframes float-up-down {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

.home .floating-btn-tarif,
.front-page .floating-btn-tarif {
  display: flex;
}

@media (max-width: 600px) {
  .floating-btn-tarif {
    bottom: 50px;
    right: 14px;
    padding: 11px 17px;
    font-size: 14px;
  }
}
/* Tambahkan DI BAWAH ini */
html {
  scroll-behavior: smooth;
}