.fab-container {
  position: relative;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  transition: all 0.2s ease-in-out;
}

.fab-main {
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  padding-bottom: 2px;
}

.fab-main:hover {
  transform: scale(1.03);
  transition: all 0.2s ease-in-out;
}

.fab-main span {
  font-size: 12px;
  font-weight: 600;
}

.fab-main .fab,
.fab-main .fas {
  font-size: 24px;
}

.fab-main.whatsapp .fab {
  color: #25d366;
}

.fab-main.phone .fas {
  color: #007bff;
}

.fab-main.home .fas {
  color: #6c757d;
}

.fab-main.transaksi .fas {
  color: #fd7e14;
}

.fab-buttons {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 10px;
  flex-direction: column;
  width: 200px;
}

.fab-btn {
  font-weight: 600;
  border-radius: 20px;
  padding: 10px 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: white !important;
}

.fab-btn.whatsapp {
  background: rgb(29, 180, 84);
}

.fab-btn.phone {
  background: rgb(0, 123, 255);
}

.fab-btn .fab,
.fab-btn .fas {
  font-size: 20px;
}
