/* نوبار موبایل */
#mobile-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #002f5f;
  padding: 12px 20px;
  z-index: 1000;
  font-family: 'IranSans', sans-serif;
}







.mobile-controls {
  display: flex;
  gap: 10px;
}

.mobile-menu-btn,
.mobile-lang-btn {
  background-color: white;
  color: #002f5f;
  font-weight: bold;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

/* منوی کشویی */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background-color: #002f5f;
  transition: right 0.3s ease;
  padding: 20px;
  z-index: 9999;
}

.mobile-menu-panel.show {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 60px;
}

.mobile-nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 12px;
  border-bottom: 1px solid #005baa;
  transition: background-color 0.3s ease;
}

.mobile-nav-links a:hover {
  background-color: #005baa;
  color: #cce6ff;
}

/* حالت انگلیسی */
.mobile-menu-panel.en {
  direction: ltr;
}

.mobile-menu-panel.en .mobile-nav-links a {
  text-align: left;
}
#mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}



.mobile-brand a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}


/* دکمه منو سمت چپ با فاصله */
.mobile-menu-btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: #002f5f;
  font-weight: bold;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 10;
}

/* لوگو سمت راست */
.mobile-logo {
  height: 40px;
  width: auto;
  margin-left: 8px;
}

/* مخفف وسط */



/*--------------------------*/
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 16px;
  background-color: #002f5f;
  position: relative;
  z-index: 1000;
}

/* جهت RTL */
.mobile-nav-header[dir="rtl"] {
  flex-direction: row-reverse;
}

/* چپ: دکمه منو */
.mobile-left {
  flex: 0 0 auto;
}

.mobile-menu-btn {
  background-color: white;
  color: #002f5f;
  font-weight: bold;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}

/* وسط: متن برند */
.mobile-center {
  flex: 1;
  text-align: center;
}

.mobile-brand-text {
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  font-family: 'YekanBakh', 'IranSans', sans-serif;
  line-height: 1;
}

/* راست: لوگو */
.mobile-right {
  flex: 0 0 auto;
}

.mobile-logo {
  height: 40px;
  width: auto;
  display: block;
}
