/* Floating WhatsApp and Call buttons */
.floating-actions {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10000;
}

.floating-actions .fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.floating-actions .fab:focus {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.floating-actions .fab:hover {
  transform: translateY(-1px);
}

.floating-actions .fab--whatsapp {
  background-color: #25D366; /* WhatsApp brand green */
}

.floating-actions .fab--whatsapp:hover {
  filter: brightness(0.95);
}

.floating-actions .fab--call {
  background-color: #E60023; /* Red for Call button */
}

.floating-actions .fab--call:hover {
  filter: brightness(1.06);
}

.floating-actions .fab i {
  font-size: 24px; /* Ensure WhatsApp and Call icons are identical size */
  line-height: 1;
}

@media (max-width: 575.98px) {
  .floating-actions {
    top: auto;
    right: 16px;
    bottom: 16px;
    left: auto;
    transform: none;
    gap: 10px;
  }
  .floating-actions .fab {
    width: 52px;
    height: 52px;
  }
}

@media print {
  .floating-actions { display: none; }
}