/* Glowing phone link for Remote Support - Sky Blue & Forest Green */
.phone-glow {
  color: #00BFFF !important;
  font-weight: 600;
  font-size: 1.5rem;
  text-shadow: 0 0 5px #87CEEB, 0 0 10px #00BFFF, 0 0 20px #00BFFF, 0 0 30px #228B22;
  animation: phonePulse 2s ease-in-out infinite alternate;
  text-decoration: none;
}
.phone-glow:hover {
  color: #87CEEB !important;
  text-decoration: none;
}
@keyframes phonePulse {
  from { text-shadow: 0 0 5px #87CEEB, 0 0 10px #00BFFF, 0 0 20px #00BFFF, 0 0 30px #228B22; }
  to { text-shadow: 0 0 15px #87CEEB, 0 0 30px #00BFFF, 0 0 60px #00BFFF, 0 0 90px #228B22; }
}
