/* Phone number link styles */
a[href^='tel:'] {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

a[href^='tel:']:hover {
  color: #0072b5;
  transform: translateY(-2px);
}

.contact-item a[href^='tel:'],
.footer-contact-item a[href^='tel:'] {
  font-weight: 500;
  position: relative;
}

.contact-item a[href^='tel:']:after,
.footer-contact-item a[href^='tel:']:after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #0072b5;
  transition: width 0.3s ease;
}

.contact-item a[href^='tel:']:hover:after,
.footer-contact-item a[href^='tel:']:hover:after {
  width: 100%;
}

/* Make telephone links more visible on mobile */
@media (max-width: 768px) {
  a[href^='tel:'] {
    color: #0072b5;
  }
}
