.contact-link {
  display: inline-block;
  color: #333;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #4a5a66;
  transition: width 0.3s ease;
}

.contact-link:hover::after {
  width: 100%;
}