@font-face {
      font-family: 'Vazirmatn';
      src: url('../fonts/Vazirmatn-Regular.woff2') format('woff2'),
           url('../fonts/Vazirmatn-Regular.woff') format('woff');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }
:root {
  --bg-color: #0f172a;
  --surface-color: #1e2537;
  --surface-transparent: rgba(15,23,42,.6);
  --text-color: #f8fafc;
  --text-dim: #94a3b8;
  --accent-color: #38bdf8;
  --radius-xl: 1.25rem;
  --radius-lg: 1rem;
  --radius-md: .5rem;
  --max-width: 1280px;
  --header-h: 56px;
  --transition-fast: .2s ease;
  --shadow-card: 0 24px 48px rgba(0,0,0,.6);
  --shadow-nav: 0 20px 40px rgba(0,0,0,.8);
  --shadow-soft: 0 12px 24px rgba(0,0,0,.8);
  --backdrop-blur: blur(6px);
  --gallery-gap: 1rem;
  --font-main: "Vazirmatn", Tahoma, Arial, sans-serif !important;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  line-height: 1.6;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ---------------- HEADER ---------------- */
.site-header {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(15,23,42,.4);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  box-shadow: var(--shadow-nav);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
}

.site-header .inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0 .75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-direction: row-reverse; /* چون RTL هستیم، لوگو سمت راست بشه */
}

.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-color);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .brand {
    font-size: .80rem;
  }
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: #334155;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.08);
}

/* burger button for mobile */
.burger {
  background: rgba(51,65,85,.4);
  border: 1px solid rgba(255,255,255,.1);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0 10px;
  box-shadow: var(--shadow-soft);
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-color);
  border-radius: 1px;
}

/* desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 1rem;
  font-size: .9rem;
}
.desktop-nav a {
  color: var(--text-color);
  text-decoration: none;
  padding: .4rem .75rem;
  border-radius: var(--radius-md);
  line-height: 1.2;
  transition: background var(--transition-fast);
  background: transparent;
  border: 1px solid transparent;
}
.desktop-nav a:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
  text-decoration: none;
}

/* بک‌دراپ تیره پشت منو */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 1990;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

/* وقتی منو بازه این کلاس به بک‌دراپ هم اضافه میشه */
.mobile-nav-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

/* منوی موبایل کشویی (drawer) */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;

  /* این دو خط مهم هستن 👇 */
  right: 0;      /* منو به لبه راست صفحه قفل می‌شود */
  left: auto;    /* از سمت چپ آزادش می‌کنیم */

  width: 80%;
  max-width: 320px;

  background: rgba(15,23,42,.95);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  box-shadow: var(--shadow-nav);
  z-index: 2000;

  /* در حالت بسته، کل منو رو 100٪ عرض خودش می‌بریم بیرون سمت راست */
  transform: translateX(100%);
  transition: transform var(--transition-fast);

  border-inline-start: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 2rem;
}

/* وقتی open بشه، میاد کامل داخل */
.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
}
.mobile-nav-head .title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-color);
}
.mobile-nav-close {
  border: 0;
  background: rgba(51,65,85,.5);
  border-radius: var(--radius-md);
  color: var(--text-color);
  width: 36px;
  height: 36px;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  gap: .5rem;
  font-size: .95rem;
}
.mobile-nav-links a {
  color: var(--text-color);
  text-decoration: none;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  padding: .9rem 1rem;
  border-radius: var(--radius-md);
  display: block;
  line-height: 1.4;
}
.mobile-nav-links a:hover {
  background: rgba(255,255,255,.07);
  text-decoration: none;
}

/* حالت دسکتاپ: منوی موبایل کلاً مخفی */
@media (min-width: 768px) {
  .burger { display: none; }
  .desktop-nav { display: flex; }

  .mobile-nav {
    display: none;
  }
  .mobile-nav-backdrop {
    display: none;
  }
}

/* حالت موبایل: منوی دسکتاپ مخفی */
@media (max-width: 767.98px) {
  .desktop-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
}


/* --------------- MAIN LAYOUT ---------------- */
main {
  padding-top: var(--header-h);
}

/* HERO SECTION */
.hero {
  position: relative;
  background: #000;
  color: var(--text-color);
  min-height: 60vh;
  min-height: 53svh; /* موبایل‌های جدید */
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video-wrap video,
.hero-video-wrap img {
  position: absolute;
  inset: 0;
   height: 100%;
    width: 100%;
  object-fit: cover;
}
.hero-video-wrap video { object-fit: cover; background:#000; }

/* تصویر جایگزین مخصوص fallback */
.hero-fallback {
  position:absolute; inset:0;
  width:100%;
             /* بدون زوم و کراپ */
  background:#000;                  /* نوارهای مشکی تمیز */
  display:none;                     /* اول مخفی است */
}
@media (max-width: 600px) {
  .hero-video-wrap video {
    height: 100%;
    width: 100%;
    background: #000;
  }

  .hero-video-wrap img.hero-fallback {
    object-fit: contain !important;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(56,189,248,.15) 0%, rgba(0,0,0,.8) 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 2rem 1rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
}
.hero-card {
  max-width: 480px;
  background: var(--surface-transparent);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 1.25rem 1rem;
}
.hero-tag {
  font-size: .7rem;
  font-weight: 500;
  color: var(--accent-color);
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.4);
  border-radius: var(--radius-md);
  padding: .4rem .6rem;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.hero-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-color);
  margin: 0 0 .5rem;
}
@media (min-width:480px){
  .hero-title { font-size: 1.4rem; }
}
@media (min-width:768px){
  .hero-title { font-size: 1.6rem; }
}
.hero-desc {
  font-size: .9rem;
  color: var(--text-dim);
  margin: 0 0 1rem;
  line-height: 1.7;
    text-align: justify;
  text-justify: inter-word;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
}
.btn-main,
.btn-ghost {
  cursor: pointer;
  border-radius: var(--radius-md);
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  display: inline-block;
  padding: .75rem 1rem;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}
.btn-main {
  background: var(--accent-color);
  color: #0f172a;
  border-color: rgba(0,0,0,.4);
  box-shadow: 0 16px 32px rgba(56,189,248,.4);
}
.btn-main:hover {
  background: rgba(106, 164, 218, 0.767);
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(36, 140, 185, 0.5);
}
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text-color);
  border-color: rgba(255,255,255,.16);
}
.btn-ghost:hover {
  background: rgba(179, 179, 179, 0.3);
  text-decoration: none;
}


@media (max-width: 600px) {
  .hero-card {
    max-width: 90%;
    padding: 1rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
  }

  .hero-title {
    font-size: 1rem;
  }

  .hero-desc {
    font-size: .8rem;
    line-height: 1.5;
  }

  .btn-main,
  .btn-ghost {
    font-size: .75rem;
    padding: .6rem .8rem;
  }

  .hero-inner {
    padding: 1.5rem 1rem 2rem;
  }
}



@media (max-width: 600px) {
  .hero {
    aspect-ratio: auto;
    min-height: 60vh;
  }
}




/* ABOUT / INTRO SECTION */
.section {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 3rem 1rem;
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-width: 100%;
  margin-bottom: 2rem;
}
.section-eyebrow {
  font-size: .8rem;
  color: var(--accent-color);
  font-weight: 500;
}
.section-title {
  margin: 0;
  color: var(--text-color);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}
@media(min-width:480px){
  .section-title { font-size: 1.3rem; }
}
@media(min-width:768px){
  .section-title { font-size: 1.5rem; }
}
.section-desc {
  margin: 0;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
}
@media(max-width:480px){
  .section-desc { font-size: 0.8rem; }
}


/* --------------- GALLERY ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(min(45%,220px),1fr));
  gap: var(--gallery-gap);
}
@media(min-width:600px){
  .gallery-grid {
    grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  }
}
@media(min-width:1024px){
  .gallery-grid {
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
  }
}

.media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,.05);
  cursor: pointer;
}
.media-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #1e293b;
  overflow: hidden;
}
.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-thumb .video-badge {
  position: absolute;
  bottom: .5rem;
  inset-inline-start: .5rem;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .7rem;
  line-height: 1;
  padding: .4rem .5rem .35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.media-info {
  padding: .75rem .75rem 1rem;
}
.media-title {
  color: var(--text-color);
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 .4rem;
}
.media-desc {
  margin: 0;
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
}

/* hover effect */
.media-card:hover .media-thumb img {
  transform: scale(1.05);
}
.media-thumb img {
  transition: transform var(--transition-fast);
}

/* --------------- LIGHTBOX ---------------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox-overlay.show {
  display: flex;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  background: #000;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lightbox-media-wrap {
  position: relative;
  background: #000;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
}
.lightbox-media-wrap img,
.lightbox-media-wrap video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 0;
  object-fit: contain;
  background: #000;
}
.lightbox-caption {
  flex: 0 0 auto;
  padding: .75rem 1rem 1rem;
  background: rgba(15,23,42,.7);
  color: var(--text-color);
  font-size: .8rem;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,.08);
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  top: .75rem;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
  transition: background var(--transition-fast);
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(0,0,0,.8);
}
.lb-close {
  inset-inline-end: .75rem;
}
.lb-prev,
.lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
}
.lb-prev {
  inset-inline-start: .75rem;
}
.lb-next {
  inset-inline-end: .75rem;
}

/* hide prev/next on very small screens if you want, but we'll keep them */

@media(min-width:768px){
  .lightbox-inner {
    border-radius: var(--radius-xl);
  }
}

/* --------------- CONTACT SECTION ---------------- */
.contact-wrapper {
  display: grid;
  gap: 1.5rem;

  /* این دو خط باعث می‌شن کل بلوک در مرکز صفحه بشینه */
  max-width: 1000px;
  margin-inline: auto;
  width: 100%;
}

@media (min-width: 600px) {
  .contact-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch; /* هم‌قد بودن کارت‌ها */
  }
}



/* کارت تماس خودش باید اجازه کش اجباری داشته باشه */
.contact-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  text-align: justify;
  text-justify: inter-word;
  display: flex;
  flex-direction: column;
  height: 100%;
}


/* محتوای داخل کارت هم همون قبلیه و کار خاصی نمی‌خواد */
.contact-card h3 {
  margin: 0 0 .75rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

.contact-card p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;

  /* این خط رو اضافه کن اگر می‌خوای دکمه‌ها همیشه ته کارت باشن */
  margin-top: auto;
}
.contact-btn {
  flex: 1 1 auto;
  min-width: 140px;
  text-align: center;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-color);
  background: rgba(56,189,248,.1);
  border: 1px solid rgba(56,189,248,.4);
  border-radius: var(--radius-md);
  padding: .75rem .75rem;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  transition: box-shadow var(--transition-fast), background var(--transition-fast);
}
.contact-btn:hover {
  background: rgba(56,189,248,.2);
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(56,189,248,.4);
}

/* لایه‌بندی کارت‌های تماس */
.contact-wrapper {
  display: grid;
  gap: 1.5rem;
}

/* از یه عرض مشخص به بالا، دو ستونه کن */
@media (min-width: 600px) {
  .contact-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

/* --------------- FOOTER ---------------- */
.site-footer {
  padding: 2rem 1rem 4rem;
  background: #0b1220;
  color: var(--text-dim);
  font-size: 1rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.05);
}
.site-footer .inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
}
.site-footer .footer-links {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1rem;
  font-size: .9rem;
}
.site-footer .footer-links a {
  color: var(--text-dim);
  text-decoration: none;
}
.site-footer .footer-links a:hover {
  color: var(--accent-color);
  text-decoration: none;
}
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;            /* گردِ نرم */
  color: var(--text-dim);         /* رنگ آیکون */
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.footer-social a:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: var(--text-color);
  transform: translateY(-2px);
}

.footer-social svg { display:block; }
/* لینک‌های شبکه اجتماعی از قبل color می‌گیرن؛ همین کافیه */
.si .icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: currentColor;               /* رنگ از color والد */
  -webkit-mask: url("https://cdn.simpleicons.org/aparat") no-repeat center / contain;
          mask: url("https://cdn.simpleicons.org/aparat") no-repeat center / contain;
}

/* ===== Modal (Overlay) ===== */
.modal-backdrop{
  position:fixed; inset:0; z-index:2000;
  background:rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display:none; align-items:center; justify-content:center;
  padding:1rem;
}
.modal-backdrop.show{ display:flex; }

.modal-card{
  width:100%; max-width:720px;
  background:rgba(15,23,42,.9);
  color:#f8fafc;
  border:1px solid rgba(255,255,255,.12);
  border-radius:1.25rem;
  box-shadow:0 24px 48px rgba(0,0,0,.6);
  padding:1.25rem 1.25rem 1rem;
  position:relative;
}

.modal-close{
  position:absolute; top:.5rem; left:.75rem;  /* RTL: بستن سمت چپ */
  width:36px; height:36px; border-radius:.65rem;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:#f8fafc; font-size:20px; line-height:0; cursor:pointer;
}
.modal-close:hover{ background:rgba(255,255,255,.1); }

.modal-title{ margin:.25rem 0 .25rem; font-size:1.2rem; font-weight:700; }
.modal-lead{ margin:0 0 .75rem; color:#bed5f5; }

.modal-list{ margin:0; padding:0; list-style:none; }
.modal-list li{
  padding:.6rem .8rem; margin-bottom:.6rem;
  border-radius:.8rem;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.badge{
  display:inline-block; margin-left:.5rem;
  padding:.1rem .5rem; border-radius:.5rem;
  font-weight:700; color:#f8fafc;
  background:rgba(56,189,248,.15);
  border:1px solid rgba(56,189,248,.4);
}

.modal-actions{ margin-top:.5rem; display:flex; gap:.5rem; flex-wrap:wrap; }
.btn-ghost{
  display:inline-block; padding:.6rem .9rem; border-radius:.6rem;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06); color:#f8fafc; text-decoration:none;
}
.btn-ghost:hover{ background:rgba(255,255,255,.1); text-decoration:none; }

/* اعداد فارسی داخل مودال */
.fa-num{ font-variant-numeric: normal; }
.fa-num, .fa-num *{
  unicode-bidi: plaintext; /* برای جلوگیری از به‌هم‌ریختگی جهت اعداد در RTL */
}

.lb-dots{
  position:absolute; bottom:3.25rem; /* کمی بالاتر از کپشن */
  left:0; right:0; display:flex; gap:.4rem; justify-content:center; align-items:center;
  pointer-events:auto; z-index:10;
}
.lb-dot{
  width:8px; height:14px; border-radius:50%;
  background:rgba(114, 114, 114, 0.35); border:1px solid rgba(255,255,255,.6);
  cursor:pointer; transition:transform .15s ease, background .15s ease;
}
.lb-dot:hover{ transform:scale(1.15); }
.lb-dot.active{ background:#fff; border-color:#fff; }

.lb-counter{
  position:absolute; top:.75rem; right:.75rem; /* در RTL، شمارنده بالا-راست */
  background:rgba(0,0,0,.55); color:#fff; font-size:.8rem;
  padding:.25rem .5rem; border-radius:.5rem; border:1px solid rgba(255,255,255,.25);
  z-index:10;
}
@media (max-width:480px){
  .lb-dots{ bottom:3rem; }
  .lb-counter{ font-size:.75rem; }
}
.lightbox-inner { position: relative; }

.lightbox-media-wrap { position: relative; z-index: 1; }

.lb-close,
.lb-prev,
.lb-next { 
  position: absolute;
  z-index: 20;       
  pointer-events: auto;
}
.lb-prev,
.lb-next { font-size:2.5rem; 
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
}

.lb-prev { inset-inline-start: .75rem; }
.lb-next { inset-inline-end: .75rem;  }
.media-link{
  display:inline-block;
  margin-top:.1rem;
  font-size:.85rem;
  color: var(--accent-color);
  text-decoration: none;
  border-bottom: 1px dashed rgba(56,189,248,.6);
}
.media-link:hover{
  text-decoration: none;
  border-bottom-color: transparent;
}
/* ==== ICON STRIP (بالای امکانات مرکز) ==== */
.icon-strip {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto 0.5rem;
  padding: 0 1rem;
}



.icon-card {
  list-style: none;
  padding: 0.1rem 1rem;
}



.icon-card img {
  width: 144px;
  height: 144px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  transition: transform .18s ease, filter .18s ease;
  /* تصویر مربعی بدون قاب */
  border-radius: .1rem; /* اگر کاملاً بدون گوشه‌گرد می‌خوای، این خط را حذف کن */
}

.icon-card a:hover img,
.icon-card a:focus-visible img {
  transform: translateY(-2px);
  filter: brightness(.55) contrast(1.05) !important; /* تیره‌تر با کمی کنتراست */
}





/* برای لمس روی موبایل که :hover ندارند: نمایش کوتاه پس از فوکوس کیبورد/تاچ */
.icon-card a:active figcaption { opacity: 1; max-height: 3rem; }
/* آیکون‌ها: 2 ستون موبایل، 6 ستون دسکتاپ؛ فاصله کمتر */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* موبایل: 2 ستونه */
                             /* فاصله کمتر */
}

/* از 768px به بالا، 6 ستونه */
@media (min-width: 768px) {
  .icon-grid { grid-template-columns: repeat(6, 1fr); }
}

/* کارت جمع‌تر */
.icon-card a {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  text-align: center;
  padding: .35rem .25rem;  /* padding کمتر */
  border-radius: .1rem;
}

/* جعبه‌ی مربعیِ واکنش‌گرا برای آیکون */
:root { --icon-side: clamp(72px, 12vw, 144px); }  /* از 72 تا 144 واکنش‌گرا */

.icon-box {
  width: var(--icon-side);
  aspect-ratio: 1 / 1;        /* مربع واقعی */
  margin: 0 auto;             /* وسط‌چین داخل ستون */
  display: block;
}

/* تصویر داخل جعبه؛ بدون دفرمه شدن */
.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;         /* تصویر کامل دیده شود */
  display: block;
  transition: transform .18s ease, filter .18s ease;
  border-radius: .1rem;        /* اگر گوشه‌گرد نمی‌خوای، حذفش کن */
}

/* افکت هاور */
.icon-card a:hover .icon-box img,
.icon-card a:focus-visible .icon-box img {
  transform: translateY(-2px);
  filter: brightness(1.1) saturate(1.05);
}

/* کپشن: جمع‌وجور و نرم */
.icon-card figcaption {
  margin-top: .3rem;
  font-size: .8rem;
  color: var(--text-dim);
  line-height: 1.3;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .18s ease, max-height .18s ease;
}
.icon-card a:hover figcaption,
.icon-card a:focus-visible figcaption {
  opacity: 1;
  max-height: 3rem;
}

/* حذف فاصله پیش‌فرض figure در بعضی مرورگرها */
.icon-card figure { margin: 0; }

/* وسط‌چین واقعی و حذف فاصله‌های پیش‌فرض UL */
.icon-grid {
  margin: 0 auto;     /* وسط‌چین خودِ گرید */
  padding: 0;        /* حذف padding پیش‌فرض UL */
  justify-items: center; /* محتوای هر ستون دقیقاً وسط */
}

/* اطمینان از نبود بولت و فاصله‌های اضافی آیتم‌ها */
.icon-card {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* برای اینکه لینک و محتوا کاملاً در مرکز ستون قرار بگیرند */
.icon-card a {
  display: flex;
  flex-direction: column;
  align-items: center;   /* وسط‌چین افقی */
  justify-content: center;
}
.page-section {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 3rem 1rem;
}
.page-card {
  max-width: 680px;
  background: var(--surface-color)!important;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
  color: var(--text-color);
}
.page-card h1 {
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-color);
}
.page-card p {
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-brand{
  display: flex;
  justify-content: center;    /* وسط‌چین افقی */
  align-items: center;
  margin-bottom: 1rem;        /* فاصله از بخش‌های بعدی فوتر */
}

.footer-brand img{
  display: block;
  height: auto;
  /* اندازه واکنش‌گرا: روی موبایل کوچیک‌تر، روی دسکتاپ بزرگ‌تر */
  width: clamp(140px, 30vw, 260px);
  /* اگر پس‌زمینه فوتر تیره است و لوگو شفافه و کم‌رنگ دیده می‌شود، می‌تونی روشن‌ترش کنی: */
  /* filter: brightness(1.05) contrast(1.05); */
}
    .page-section2 { padding: 2rem 1rem; }
    .page-card {
      max-width: 900px; margin: 0 auto; padding: 1.5rem;
      border-radius: 16px; background: #0b1220; color: #e5e7eb;
      box-shadow: 0 10px 30px rgba(0,0,0,.25);
      line-height: 1.9; direction: rtl;
        text-align: justify;
  text-justify: inter-word;
    }
    .page-card h1 { margin: 0 0 1rem; font-size: 1.6rem; color: #f8fafc; }
    .page-card p { margin: .75rem 0; font-size: 1rem; }

    /* تصویر وسط */
    .page-card figure { text-align: center; margin: 1.25rem 0; }
    .page-card img { max-width: 100%; height: auto; display: inline-block; border-radius: 10px; }

    /* دکمه ساده و در دسترس */
    .btn {
      display: inline-block; padding: .75rem 1.25rem; border-radius: 9999px;
      font-weight: 600; text-decoration: none; border: 0; cursor: pointer;
      transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
      user-select: none; -webkit-tap-highlight-color: transparent;
    }
    .btn:disabled { opacity: .65; cursor: not-allowed; }

    /* رنگ درخواستی (#38bdf8) */
    .btn-primary {
      background: #38bdf8; color: #0b1220;
      box-shadow: 0 6px 16px rgba(56,189,248,.35);
    }
    .btn-primary:hover { background: #0ea5e9; transform: translateY(-1px); }
    .btn-primary:active { transform: translateY(0); }
    .btn-primary:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(56,189,248,.35), 0 6px 16px rgba(56,189,248,.35);
    }

    /* مرکزچینی دکمه */
    .actions { text-align: center; margin-top: 1rem; }

    /* ستون لینک اسکرولی داخل کارت گالری */



/* محفظه‌ی قابل‌اسکرولِ خودکار + فید بالا/پایین */
.link-marquee {
  position: relative;
  height: 450px;           /* ارتفاع ستون؛ اگر خواستی تغییر بده */
  overflow: hidden;
  margin-top: .25rem;
}

/* فید نرم بالا و پایین برای زیبایی */
.link-marquee::before,
.link-marquee::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 24px;
  z-index: 2;
  pointer-events: none;
}
.link-marquee::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,0.0), rgba(15,23,42,0));
}
.link-marquee::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.0), rgba(15,23,42,0));
}

/* ترک انیمیشن؛ محتوای لیست 2 بار داخلش خواهد بود */
.marquee-track {
  will-change: transform;
  animation: lm-scroll var(--lm-duration, 20s) linear infinite;
}

/* توقف انیمیشن روی هاور/فوکوس برای دسترسی بهتر */
.link-marquee:hover .marquee-track,
.link-marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

/* اگر کاربر motion رو کاهش داده، انیمیشن رو خاموش کن */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* خود لیست لینک‌ها */
.link-list {
  list-style: disc inside; /* دایره‌ی توپر ابتدای هر لینک */
  margin: 0;
  padding: 0 .25rem 0 .25rem; /* کمی فاصله از طرفین */
  display: flex;
  flex-direction: column;
  gap: .35rem;
  line-height: 1.6;
  color: var(--text-color);
  text-align: right;        /* چون RTL هستیم */
 
}    
@media (max-width: 768px) {
  .link-list { font-size: small;
 }
}

/* لینک‌ها */
.link-list a {
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.18);
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.link-list a:hover,
.link-list a:focus-visible {
  color: var(--accent-color);
  border-bottom-color: rgba(56,189,248,.55);
  transform: translateY(-1px);
}

/* انیمیشن اسکرول رو به بالا (محتوا را دوبل می‌کنیم؛ -50% یعنی یک طول محتوا) */
@keyframes lm-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}


.anydesk-icon {
  width: 24px;
  height: 24px;
  margin-left: 6px;       /* فاصله بین آیکون و متن فارسی */
  vertical-align: middle; /* هم‌تراز شدن با متن */
}
