/* === Հիմնական կոնտեյներ === */
.traffic-header {
  width: 100%;
  background: #ffc107; /* Դեղին ֆոն */
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.traffic-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* === Նավիգացիոն մաս === */
.traffic-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
}

.traffic-menu {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.traffic-menu li {
  position: relative;
}

.traffic-menu a {
  color: #fff; /* Սպիտակ տեքստ */
  text-decoration: none;
  font-family: "Noto Sans Armenian", sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s;
}

.traffic-menu a:hover {
  color: #212529; /* Մուգ մոխրագույն hover */
}

/* === Ենթամենյու === */
.traffic-menu .sub-menu {
  display: none;
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  min-width: 220px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.traffic-menu .sub-menu li a {
  color: #212529;
  display: block;
  padding: 10px 15px;
}

.traffic-menu .menu-item-has-children:hover > .sub-menu {
  display: block;
}

.traffic-menu .menu-item-has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7em;
  margin-left: 6px;
}
