.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.call-btn,
.whatsapp-btn {
  width: 50px;
  height: 50px;
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  text-decoration: none;
}

/* Call button in red */
.call-btn {
  background-color: #ffffff;
  border: 2px solid #E73A34;
}
.call-btn:hover {
  transform: scale(1.1);
  background-color: #d7d7d7;
  border: 2px solid #e74c34;
}

/* WhatsApp button in green */
.whatsapp-btn {
  background-color: #25D366;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #1da851;
}
