/* --- استایل‌های اصلی نوبار و منو --- */
.menu-n-cn {
  background: #181926; /* پس‌زمینه خاکستری بدون شفافیت */
  position: sticky !important; /* همیشه در بالا ثابت بمونه */
  top: 0; /* از بالای صفحه شروع بشه */
  z-index: 1000; /* بالاتر از همه چیز قرار بگیره */
  transition: box-shadow 0.3s ease; /* انیمیشن فقط برای سایه */
  padding: 12px 0; /* کمی فاصله در بالا و پایین */
}

/* وقتی اسکرول می‌شه، فقط سایه اضافه می‌شه */
.menu-n-cn.scrolled {
  box-shadow: 0 1px 20px 1px rgba(0,0,0,0.3); /* سایه کمی تیره‌تر */
}

/* --- استایل‌های نوبار و عناصر --- */
.menu-bar-align {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  position: relative;
  gap: 20px;
  direction: rtl;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px 0;
  display: none; /* در حالت عادی پنهان است */
}

.hamburger-icon {
  width: 36px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  width: 36px;
  height: 4px;
  background: #fff;
  position: absolute;
  left: 0;
  border-radius: 2px;
  transition: .2s;
}

.hamburger-icon::before { top: -10px; }
.hamburger-icon::after { top: 10px; }

.menu-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: center; /* شماره دقیقاً وسط لوگو */
  justify-content: center;
  min-width: 90px; /* حداقل عرض لوگو */
}

.imglogo {
  max-height: 65px; /* لوگو بزرگ‌تر */
  width: auto !important;
  margin-bottom: 4px;
  display: block;
}

.cn-number {
  color: #e53935;
  font-family: Vazirmatn, IRANSans, Tahoma, sans-serif;
  font-weight: 700;
  font-size: 16px; /* سایز فونت برای دسکتاپ */
  margin-top: 0;
}

/* --- استایل‌های منوی اصلی --- */
.main-menu {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: max-height 0.3s;
}

.menu-items {
  display: flex;
  gap: 38px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  color: #fff !important;
  font-family: Vazirmatn, IRANSans, Tahoma, sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 14px;
  transition: color 0.2s;
  text-decoration: none;
  background: none !important;
  border-radius: 0;
  position: relative;
}

.nav-link::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 0;
  border-bottom: 2.5px solid #e53935;
  transition: width 0.17s;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 80%;
}

.nav-link.active,
.nav-link:hover {
  color: #e53935 !important;
  font-weight: 700;
}

/* --- استایل‌های موبایل --- */
@media (max-width: 991px) {
  .container-90 {
    padding: 0 10px;
  }

  .menu-bar-align {
    flex-direction: row;
    min-height: unset;
    gap: 10px;
  }

  .hamburger-btn {
    display: flex;
    order: 1; /* ترتیب در نمایش */
  }

  .menu-logo-stack {
    order: 2;
    min-width: 70px;
  }

  .imglogo {
    max-height: 38px; /* لوگو کوچکتر در موبایل */
  }

  .main-menu {
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    right: 0; left: 0; top: 100%;
    background: #181926;
    z-index: 8;
    border-radius: 0 0 12px 12px;
    padding: 0 0 25px; /* فاصله پایین */
    transition: max-height 0.25s;
  }

  .main-menu.open {
    max-height: 420px !important;
  }

  .menu-items {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 7px 0;
    padding: 0 0 14px;
  }

  /* تغییرات برای لوگو و شماره */
  .menu-logo-stack {
    min-width: 60px;
  }

  .cn-number {
    font-size: 11px; /* فونت کوچکتر در موبایل */
  }
}

.container-90 {
  max-width: 1280px;
  padding: 0 36px;
  margin: 0 auto;
}

