/* Floating Contact Menu */
.floating-contact-menu {
  position: fixed;
  left: 30px;
  bottom: 40px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.floating-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.floating-btn:active {
  transform: translateY(-2px) scale(1.05);
}

.whatsapp-btn {
  background: #0ABBED;
}

.whatsapp-btn:hover {
  background: #106DB3;
}

/* Responsive */
@media (max-width: 768px) {
  .floating-contact-menu {
    left: 20px;
    gap: 12px;
  }
  
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .floating-contact-menu {
    left: 15px;
    gap: 10px;
  }
  
  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}
