/* Enhanced Call Icon Styling */
.header-quick-contact .fas.fa-phone {
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  transform: translate(0.5px, 0.5px); /* Fine-tune position */
}

/* Add subtle ripple effect on hover */
.header-quick-contact a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.5s, height 0.5s, opacity 0.5s;
}

/* Ensures consistent box model for the icon containers */
.header-quick-contact a {
  box-sizing: border-box;
  padding: 0;
}

.header-quick-contact a:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

/* Improved mobile styling */
@media screen and (max-width: 480px) {
  .header-quick-contact {
    margin-right: 5px;
  }

  .header-quick-contact a {
    margin-left: 8px;
  }

  .header-quick-contact .quick-phone {
    animation: callPulse 3s infinite;
  }
}
