 /* Base styles for all buttons */
 .float-btn {
  position: fixed;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #FFF;
  text-align: center;
  font-size: 25px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* WhatsApp button */
.float-whatsapp {
  bottom: 20px;
  background-color: #25d366;
}

/* Email button */
.float-email {
  bottom: 80px;
  background-color: #fed55f;
}

/* Phone button */
.float-phone {
  bottom: 140px;
  background-color: #00a2ff;
}

/* Hover effects */
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

/* Tablet and desktop styles */
@media (min-width: 768px) {
  .float-btn {
      width: 60px;
      height: 60px;
      font-size: 30px;
      left: 30px;
  }
  
  .float-whatsapp {
      bottom: 30px;
  }
  
  .float-email {
      bottom: 105px;
  }
  
  .float-phone {
      bottom: 180px;
  }
}

/* Extra large screens */
@media (min-width: 1440px) {
  .float-btn {
      left: 40px;
  }
}