/* Новый навбар для десктопа */
.new-navbar {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  margin: 0;
  background: #6a587836;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(111, 66, 193, 0.4);
  z-index: 1000;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.new-navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
  z-index: 1;
}

.new-navbar:hover::before {
  left: 100%;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.right-section {
  /* Пусто для симметрии */
}

.new-navbar .logo {
  height: 80px;
  width: auto;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.new-navbar .logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.new-navbar .logo:hover::before {
  left: 100%;
}

.new-navbar .logo:hover {
  transform: scale(1.05);
}

.new-navbar .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  margin-left: auto;
}

.new-navbar .nav-item {
  position: relative;
}

.new-navbar .nav-link {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 5px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.new-navbar .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.new-navbar .nav-link:hover::before {
  left: 100%;
}

.new-navbar .nav-link:hover {
  transform: translateY(-2px);
}

.new-navbar .nav-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.new-navbar .nav-link:hover i {
  transform: translateX(3px);
}

.new-navbar .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.new-navbar .phone-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.new-navbar .phone-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.new-navbar .phone-link:hover::before {
  left: 100%;
}

.new-navbar .callback-btn {
  background: #8B4513;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-navbar .callback-btn:hover {
  background: #A0522D;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.new-navbar .callback-btn i {
  font-size: 16px;
}

/* Скрыть новый навбар на мобильных */
@media (max-width: 1024px) {
  .new-navbar {
    display: none;
  }
}

/* Адаптивность для больших экранов */
@media (min-width: 1200px) {
  .new-navbar {
    padding: 0 50px;
  }

  .new-navbar .nav-menu {
    gap: 5px;
	margin-left: auto;
  }
}
/* Адаптивность для различных размеров экрана */
@media (max-width: 1280px) {
  .new-navbar {
    padding: 0 15px;
  }
            
  .new-navbar .nav-link {
    font-size: 13px;
    padding: 4px 14px;
  }
            
  .new-navbar .phone-link {
    font-size: 14px;
  }
}

@media (max-width: 1150px) {
  .new-navbar .nav-link {
    font-size: 12px;
    padding: 3px 13px;
  }
            
  .new-navbar .nav-link i {
    display: none;
  }
            
  .new-navbar .phone-link {
    font-size: 13px;
    padding: 6px 8px;
  }
            
  .new-navbar .callback-btn {
    padding: 7px 12px;
    font-size: 12px;
  }
}