.sticky-contact-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;                /* Bottom-right positioning */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.sticky-contact-buttons a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 24px;
  color: white;
  position: relative;         /* For label positioning */
  background-color: #25D366;  /* WhatsApp green for both */
}

.sticky-contact-buttons a:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Small branch label under each WhatsApp icon */
.sticky-contact-buttons .btn-label {
  position: absolute;
  bottom: -18px;
  font-size: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 2px 6px;
  border-radius: 10px;
  white-space: nowrap;
  pointer-events: none;
}