#header {
  padding-top: 25px;
}
.nav {
  justify-content: space-between;
  align-items: center;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 62px;
  gap: 5px;
  padding: 5px 6px;
  border-radius: 25px;
  background-image: linear-gradient(90deg, rgba(18, 17, 36, 0.5), #121124);
  background-size: 100% 100%;
  margin-bottom: 0;
}

.nav-list-item a {
  position: relative;
  padding: 18px 35px;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  z-index: 3;
  border-radius: 25px;
  position: relative;
  isolation: isolate;
}

.nav-list-item a::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #0e0d21; /* boja unutrašnjosti */
  border-radius: 25px;
  z-index: -1;
}
.nav-list-item a::after {
  position: absolute;
  content: "";
  background: linear-gradient(to bottom, #373557 60%, #0e0d21 100%);
  inset: 0;
  border-radius: 25px;
  z-index: -2;
  opacity: 0;
  transition: all 0.3s ease;
}
.nav-list-item a:hover::after {
  opacity: 1;
}

.get-in-touch-btn {
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  font-size: 14px;
  transition: all 0.3s ease;
}
.get-in-touch-btn::before {
  position: absolute;
  content: "";
  inset: 1px;
  background: #0e0d21;
  border-radius: 8px;
  z-index: -1;
  transition: all 0.3 ease;
}
.get-in-touch-btn::after {
  position: absolute;
  content: "";
  background: linear-gradient(to bottom, #373557 100%, #0e0d21 100%);
  inset: 0;
  border-radius: 8px;
  z-index: -2;
  transition: all 0.3s ease;
}
.get-in-touch-btn:hover {
  background: #168cfa;
}
.get-in-touch-btn:hover::before,
.get-in-touch-btn:hover::after {
  opacity: 0;
}

.mobile-menu-wrap {
  display: none;
}

.hamburger {
  position: relative;
  width: 32px;
  height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger-line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-line:nth-child(1) {
  top: 0;
  width: 25px;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
  bottom: 0;
  width: 20px;
}
.hamburger.active .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 32px;
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 32px;
}
.get-in-touch-mob {
  font-size: 16px;
}
.mobile-nav-list-item:last-of-type {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  #header {
    padding-top: 20px;
  }
  .mobile-menu-wrap {
    display: flex;
    justify-content: end;
  }
  .get-in-touch-btn {
    display: none;
  }
  .nav-menu {
    display: none;
  }
  .hamburger {
    position: relative;
    z-index: 999;
  }
  .mobile-nav-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    transform: scale(0.6);
    transform-origin: top right;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99;
    transition: all 0.3s ease;
    padding-left: 0;
  }
  .mobile-nav-menu.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  .mobile-nav-menu li a {
    color: #fff;
  }
}

@media (max-width: 767px) {
  .logo-wrap img {
    max-width: 115px;
  }
}
