.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.floating-contact a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.floating-contact a.call-btn {
  background-color: #0a66c2; /* Call Blue */
}

.floating-contact a.whatsapp-btn {
  background-color: #25d366; /* WhatsApp Green */
}

.floating-contact a:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .floating-contact a {
    width: 45px;
    height: 45px;
  }
  .floating-contact svg {
    width: 20px;
    height: 20px;
  }
}