/* Urgent Call Button — sticky CTA */
.urgent-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(229, 62, 62, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: urgentSlideIn 0.4s ease-out;
}
.urgent-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(229, 62, 62, 0.5);
  color: #fff;
  text-decoration: none;
}

.urgent-call-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.urgent-call-btn__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  background: rgba(229, 62, 62, 0.3);
  animation: urgentPulse 2s infinite;
  pointer-events: none;
}

.urgent-call-btn__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.urgent-call-btn__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.urgent-call-btn__sub {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 400;
}

@keyframes urgentPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  70% { transform: translate(-50%, -50%) scale(1.15); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0; }
}

@keyframes urgentSlideIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile: permanent bottom bar */
@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
  .urgent-call-btn {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    justify-content: center;
    padding: 14px 20px;
    gap: 12px;
    animation: none;
  }
  .urgent-call-btn__title {
    font-size: 16px;
  }
  .urgent-call-btn__sub {
    font-size: 12px;
  }
  .urgent-call-btn__pulse {
    display: none;
  }
}
