﻿.floating-contact-widget {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-contact-widget a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  background: #800000;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.floating-contact-widget a:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.floating-contact-widget .contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

@media (max-width: 768px) {
  .floating-contact-widget {
    left: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .floating-contact-widget a {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .floating-contact-widget {
    left: 10px;
    bottom: 10px;
    gap: 8px;
  }

  .floating-contact-widget a {
    width: 44px;
    height: 44px;
  }
}
