.top-bar {
  background: #222;
  height: 60px;
  width: 100%;
}

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  background-color: #fff;
  justify-content: space-between;
}

.header-nav-logo {
  width: 12rem;
  /* height: 52px; */
}

.header-nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}

.header-nav-link {
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
  padding: 10px 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: color 0.3s ease;
}

.header-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.header-nav-link:hover {
  color: #fff;
}

.header-nav-link:hover::after {
  transform: scaleX(1);
}

.header-nav-link:active {
  color: #fff;
}

.header-nav-link:active::after {
  transform: scaleX(1);
}

.header-nav-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.contact-btn {
  text-decoration: none;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.3s ease;
}

.contact-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg) translateX(-150%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.contact-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.contact-btn:hover::after {
  transform: skewX(-20deg) translateX(150%);
  opacity: 1;
}

.contact-btn:active {
  color: #fff;
}

.contact-btn:active::after {
  transform: skewX(-20deg) translateX(-150%);
}
