.desktop-menu {
  width: 100%;
  background: #ffffff;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(-180px);
  position: relative;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: #101116bd;
}
.static-menu{
  opacity:1;
  transform: translateY(0);
  background:#00000000;
  backdrop-filter: none;
}
.desktop-menu.visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar {
  display: grid;
  justify-content: space-between;
  align-items: center;
  padding: 10px 2rem;
  max-width: 1280px;
  margin: auto;
  grid-template-columns: auto 3fr auto;
}
.static-menu .navbar{
	padding:2rem 0rem 1rem 0rem;
}
.logo {
  grid-column: 1;
}
.logo img{
	max-height:48px;
}
.static-menu .logo img{
	max-height:55px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap:12px;
  justify-content: center;
  grid-column: 2;
  margin:0px;
  padding:0px;
}
.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color:white;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 7px 10px 4px 10px;
  background: #ffffff30;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
}

.submenu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  list-style: none;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(50px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1000;
  width:220px;
  text-align:right;
}


.submenu li {
  margin: 0.5rem 0;
}

.submenu a {
  color: #333;
  font-weight: 400;
}
.submenu.visible {
  opacity: 1;
  transform: translateY(20px);
  pointer-events: auto;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  align-items: flex-end;
  
}
.static-menu .hamburger{
	padding-left: 20px;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}
.overal{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 998;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.hlogo{
	padding:20px 0px;
	text-align:center;
}
.hlogo img{
	max-width:100%;
	max-height:55px;
}
@media (max-width: 768px) {
  .nav-links,.right-zone {
	display: none !important;
  }

  .hamburger {
	display: flex;
  }
	.logo{
		padding-right:20px;
	}
  .mobile-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100vh;
	background:radial-gradient(at top right, #ffffff10 60%, #04240e 61%),linear-gradient(to left, #04240e 0%, #000000 100%);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 2rem;
	transition: all 0.2s ease;
	transform: translateY(50px);
	opacity: 0;
	z-index: 999;
	box-sizing:border-box;
	max-width:350px;
  }

  .mobile-menu.active {
	left: 0;
	transform: translateY(0);
	opacity: 1;
  }
  .menu-items{
	  flex: 1;
  overflow-y: auto;
	  padding-top:20px;
	height: calc(100vh - 160px);
	list-style:none;
	margin:0px;
	padding:0px;
  }
  .has-submenu{
	  position:relative;
  }
  .menu-items a {
	margin:6px 0;
	font-size:17px;
	border: 1px solid #ffffff45;
    padding: 10px 10px 7px 10px;
    box-sizing: border-box;
    border-radius: 5px;
	color:white;
	text-decoration: none;
	display:block;
	background: #04240e9c;
  }
  .close-menu-mobile{
	position: absolute;
	top: 1rem;
	right:10px;
	font-size: 36px;
	cursor: pointer;
	color: #ffffffc2;
	z-index: 1001;
	border-radius: 35px;
	border: 3px solid;
	height: 20px;
	width: 20px;
	line-height:28px;
	text-align: center;
  }
  .submenu-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-size: 1.2rem;
    padding: 10px 10px 7px 10px;
    box-sizing: border-box;
    border-radius: 5px;
	color:white;
	position:absolute;
	top:0px;
	left:0px;
  }

  .submenu-toggle span {
	font-size: 1rem;
	transform: rotate(0deg);
	transition: transform 0.3s ease;
  }

  .submenu-toggle.open span {
	transform: rotate(180deg);
  }

  .mobile-submenu {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
	padding-left: 1rem;
	list-style:none;
	padding-right:10px;
  }

  .mobile-submenu.open {
	max-height: 500px;
	opacity: 1;
	transform: translateY(0);
  }

  .mobile-submenu a {
	font-size: 1rem;
	margin: 0.5rem 0;
	display: block;
  }
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.right-zone {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
.call-info {
  display: flex;
  align-items: center;
  gap:6px;
  font-weight: 500;
  color: #333;
}

.call-icon {
  width: 18px;
  height: 18px;
}

.call-number {
  font-size: 0.95rem;
  color:white;
}


/* Hide mobile menu on desktop */
@media (min-width: 769px) {
  .mobile-menu {
	display: none !important;
  }
}