/* ═══════════════════════════════════════════════════════
   SHAHID SYMBOLS — لاله · پلاک · شمع
   المان‌های شهادت در سراسر سایت
═══════════════════════════════════════════════════════ */

/* ────────────────────────────────────────
   ۱. TULIP DIVIDER  (جداکننده لاله)
   استفاده: بین هر دو section
──────────────────────────────────────── */
.tulip-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 420px;
  padding: 0.5rem 0;
}
.tulip-divider .td-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.45), transparent);
}
.tulip-divider .td-icon { flex-shrink: 0; }
.tulip-divider .td-icon svg { display: block; }

/* ────────────────────────────────────────
   ۲. SECTION HEADING  (عنوان با لاله)
──────────────────────────────────────── */
.sh-wrap {
  text-align: center;
  margin-bottom: 3rem;
}
.sh-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .5rem;
  font-weight: 500;
}
.sh-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: .8rem;
  line-height: 1.45;
}
.sh-tulips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  margin-bottom: 1rem;
}
.sh-tulips .sh-line {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.sh-tulips .sh-line.rev {
  background: linear-gradient(270deg, transparent, var(--gold));
}
.sh-desc {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto;
}

/* ────────────────────────────────────────
   ۳. DOG TAG BADGE  (پلاک رزمنده)
   استفاده: شماره آیتم در لیست یادمان‌ها
──────────────────────────────────────── */
.dogtag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='4' width='24' height='22' rx='3' fill='%23112240' stroke='%23c9a227' stroke-width='1.2'/%3E%3Ccircle cx='14' cy='8' r='2' stroke='%23c9a227' stroke-width='1' fill='none'/%3E%3Cline x1='6' y1='14' x2='22' y2='14' stroke='%23c9a227' stroke-width='.8' opacity='.5'/%3E%3Cline x1='6' y1='18' x2='22' y2='18' stroke='%23c9a227' stroke-width='.8' opacity='.5'/%3E%3Cline x1='6' y1='22' x2='17' y2='22' stroke='%23c9a227' stroke-width='.8' opacity='.5'/%3E%3C/svg%3E") center/contain no-repeat;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  position: relative;
}

/* ────────────────────────────────────────
   ۴. HERO WATERMARK TULIP
   لاله بزرگ در پس‌زمینه hero
──────────────────────────────────────── */
.hero-tulip-wm {
  position: absolute;
  bottom: -2rem;
  left: 2rem;
  width: 280px;
  opacity: .04;
  z-index: 2;
  pointer-events: none;
}
.hero-tulip-wm.right-side {
  left: auto;
  right: 2rem;
  transform: scaleX(-1);
}

/* ────────────────────────────────────────
   ۵. CANDLE ROW  (ردیف شمع‌ها)
   تزئین بالا/پایین section‌ها
──────────────────────────────────────── */
.candle-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.8rem;
  padding: 1.2rem 0 0;
  opacity: .55;
}
.candle-row.top { padding: 0 0 1.2rem; transform: scaleY(-1); }

/* ────────────────────────────────────────
   ۶. CITY LINK CARD  (کارت یادمان در مدال)
──────────────────────────────────────── */
.city-link-card {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem .9rem;
  margin-bottom: .35rem;
  background: var(--navy-mid);
  border: 1px solid transparent;
  border-radius: 3px;
  color: var(--text-light);
  text-decoration: none;
  transition: all .2s;
  font-size: .9rem;
  font-weight: 400;
}
.city-link-card:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,162,39,.07);
}
.city-link-card .clc-num {
  min-width: 22px;
  font-size: .72rem;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
}
.city-link-card .clc-tulip { flex-shrink: 0; }

/* ────────────────────────────────────────
   ۷. STATS ICONS  (آیکون در نوار آمار)
──────────────────────────────────────── */
.stat-icon {
  display: block;
  margin: 0 auto .5rem;
  opacity: .7;
}

/* ────────────────────────────────────────
   ۸. FOOTER WATERMARK
   لاله محو در فوتر
──────────────────────────────────────── */
.footer-tulip-wm {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  opacity: .025;
  pointer-events: none;
  z-index: 0;
}
.site-footer { position: relative; overflow: hidden; }
.site-footer .container { position: relative; z-index: 1; }

/* ────────────────────────────────────────
   ۹. MAP LEGEND TULIP
──────────────────────────────────────── */
.map-legend-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .6rem;
}
.map-legend-header span { color: var(--gold); font-size: .82rem; font-weight: 600; }

/* ────────────────────────────────────────
   ۱۰. VR SIDEBAR  (لیست یادمان در VR)
──────────────────────────────────────── */
.vr-sidebar-wrap {
  background: rgba(13,27,46,.7);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  height: 640px;
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.vr-sidebar-head {
  padding: .9rem 1.1rem .75rem;
  border-bottom: 1px solid rgba(201,162,39,.12);
  flex-shrink: 0;
}
.vr-sidebar-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-light);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .6rem;
}
.vr-sidebar-search {
  width: 100%;
  background: rgba(6,13,26,.4) !important;
  border: 1px solid rgba(201,162,39,.2) !important;
  color: var(--text-light) !important;
  border-radius: 999px !important;
  font-size: .82rem;
  padding: .4rem .9rem;
  outline: none;
  font-family: 'Estedad', Tahoma, sans-serif;
}
.vr-sidebar-search::placeholder { color: var(--text-muted); }
.vr-sidebar-search:focus { border-color: rgba(201,162,39,.5) !important; }
.vr-sidebar-list {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: .5rem .7rem;
}
.vr-sidebar-list::-webkit-scrollbar { width: 3px; }
.vr-sidebar-list::-webkit-scrollbar-thumb { background: rgba(201,162,39,.3); border-radius: 2px; }
.vr-city-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .7rem;
  margin-bottom: .22rem;
  border-radius: 10px;
  border: 1px solid transparent;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .82rem;
  transition: all .18s;
  line-height: 1.3;
}
.vr-city-item:hover, .vr-city-item.active {
  border-color: rgba(201,162,39,.35);
  color: var(--gold);
  background: rgba(201,162,39,.07);
}
.vr-city-item.active { background: rgba(201,162,39,.12); font-weight: 600; color: var(--gold); }
.vr-city-item .vci-num {
  font-size: .68rem;
  color: rgba(201,162,39,.5);
  min-width: 18px;
  text-align: center;
}
/* Pagination */
.vr-pagination {
  flex-shrink: 0;
  border-top: 1px solid rgba(201,162,39,.12);
  padding: .55rem .8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .4rem;
}
.vr-pg-btn {
  background: rgba(17,34,64,.6);
  border: 1px solid rgba(201,162,39,.2);
  color: var(--text-muted);
  border-radius: 999px;
  padding: .28rem .65rem;
  font-size: .75rem;
  cursor: pointer;
  transition: all .15s;
  font-family: 'Estedad', Tahoma, sans-serif;
}
.vr-pg-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.vr-pg-btn:disabled { opacity: .35; cursor: default; }
.vr-pg-info { font-size: .75rem; color: var(--text-muted); flex: 1; text-align: center; }

/* ────────────────────────────────────────
   ۱۱. MUSEUM CARD با پلاک تزئین
──────────────────────────────────────── */
.museum-card {
  background: var(--navy-mid);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 1.3rem 1rem 1rem;
  text-decoration: none;
  color: var(--text-light);
  display: block;
  transition: all .25s;
  margin-bottom: .8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.museum-card::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 48px; height: 48px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 64 C20 50 20 45 20 34' stroke='%232d6a2d' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M20 44 C26 42 30 36 28 28 C24 34 21 40 20 44Z' fill='%232d6a2d'/%3E%3Cpath d='M20 50 C14 48 10 42 12 34 C16 40 19 46 20 50Z' fill='%232d6a2d'/%3E%3Cpath d='M20 34 C16 28 8 24 6 14 C10 20 15 28 20 34Z' fill='%23651414'/%3E%3Cpath d='M20 34 C24 28 32 24 34 14 C30 20 25 28 20 34Z' fill='%23651414'/%3E%3Cpath d='M20 34 C17 24 17 16 20 6 C23 16 23 24 20 34Z' fill='%238b1a1a'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .18;
  transform: rotate(-15deg);
}
.museum-card:hover {
  background: rgba(201,162,39,.09);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}
.museum-card .mc-icon { margin-bottom: .5rem; }
.museum-card .mc-name { font-size: .88rem; font-weight: 500; }
