.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

/* Main floating button */
.floating-contact-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background: #c93a5a !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  padding: 0;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.floating-contact-toggle:hover,
.floating-contact-toggle:focus,
.floating-contact-toggle:active,
.floating-contact-toggle:visited {
  background: #c93a5a !important;
  color: #fff !important;
  outline: none;
  text-decoration: none;
  box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
}

.plus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  transform: translateY(-1px);
}

.floating-contact.active .floating-contact-toggle {
  transform: rotate(45deg);
  background: #ca3d5b !important;
}

/* Contact options container */
.floating-contact-options {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

/* Each option */
.fc-option {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none !important;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.fc-option:hover,
.fc-option:focus,
.fc-option:active,
.fc-option:visited {
  text-decoration: none !important;
}

/* Label */
.fc-label {
  background: #fff;
  color: #333;
  padding: 6px 20px;
  border-radius: 20px 0 0 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: -2px 2px 5px rgb(0 0 0 / 10%);
  margin-right: -10px;
  z-index: 1;
  white-space: nowrap;
}

/* Icon circle */
.fc-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgb(0 0 0 / 20%);
  z-index: 2;
  flex-shrink: 0;
}

.fc-icon-circle img {
  width: 24px;
  height: 24px;
  display: block;
}

/* Show options when active */
.floating-contact.active .floating-contact-options {
  pointer-events: auto;
}

.floating-contact.active .fc-option {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Animation delays */
.floating-contact.active .fc-call {
  transition-delay: 0.1s;
}

.floating-contact.active .fc-whatsapp {
  transition-delay: 0.2s;
}

.floating-contact.active .fc-mail {
  transition-delay: 0.3s;
}

/* Mobile */
@media (width <= 768px) {
  .floating-contact {
    right: 15px;
    bottom: 15px;
  }

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

  .plus-icon {
    font-size: 26px;
  }

  .fc-label {
    font-size: 13px;
    padding: 5px 10px;
  }

  .fc-icon-circle {
    width: 36px;
    height: 36px;
  }

  .fc-icon-circle img {
    width: 20px;
    height: 20px;
  }
}