/* Floating Buttons CSS */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  background-color: #EE6602;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  font-size: 22px;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 208, 0, 0.776);
}

.whatsapp {
  background-color: #EE6602; /* WhatsApp green */
}

.call {
  background-color: #EE6602; /* Your brand color */
}
