/* Floating Call Button Styles */
#floating-call-button {
  position: fixed;
  bottom: 20px;
  z-index: 9999;
  animation: fcb-pulse 2s infinite;
}

#floating-call-button.fcb-left {
  left: 20px;
}

#floating-call-button.fcb-right {
  right: 20px;
}

.fcb-link {
  display: block;
  width: 52px; /* Reduced from 60px */
  height: 52px; /* Reduced from 60px */
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.fcb-link:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.6);
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.fcb-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.fcb-link:hover:before {
  left: 100%;
}

.fcb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; /* Reduced from 28px */
  height: 24px; /* Reduced from 28px */
  display: flex;
  align-items: center;
  justify-content: center;
}

.fcb-icon svg {
  width: 100%;
  height: 100%;
  fill: white;
}

/* Remove the img-specific styles */
.fcb-icon img {
  display: none;
}

#fcb-preview-button .fcb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#fcb-preview-button .fcb-icon svg {
  width: 100%;
  height: 100%;
  fill: white;
}

@keyframes fcb-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #floating-call-button {
    bottom: 15px;
  }

  #floating-call-button.fcb-left {
    left: 15px;
  }

  #floating-call-button.fcb-right {
    right: 15px;
  }

  .fcb-link {
    width: 48px; /* Reduced from 55px */
    height: 48px; /* Reduced from 55px */
  }

  .fcb-icon {
    width: 22px; /* Reduced from 25px */
    height: 22px; /* Reduced from 25px */
  }
}

@media (max-width: 480px) {
  .fcb-link {
    width: 45px; /* Reduced from 50px */
    height: 45px; /* Reduced from 50px */
  }

  .fcb-icon {
    width: 20px; /* Reduced from 22px */
    height: 20px; /* Reduced from 22px */
  }
}
