/* ==========================================================================
   ۱. تنظیمات پایه، فونت‌ها و رنگ‌های امبینت پس‌زمینه
   ========================================================================== */
/* وارد کردن فونت وزیر متن و پلاس جاکارتا از سرور گوگل */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&family=Vazirmatn:wght@300;400;600;800&display=swap');

* {
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

body {
    /* فونت پیش‌فرض برای نسخه انگلیسی */
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background-color: #060913;
    /* هاله‌های رنگی امبینت و عمیق در پس‌زمینه کل سایت */
    background-image: 
        radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.18) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(220, 38, 38, 0.12) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(124, 58, 237, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* تنظیمات اختصاصی فونت و راست‌چین برای نسخه فارسی */
html[dir="rtl"] body {
    font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
}

/* ==========================================================================
   ۲. هدر شیشه‌ای (Glassmorphic Header) - نسخه دسکتاپ
   ========================================================================== */
.glass-header {
    position: fixed;
    top: 20px;
    left: 5%;
    width: 90%;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1000;
}

/* 👈 پنهان کردن دکمه همبرگری در حالت دسکتاپ برای جلوگیری از بهم ریختگی */
.menu-toggle {
    display: none !important;
}

.logo {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-header nav {
    display: flex;
    gap: 30px;
}

.glass-header nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.glass-header nav a:hover, .glass-header nav a.active {
    color: #fff;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
}

.status-badge {
    font-size: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
}

/* ==========================================================================
   ۳. بخش هیرو (Hero Section)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 20%, #060913 90%), rgba(6, 9, 19, 0.63);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1100px;
    padding: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.7);
}

.hero-text-side { flex: 1.2; }
.hero-image-side { flex: 0.8; display: flex; justify-content: center; }

.main-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-title {
    font-size: 20px;
    color: #38bdf8;
    margin: 0 0 25px 0;
    font-weight: 600;
}

.description {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 40px;
}

.cta-buttons { display: flex; gap: 15px; }

.btn {
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.profile-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* ==========================================================================
   ۴. بخش خدمات دوزبانه (Services Section)
   ========================================================================== */
.services-section {
  padding: 80px 4%;
  background: transparent;
  position: relative;
  z-index: 20;
  color: #ffffff;
}

.services-section[dir="rtl"] { text-align: right; }
.services-section[dir="ltr"] { text-align: left; }

.services-intro {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.services-section[dir="rtl"] .services-intro { text-align: center; }
.services-section[dir="ltr"] .services-intro { text-align: center; }

.services-intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 800;
}

.services-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b3b3b3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: perspective(1200px) rotateX(25deg) translateY(60px) translateZ(-50px);
  transform-origin: center bottom;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease, box-shadow 0.4s ease;
}

.service-card.show {
  opacity: 1;
  transform: perspective(1200px) rotateX(0deg) translateY(0) translateZ(0);
}

.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.15s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.45s; }

.service-card.show:hover {
  transform: perspective(1200px) translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.03);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.card-image-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .card-image-wrapper img {
  transform: scale(1.06);
}

.card-content { padding: 25px; }
.card-content h3 { font-size: 1.2rem; margin-bottom: 12px; color: #fff; }
.card-content p { font-size: 0.95rem; line-height: 1.6; color: #a6a6a6; margin: 0; }

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: -150%; width: 60%; height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.13) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}

.service-card:hover::after {
  left: 150%;
  transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ==========================================================================
   ۵. بخش نمونه کارها (Portfolio Section)
   ========================================================================== */
.portfolio-section {
    padding: 120px 10%;
    background: transparent;
    position: relative;
    z-index: 20;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 90px;
    background: linear-gradient(45deg, #ffffff, #93c5fd, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 140px;
}

.project-item.reverse { flex-direction: row-reverse; }
.project-info { flex: 1.3; }
html[dir="ltr"] .project-info { text-align: left; }
html[dir="rtl"] .project-info { text-align: right; }

.project-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #38bdf8;
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

.project-name {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.project-desc {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 30px;
}

.play-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.play-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 5px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.project-visual { flex: 0.9; width: 100%; max-width: 500px; cursor: pointer; }
.visual-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
}

.thumb-img { width: 100%; height: 100%; display: block; object-fit: cover; }
.project-visual:hover .thumb-img { transform: scale(1.06); }

.hover-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 6, 12, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.hover-overlay span {
    color: #fff; font-weight: 700; font-size: 14px; padding: 8px 20px;
    background: rgba(0, 0, 0, 0.7); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px; transform: scale(0.9);
}

.project-visual:hover .hover-overlay { opacity: 1; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.project-visual:hover .hover-overlay span { transform: scale(1); }

/* ==========================================================================
   ۶. انیمیشن‌های اسکرول (Scroll Animations)
   ========================================================================== */
.anim-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.anim-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.anim-left.show, .anim-right.show { opacity: 1; transform: translateX(0); }

/* ==========================================================================
   ۷. مودال پیشرفته پخش ویدیو (Premium Video Modal)
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2000; display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none;
}

.video-modal.active { opacity: 1; pointer-events: auto; }
.modal-backdrop {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 4, 8, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}

.modal-content-wrapper {
    position: relative; width: 90%; max-width: 900px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 24px; padding: 6px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.9); transform: scale(0.92); z-index: 10;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .modal-content-wrapper { transform: scale(1); }
.close-modal-btn {
    position: absolute; top: -45px; right: 0;
    background: none; border: none; color: rgba(255, 255, 255, 0.8); font-size: 26px; cursor: pointer;
}

.modal-video-container { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 16px; overflow: hidden; }
.modal-video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   ۸. بهینه‌سازی رسپونسیو تبلت
   ========================================================================== */
@media (max-width: 950px) {
    .hero-content { flex-direction: column; text-align: center; padding: 40px 20px; }
    .cta-buttons { justify-content: center; }
    .project-item, .project-item.reverse { flex-direction: column-reverse !important; gap: 30px; margin-bottom: 90px; }
    .project-info { text-align: center !important; }
    .project-visual { max-width: 100%; }
    .anim-left, .anim-right { transform: translateY(30px); }
    .anim-left.show, .anim-right.show { transform: translateY(0); }
}

/* ==========================================================================
   ۹. استایل‌های هوشمند فوتر و دکمه شناور
   ========================================================================== */
.main-footer {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 4% 30px 4%;
  color: #fff;
  position: relative;
  z-index: 30;
}

.main-footer[dir="rtl"] { direction: rtl; text-align: right; }
.main-footer[dir="ltr"] { direction: ltr; text-align: left; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.main-footer h3 { font-size: 1.4rem; margin-bottom: 15px; font-weight: 700; }
.footer-hint { color: #a6a6a6; font-size: 0.95rem; margin-bottom: 25px; line-height: 1.6; }

.contact-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px 14px;
  margin-bottom: 15px;
  max-width: 380px;
  transition: all 0.3s ease;
}

.main-footer[dir="rtl"] .contact-box { justify-content: flex-start; }
.main-footer[dir="ltr"] .contact-box { justify-content: flex-start; }
.contact-box:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.15); }

.contact-action-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  flex-grow: 1;
  font-size: 1.05rem;
  font-family: monospace, sans-serif;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff; padding: 8px; border-radius: 8px; cursor: pointer;
  position: relative; display: flex; align-items: center; justify-content: center;
}

.copy-btn:hover { background: #ffffff; color: #000; }
.copy-btn::before {
  content: 'Copied!'; position: absolute; bottom: 130%; left: 50%; transform: translateX(-50%) translateY(5px);
  background: #00ff88; color: #000; padding: 4px 8px; font-size: 0.75rem; font-weight: bold; border-radius: 4px;
  opacity: 0; pointer-events: none; transition: all 0.2s ease;
}
html[dir="rtl"] .copy-btn::before { content: 'کپی شد!'; }
.copy-btn.copied::before { opacity: 1; transform: translateX(-50%) translateY(0); }

.social-links-grid { display: flex; gap: 15px; flex-wrap: wrap; }
.social-item {
  width: 50px; height: 50px; border-radius: 12px; background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08); display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: bold; text-decoration: none; font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-item.telegram:hover { background: #0088cc; box-shadow: 0 0 20px rgba(0, 136, 204, 0.5); border-color: #0088cc; }
.social-item.instagram:hover { background: #e1306c; box-shadow: 0 0 20px rgba(225, 48, 108, 0.5); border-color: #e1306c; }
.social-item.youtube:hover { background: #ff0000; box-shadow: 0 0 20px rgba(255, 0, 0, 0.5); border-color: #ff0000; }
.social-item.aparat:hover { background: #df0056; box-shadow: 0 0 20px rgba(223, 0, 86, 0.5); border-color: #df0056; }
.social-item.linkedin:hover { background: #0077b5; box-shadow: 0 0 20px rgba(0, 119, 181, 0.5); border-color: #0077b5; }

.footer-bottom { text-align: center; margin-top: 50px; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, 0.05); color: #666; font-size: 0.85rem; }

.floating-contact-btn {
  position: fixed; bottom: 25px; width: 50px; height: 50px; background: rgba(0, 136, 204, 0.25);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(0, 136, 204, 0.4);
  border-radius: 50%; display: none; align-items: center; justify-content: center; color: #fff;
  text-decoration: none; font-size: 1.4rem; z-index: 999; opacity: 0.7; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

[dir="rtl"] .floating-contact-btn { left: 25px; right: auto; }
[dir="ltr"] .floating-contact-btn { right: 25px; left: auto; }
.floating-contact-btn:hover, .floating-contact-btn:active { opacity: 1; background: #0088cc; transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 136, 204, 0.6); }

@media (max-width: 768px) {
  .floating-contact-btn { display: flex; }
}

.social-item i { font-size: 1.35rem; display: inline-block; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.social-item svg { width: 24px; height: 24px; display: inline-block; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.social-item:hover i, .social-item:hover svg { transform: scale(1.18); }

/* ==========================================================================
   ۱۰. منوی همبرگری شیشه‌ای (Glassmorphic) هوشمند مخصوص موبایل
   ========================================================================== */
@media (max-width: 768px) {
  
  /* ۱. تنظیم کانتینر اصلی هدر در حالت بسته روی موبایل */
  .glass-header {
    height: auto !important;
    max-height: 70px !important; /* قفل شدن ارتفاع در حالت بسته */
    padding: 0 20px !important;
    overflow: hidden !important;
    border-radius: 25px !important; /* فشرده‌تر برای موبایل */
    margin-bottom: 50px !important; /* 👈 ایجاد فاصله تنفس عالی تا اسم بزرگ شما */
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.3s !important;
  }

  /* فعال‌سازی و استایل دکمه همبرگری در موبایل */
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    padding: 10px !important;
    border-radius: 12px !important;
    cursor: pointer;
    z-index: 1001;
    width: 42px;
    height: 42px;
  }

  /* ۲. ⚡️ افکت باز شدن منو و تبدیل به کارت شیشه‌ای فوق‌العاده شما */
  .glass-header.active {
    max-height: 520px !important; /* باز شدن کارت رو به پایین */
    flex-direction: column !important; /* چیدمان عمودی شیک المان‌ها */
    justify-content: flex-start !important;
    gap: 30px !important;
    padding: 30px 20px !important;
    
    /* بازسازی گلاسمورفیسم تاریک و غلیظ برای خوانایی لینک‌ها */
    background: rgba(10, 15, 30, 0.82) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6) !important;
  }

  /* تنظیم دکمه خروج (X) در گوشه بالایی کارت بر اساس جهت زبان */
  .glass-header.active .menu-toggle {
    position: absolute !important;
    top: 20px;
  }
  html[dir="ltr"] .glass-header.active .menu-toggle { right: 20px !important; }
  html[dir="rtl"] .glass-header.active .menu-toggle { left: 20px !important; }

  /* جابجایی بین آیکون همبرگری و ضربدر */
  .menu-toggle .close-icon { display: none; }
  .glass-header.active .menu-toggle .open-icon { display: none; }
  .glass-header.active .menu-toggle .close-icon { display: block !important; }

  /* ۳. فیکس کردن بخش لینک‌ها (چیدمان منظم عمودی بدون داتِ لیست) */
  .glass-header nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 22px !important;
    width: 100% !important;
    margin: 30px 0 10px 0 !important;
    padding: 0 !important;
    
    /* انیمیشن نرم ظاهر شدن محتوا */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  /* نمایش لینک‌ها هنگام باز بودن منو */
  .glass-header.active nav {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .glass-header nav a {
    font-size: 1.1rem !important;
    color: #ffffff !important;
    display: block !important;
  }

  /* ۴. بخش دکمه زبان و استاتوس بدج در پایین کارت منو */
  .header-left {
    display: flex !important;
    flex-direction: row !important; /* دکمه زبان و بدج کنار هم در یک خط */
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    width: 100% !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0.1s;
  }

  .glass-header.active .header-left {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* خارج کردن بدج استاتوس از پوزیشن مطلق قدیمی دسکتاپ */
  .status-badge {
    position: static !important;
    transform: none !important;
    padding: 6px 14px !important;
    font-size: 0.85rem !important;
  }
}
