/* ---------- FLOATING BUTTONS ---------- */
.floating-btns {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.floating-btns:hover {
  opacity: 1;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #004aad, #ff7b00);
  color: #fff;
  border-radius: 50px;
  padding: 15px;
  width: 55px;
  height: 55px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
}

.float-btn i {
  font-size: 20px;
  transition: transform 0.4s ease;
}

.float-btn span {
  position: absolute;
  right: 55px;
  background: rgba(0, 0, 0, 0.85);
  padding: 8px 20px 8px 14px;
  border-radius: 30px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  backdrop-filter: blur(4px);
}

/* Hover animation: slide text */
.float-btn:hover span {
  opacity: 1;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.1s;
  padding-right: 20px;
}

/* Hover lift effect */
.float-btn:hover {
  transform: scale(1.1) translateX(-5px);
  box-shadow: 0 10px 25px rgba(255, 128, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* Specific colors per button */
.float-btn.call {
  background: linear-gradient(135deg, #0057e7, #ff8800);
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #ff8800);
}

.float-btn.help {
  background: linear-gradient(135deg, #007bff, #ff7b00);
}

/* Floating animation */
@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.float-btn {
  animation: floaty 3s ease-in-out infinite;
}
