.callButton {
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.callButton:hover {
  transform: scale(1.1);
}

.callButton:active {
  transform: scale(0.95);
}

/* Simple pulse animation */
.callButton::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--cinnamon-satin);
  border-radius: 50%;
  opacity: 0;
  animation: simplePulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes simplePulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.bg {
  transition: fill-opacity 0.2s ease;
}

.callIcon {
  transition: all 0.2s ease;
}

.callButton:hover .bg {
  fill-opacity: 0.25;
}

.callButton:hover .callIcon {
  fill: var(--cinnamon-satin);
}
