/* Fixed Call Button Styles */
.fixed-call-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: #00a887;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.fixed-call-button:hover {
  transform: scale(1.1);
  background: #008c6f;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.fixed-call-button svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  }
  100% {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
}

/* Mobile adaptation */
@media (max-width: 768px) {
  .fixed-call-button {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .fixed-call-button svg {
    width: 26px;
    height: 26px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .fixed-call-button {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .fixed-call-button svg {
    width: 24px;
    height: 24px;
  }
}