/* ============================================================
   ROMAK — استایل اصلی قالب وردپرس
   نسخه: 1.2.0
   نویسنده: تیم SLAPS
   فونت: Doran Pro FaNum
   ============================================================ */

/* ========================
   تعریف فونت Doran Pro FaNum
======================== */
@font-face {
  font-family: 'Doran FaNum';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/DoranFaNum-Thin.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Doran FaNum';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/DoranFaNum-Light.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Doran FaNum';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/DoranFaNum-Regular.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Doran FaNum';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/DoranFaNum-Medium.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Doran FaNum';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/DoranFaNum-Bold.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Doran FaNum';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/DoranFaNum-ExtraBold.woff2') format('woff2');
  font-display: swap;
}

:root {
  /* رنگ‌های اصلی برند */
  --romak-red: #D31122;
  --romak-red-dark: #A80D1B;
  --romak-red-glow: rgba(211, 17, 34, 0.45);
  --romak-black: #0A0A0A;
  --romak-ink: #1A1A1A;
  --romak-white: #FFFFFF;
  --romak-gold: #C9A961;
  --romak-gold-soft: #E6C875;
  --romak-gold-glow: rgba(201, 169, 97, 0.35);

  /* رنگ‌های خنثی */
  --romak-gray-50: #FAFAFA;
  --romak-gray-100: #F4F4F5;
  --romak-gray-200: #E4E4E7;
  --romak-gray-400: #A1A1AA;
  --romak-gray-600: #52525B;

  /* شیشه‌ای (Glass) */
  --romak-glass-bg: rgba(255, 255, 255, 0.06);
  --romak-glass-border: rgba(255, 255, 255, 0.12);
  --romak-glass-blur: 18px;

  /* سایه‌ها */
  --romak-shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.08);
  --romak-shadow-md: 0 8px 30px rgba(10, 10, 10, 0.12);
  --romak-shadow-lg: 0 20px 60px rgba(10, 10, 10, 0.18);
  --romak-shadow-gold: 0 10px 40px var(--romak-gold-glow);
  --romak-shadow-red: 0 10px 40px var(--romak-red-glow);

  /* شعاع گوشه */
  --romak-radius-sm: 6px;
  --romak-radius-md: 12px;
  --romak-radius-lg: 20px;
  --romak-radius-pill: 999px;

  /* فاصله‌گذاری */
  --romak-container: 1240px;
  --romak-gutter: 24px;
  --romak-section-y: 120px;
  --romak-section-y-mobile: 72px;

  /* زمان‌بندی انیمیشن */
  --romak-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --romak-dur: 0.6s;

  /* تایپوگرافی */
  --romak-font: 'Doran FaNum', 'Segoe UI', Tahoma, system-ui, sans-serif;
  --romak-font-display: 'Doran FaNum', 'Segoe UI', sans-serif;
}

/* ========================
   ریست و پایه
======================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--romak-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--romak-ink);
  background-color: var(--romak-white);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--romak-dur) var(--romak-ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* محدود کننده عرض محتوا */
.Container {
  width: 100%;
  max-width: var(--romak-container);
  margin-inline: auto;
  padding-inline: var(--romak-gutter);
}

/* ========================
   تایپوگرافی
======================== */
.Section_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--romak-red);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.Section_eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--romak-red), var(--romak-gold));
}

.Section_title {
  font-family: var(--romak-font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--romak-black);
  letter-spacing: -0.5px;
}

.Section_title span {
  color: var(--romak-red);
  position: relative;
}

.Section_subtitle {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--romak-gray-600);
  max-width: 640px;
  line-height: 1.85;
}

/* عناوین روی پس‌زمینه تیره */
.Section_dark .Section_title {
  color: var(--romak-white);
}
.Section_dark .Section_subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.Section_dark .Section_eyebrow {
  color: var(--romak-gold-soft);
}

/* ========================
   دکمه‌ها
======================== */
.Btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--romak-radius-pill);
  transition: all var(--romak-dur) var(--romak-ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0.2px;
}

.Btn_primary {
  background: linear-gradient(135deg, var(--romak-red), var(--romak-red-dark));
  color: var(--romak-white);
  box-shadow: var(--romak-shadow-red);
}

.Btn_primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px var(--romak-red-glow);
}

.Btn_gold {
  background: linear-gradient(135deg, var(--romak-gold-soft), var(--romak-gold));
  color: var(--romak-black);
  box-shadow: var(--romak-shadow-gold);
}

.Btn_gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px var(--romak-gold-glow);
}

.Btn_outline {
  background: transparent;
  color: var(--romak-white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.Btn_outline:hover {
  border-color: var(--romak-gold);
  color: var(--romak-gold-soft);
  transform: translateY(-3px);
}

.Btn_ghost {
  background: transparent;
  color: var(--romak-ink);
  border: 1.5px solid var(--romak-gray-200);
}

.Btn_ghost:hover {
  border-color: var(--romak-red);
  color: var(--romak-red);
}

/* درخشش متحرک روی دکمه اصلی */
.Btn_primary::after,
.Btn_gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--romak-ease);
}

.Btn_primary:hover::after,
.Btn_gold:hover::after {
  left: 130%;
}

/* ========================
   هدر و ناوبری
======================== */
.Header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  transition: all var(--romak-dur) var(--romak-ease);
  padding-block: 18px;
}

.Header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* حالت استیکی پس از اسکرول */
.Header.is-scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(var(--romak-glass-blur));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 12px;
  box-shadow: var(--romak-shadow-md);
}

/* لوگو */
.Header_logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.Header_logo_mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--romak-red), var(--romak-red-dark));
  color: var(--romak-white);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 1px;
  box-shadow: var(--romak-shadow-red);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.Header_logo_text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.Header_logo_title {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--romak-white);
  letter-spacing: 2px;
}

.Header_logo_subtitle {
  font-size: 0.62rem;
  color: var(--romak-gold-soft);
  letter-spacing: 4px;
  margin-top: 4px;
  text-transform: uppercase;
}

/* منوی ناوبری */
.Nav_list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.Nav_item {
  position: relative;
}

.Nav_item_link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--romak-radius-pill);
  transition: all var(--romak-dur) var(--romak-ease);
}

.Nav_item_link:hover {
  color: var(--romak-gold-soft);
  background: rgba(255, 255, 255, 0.06);
}

.Nav_item_link.is-active {
  color: var(--romak-gold-soft);
}

.Nav_item_link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--romak-gold);
  transition: width var(--romak-dur) var(--romak-ease);
}

.Nav_item_link:hover::after {
  width: 24px;
}

/* دکمه ثبت درخواست در هدر */
.Header_cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.Nav_item_btn {
  padding: 11px 24px;
  font-size: 0.9rem;
}

/* همبرگر منوی موبایل */
.Header_burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1001;
}

.Header_burger span {
  width: 22px;
  height: 2px;
  background: var(--romak-white);
  border-radius: 2px;
  transition: all var(--romak-dur) var(--romak-ease);
}

.Header_burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.Header_burger.is-open span:nth-child(2) {
  opacity: 0;
}
.Header_burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* پنل موبایل */
.Mobile_menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  padding-bottom: 40px;
  padding-inline: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: all var(--romak-dur) var(--romak-ease);
  overflow-y: auto;
}

.Mobile_menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* دکمه بستن در منوی موبایل */
.Mobile_menu_close {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--romak-white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--romak-dur) var(--romak-ease);
}

.Mobile_menu_close:hover {
  background: var(--romak-red);
  border-color: var(--romak-red);
}

/* لوگوی کوچک بالای منوی موبایل */
.Mobile_menu_logo {
  position: absolute;
  top: 24px;
  inset-inline-start: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--romak-white);
}

.Mobile_menu_logo_mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--romak-red), var(--romak-red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: var(--romak-shadow-red);
}

.Mobile_menu_logo_title {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 2px;
}

/* لیست آیتم‌های منو موبایل */
.Mobile_menu_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.Mobile_menu_link {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--romak-white);
  padding: 14px 24px;
  transition: color var(--romak-dur) var(--romak-ease), background var(--romak-dur) var(--romak-ease);
}

.Mobile_menu_link:hover {
  color: var(--romak-gold-soft);
  background: rgba(255, 255, 255, 0.04);
}

.Mobile_menu_link:hover {
  color: var(--romak-gold-soft);
}

.Mobile_menu_btn {
  margin-top: 16px;
}

/* ========================
   بخش Hero
======================== */
.Hero_section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--romak-black);
  color: var(--romak-white);
}

/* پس‌زمینه تصویر + تاری */
.Hero_background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.Hero_background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.Hero_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 75% 30%, rgba(211, 17, 34, 0.28), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(201, 169, 97, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.92) 100%);
}

.Hero_content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 80px;
}

.Hero_badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--romak-radius-pill);
  background: var(--romak-glass-bg);
  border: 1px solid var(--romak-glass-border);
  backdrop-filter: blur(var(--romak-glass-blur));
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--romak-gold-soft);
  margin-bottom: 28px;
}

.Hero_badge_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--romak-red);
  box-shadow: 0 0 12px var(--romak-red);
  animation: romak-pulse 2s infinite;
}

.Hero_title {
  font-family: var(--romak-font-display);
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
  max-width: 880px;
}

.Hero_title_highlight {
  background: linear-gradient(135deg, var(--romak-red), var(--romak-gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.Hero_description {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.Hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.Hero_stats_strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.Hero_stats_item {
  display: flex;
  flex-direction: column;
}

.Hero_stats_value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--romak-gold-soft);
  line-height: 1;
}

.Hero_stats_label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* عناصر شناور (Floating) */
.Hero_float {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.Hero_float_glow {
  top: 18%;
  inset-inline-start: 8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--romak-red-glow), transparent 70%);
  filter: blur(40px);
  animation: romak-float 8s ease-in-out infinite;
}

.Hero_float_orb {
  bottom: 14%;
  inset-inline-end: 12%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--romak-gold-glow), transparent 70%);
  filter: blur(50px);
  animation: romak-float 10s ease-in-out infinite reverse;
}

/* اسکرول‌دان پایین هیرو */
.Hero_scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 2px;
}

.Hero_scroll_mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  position: relative;
}

.Hero_scroll_mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--romak-gold-soft);
  animation: romak-scroll-dot 1.8s infinite;
}

/* ========================
   بخش اسلایدر نمایشگاه‌ها
======================== */
.Slider_section {
  padding-block: var(--romak-section-y);
  background: var(--romak-gray-50);
  position: relative;
  overflow: hidden;
}

.Slider_section::before {
  content: "";
  position: absolute;
  top: -120px;
  inset-inline-end: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--romak-gold-glow), transparent 70%);
  filter: blur(60px);
  opacity: 0.6;
}

.Slider_header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.Slider_controls {
  display: flex;
  gap: 12px;
}

.Slider_btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--romak-white);
  border: 1px solid var(--romak-gray-200);
  color: var(--romak-ink);
  transition: all var(--romak-dur) var(--romak-ease);
  box-shadow: var(--romak-shadow-sm);
  cursor: pointer;
}

.Slider_btn svg {
  transition: transform var(--romak-dur) var(--romak-ease);
}

.Slider_btn:hover {
  background: linear-gradient(135deg, var(--romak-red), var(--romak-red-dark));
  color: var(--romak-white);
  border-color: var(--romak-red);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--romak-red-glow);
}

.Slider_btn:hover svg {
  transform: scale(1.15);
}

.Slider_track_wrap {
  overflow: hidden;
  position: relative;
  margin-inline: -12px;
  padding-inline: 12px;
}

.Slider_track {
  display: flex;
  gap: 24px;
  transition: transform var(--romak-dur) var(--romak-ease);
  will-change: transform;
}

.Slider_card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--romak-white);
  border-radius: var(--romak-radius-lg);
  overflow: hidden;
  box-shadow: var(--romak-shadow-md);
  transition: all var(--romak-dur) var(--romak-ease);
  position: relative;
  border: 1px solid var(--romak-gray-100);
}

.Slider_card:hover {
  transform: translateY(-8px);
  box-shadow: var(--romak-shadow-lg);
}

.Slider_card_image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.Slider_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--romak-ease);
}

.Slider_card:hover .Slider_card_image img {
  transform: scale(1.08);
}

.Slider_card_country {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  padding: 6px 14px;
  background: var(--romak-glass-bg);
  backdrop-filter: blur(var(--romak-glass-blur));
  border: 1px solid var(--romak-glass-border);
  border-radius: var(--romak-radius-pill);
  color: var(--romak-white);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.Slider_card_body {
  padding: 26px 24px 28px;
}

.Slider_card_date {
  font-size: 0.78rem;
  color: var(--romak-red);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.Slider_card_title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--romak-black);
  margin-bottom: 8px;
  line-height: 1.4;
}

.Slider_card_city {
  font-size: 0.9rem;
  color: var(--romak-gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.Slider_card_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--romak-red);
  transition: gap var(--romak-dur) var(--romak-ease);
}

.Slider_card_btn:hover {
  gap: 14px;
}

.Slider_dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.Slider_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--romak-gray-200);
  transition: all var(--romak-dur) var(--romak-ease);
  cursor: pointer;
}

.Slider_dot.is-active {
  width: 32px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--romak-red), var(--romak-gold));
}

/* ========================
   بخش آمار و ارقام
======================== */
.Stats_section {
  padding-block: var(--romak-section-y);
  background: var(--romak-black);
  color: var(--romak-white);
  position: relative;
  overflow: hidden;
}

.Stats_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, var(--romak-red-glow), transparent 45%),
    radial-gradient(circle at 85% 50%, var(--romak-gold-glow), transparent 45%);
  opacity: 0.5;
}

.Stats_grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.Stats_item {
  text-align: center;
  padding: 24px 16px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.08);
}

.Stats_item:first-child {
  border-inline-start: none;
}

.Stats_value {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--romak-white), var(--romak-gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.Stats_suffix {
  font-size: 0.6em;
  color: var(--romak-red);
  -webkit-text-fill-color: var(--romak-red);
  margin-inline-start: 4px;
}

.Stats_label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ========================
   بخش درباره ما
======================== */
.About_section {
  padding-block: var(--romak-section-y);
  background: var(--romak-white);
  position: relative;
  overflow: hidden;
}

.About_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.About_image_wrap {
  position: relative;
  border-radius: var(--romak-radius-lg);
  overflow: hidden;
  box-shadow: var(--romak-shadow-lg);
}

.About_image_wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 1;
  background: linear-gradient(135deg, var(--romak-red), var(--romak-gold));
  border-radius: var(--romak-radius-lg);
  opacity: 0.5;
}

.About_image_wrap img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.About_image_badge {
  position: absolute;
  bottom: 24px;
  inset-inline-start: 24px;
  z-index: 2;
  padding: 18px 24px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(var(--romak-glass-blur));
  border: 1px solid var(--romak-glass-border);
  border-radius: var(--romak-radius-md);
  color: var(--romak-white);
}

.About_image_badge_value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--romak-gold-soft);
  line-height: 1;
}

.About_image_badge_label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.About_content .Section_title {
  margin-bottom: 20px;
}

.About_lead {
  font-size: 1.08rem;
  color: var(--romak-gray-600);
  line-height: 1.9;
  margin-bottom: 32px;
}

.About_values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.About_value_item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.About_value_icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(211, 17, 34, 0.1), rgba(201, 169, 97, 0.1));
  color: var(--romak-red);
  font-size: 1.2rem;
}

.About_value_title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--romak-black);
  margin-bottom: 4px;
}

.About_value_desc {
  font-size: 0.86rem;
  color: var(--romak-gray-600);
  line-height: 1.6;
}

/* ========================
   بخش خدمات
======================== */
.Services_section {
  padding-block: var(--romak-section-y);
  background: var(--romak-gray-50);
  position: relative;
}

.Services_header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.Services_header .Section_subtitle {
  margin-inline: auto;
}

.Services_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.Services_card {
  position: relative;
  padding: 38px 32px;
  background: var(--romak-white);
  border-radius: var(--romak-radius-lg);
  border: 1px solid var(--romak-gray-100);
  transition: all var(--romak-dur) var(--romak-ease);
  overflow: hidden;
}

.Services_card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--romak-red), var(--romak-gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--romak-dur) var(--romak-ease);
}

.Services_card:hover {
  transform: translateY(-6px);
  box-shadow: var(--romak-shadow-lg);
  border-color: transparent;
}

.Services_card:hover::before {
  transform: scaleX(1);
}

.Services_card_icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--romak-red), var(--romak-red-dark));
  color: var(--romak-white);
  font-size: 1.6rem;
  margin-bottom: 24px;
  box-shadow: var(--romak-shadow-red);
  transition: transform var(--romak-dur) var(--romak-ease);
}

.Services_card:hover .Services_card_icon {
  transform: rotate(-6deg) scale(1.05);
}

.Services_card_title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--romak-black);
  margin-bottom: 12px;
}

.Services_card_desc {
  font-size: 0.94rem;
  color: var(--romak-gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.Services_card_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--romak-red);
  transition: gap var(--romak-dur) var(--romak-ease);
}

.Services_card_link:hover {
  gap: 14px;
}

/* کارت طلایی ویژه */
.Services_card.is-featured {
  background: linear-gradient(160deg, var(--romak-black), #161616);
  color: var(--romak-white);
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.Services_card.is-featured .Services_card_title {
  color: var(--romak-white);
}

.Services_card.is-featured .Services_card_desc {
  color: rgba(255, 255, 255, 0.7);
}

.Services_card.is-featured .Services_card_icon {
  background: linear-gradient(135deg, var(--romak-gold-soft), var(--romak-gold));
  color: var(--romak-black);
}

.Services_card.is-featured .Services_card_link {
  color: var(--romak-gold-soft);
}

/* ========================
   بخش فرآیند همکاری (Timeline)
======================== */
.Process_section {
  padding-block: var(--romak-section-y);
  background: var(--romak-black);
  color: var(--romak-white);
  position: relative;
  overflow: hidden;
}

.Process_header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.Process_header .Section_subtitle {
  margin-inline: auto;
}

.Process_timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* خط افقی وسط */
.Process_timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.4), rgba(211, 17, 34, 0.4), rgba(201, 169, 97, 0.4), transparent);
}

.Process_step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.Process_step_number {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--romak-black);
  border: 2px solid var(--romak-gold);
  color: var(--romak-gold-soft);
  font-size: 1.4rem;
  font-weight: 900;
  position: relative;
  transition: all var(--romak-dur) var(--romak-ease);
}

.Process_step:hover .Process_step_number {
  background: linear-gradient(135deg, var(--romak-red), var(--romak-red-dark));
  border-color: var(--romak-red);
  color: var(--romak-white);
  transform: scale(1.08);
  box-shadow: var(--romak-shadow-red);
}

.Process_step_title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--romak-white);
  margin-bottom: 8px;
}

.Process_step_desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  padding-inline: 8px;
}

/* ========================
   بخش شعار برند (Parallax)
======================== */
.Slogan_section {
  position: relative;
  padding-block: 140px;
  background: var(--romak-black);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.Slogan_background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(211, 17, 34, 0.25), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.2), transparent 50%);
}

.Slogan_content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding-inline: 24px;
}

.Slogan_quote {
  font-size: 5rem;
  color: var(--romak-red);
  line-height: 0.5;
  opacity: 0.5;
  margin-bottom: 16px;
}

.Slogan_text {
  font-family: var(--romak-font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.4;
  color: var(--romak-white);
  letter-spacing: -0.5px;
}

.Slogan_text_highlight {
  background: linear-gradient(135deg, var(--romak-red), var(--romak-gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.Slogan_signature {
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--romak-gold-soft);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ========================
   بخش تماس با ما
======================== */
.Contact_section {
  padding-block: var(--romak-section-y);
  background: var(--romak-gray-50);
  position: relative;
}

.Contact_grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.Contact_info .Section_title {
  margin-bottom: 20px;
}

.Contact_channels {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
}

.Contact_channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: var(--romak-white);
  border-radius: var(--romak-radius-md);
  border: 1px solid var(--romak-gray-100);
  transition: all var(--romak-dur) var(--romak-ease);
}

.Contact_channel:hover {
  transform: translateX(-6px);
  border-color: var(--romak-red);
  box-shadow: var(--romak-shadow-md);
}

.Contact_channel_icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(211, 17, 34, 0.1), rgba(201, 169, 97, 0.1));
  color: var(--romak-red);
  font-size: 1.3rem;
}

.Contact_channel_label {
  font-size: 0.8rem;
  color: var(--romak-gray-600);
  margin-bottom: 4px;
}

.Contact_channel_value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--romak-black);
  direction: ltr;
  text-align: right;
}

/* فرم تماس */
.Contact_form {
  padding: 40px;
  background: var(--romak-white);
  border-radius: var(--romak-radius-lg);
  box-shadow: var(--romak-shadow-lg);
  border: 1px solid var(--romak-gray-100);
}

.Contact_form_title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--romak-black);
  margin-bottom: 8px;
}

.Contact_form_subtitle {
  font-size: 0.92rem;
  color: var(--romak-gray-600);
  margin-bottom: 28px;
}

.Form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.Form_group {
  margin-bottom: 16px;
}

.Form_label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--romak-ink);
  margin-bottom: 8px;
}

.Form_label .Form_required {
  color: var(--romak-red);
}

.Form_input,
.Form_select,
.Form_textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--romak-ink);
  background: var(--romak-gray-50);
  border: 1.5px solid var(--romak-gray-200);
  border-radius: var(--romak-radius-md);
  transition: all var(--romak-dur) var(--romak-ease);
}

.Form_input:focus,
.Form_select:focus,
.Form_textarea:focus {
  outline: none;
  border-color: var(--romak-red);
  background: var(--romak-white);
  box-shadow: 0 0 0 4px rgba(211, 17, 34, 0.08);
}

.Form_textarea {
  resize: vertical;
  min-height: 120px;
}

.Form_select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D31122' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 44px;
}

.Form_message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--romak-radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

.Form_message.is-success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.Form_message.is-error {
  display: block;
  background: rgba(211, 17, 34, 0.08);
  color: var(--romak-red);
  border: 1px solid rgba(211, 17, 34, 0.25);
}

.Contact_form_submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 1rem;
}

/* نقشه */
.Contact_map {
  margin-top: 24px;
  border-radius: var(--romak-radius-md);
  overflow: hidden;
  border: 1px solid var(--romak-gray-200);
  height: 180px;
}

.Contact_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

/* ========================
   فوتر
======================== */
.Footer {
  background: var(--romak-black);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.Footer::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--romak-gold), transparent);
}

.Footer_top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.Footer_brand .Header_logo {
  margin-bottom: 20px;
}

.Footer_about {
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.Footer_social {
  display: flex;
  gap: 12px;
}

.Footer_social_link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--romak-glass-bg);
  border: 1px solid var(--romak-glass-border);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  transition: all var(--romak-dur) var(--romak-ease);
}

.Footer_social_link:hover {
  background: var(--romak-red);
  color: var(--romak-white);
  border-color: var(--romak-red);
  transform: translateY(-3px);
}

.Footer_col_title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--romak-white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.Footer_col_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 2px;
  background: var(--romak-red);
}

.Footer_links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.Footer_links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--romak-dur) var(--romak-ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.Footer_links a::before {
  content: "›";
  color: var(--romak-gold);
  transform: rotate(180deg);
  font-size: 1.1rem;
}

.Footer_links a:hover {
  color: var(--romak-gold-soft);
  padding-inline-start: 6px;
}

.Footer_contact_item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  align-items: flex-start;
}

.Footer_contact_icon {
  flex-shrink: 0;
  color: var(--romak-red);
  font-size: 1rem;
  margin-top: 3px;
}

/* اعتبار SLAPS — خط ویژه */
.Footer_slaps {
  padding-block: 22px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

.Footer_slaps_link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 3px;
  padding: 4px 14px;
  margin-inline: 4px;
  position: relative;
  background: linear-gradient(135deg, var(--romak-red), var(--romak-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all var(--romak-dur) var(--romak-ease);
}

.Footer_slaps_link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--romak-red), var(--romak-gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  transition: opacity var(--romak-dur) var(--romak-ease);
}

.Footer_slaps_link:hover {
  letter-spacing: 5px;
  text-shadow: 0 0 22px var(--romak-red-glow);
}

.Footer_slaps_link:hover::before {
  opacity: 1;
}

/* خط پایین فوتر */
.Footer_bottom {
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}

.Footer_bottom_links {
  display: flex;
  gap: 20px;
}

.Footer_bottom_links a:hover {
  color: var(--romak-gold-soft);
}

/* ========================
   انیمیشن‌ها
======================== */
@keyframes romak-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

@keyframes romak-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
}

@keyframes romak-scroll-dot {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* افکت اسکرول‌ریویل */
.Reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--romak-ease), transform 0.9s var(--romak-ease);
  will-change: opacity, transform;
}

.Reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.Reveal_delay-1 { transition-delay: 0.1s; }
.Reveal_delay-2 { transition-delay: 0.2s; }
.Reveal_delay-3 { transition-delay: 0.3s; }
.Reveal_delay-4 { transition-delay: 0.4s; }
.Reveal_delay-5 { transition-delay: 0.5s; }

/* ========================
   ریسپانسیو
======================== */
@media (max-width: 1024px) {
  :root {
    --romak-section-y: 90px;
  }

  .Services_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .Stats_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .Stats_item {
    border-inline-start: none;
    border-block-start: 1px solid rgba(255, 255, 255, 0.08);
    padding-block: 20px;
  }

  .Stats_item:nth-child(-n+2) {
    border-block-start: none;
  }

  .Process_timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 20px;
  }

  .Process_timeline::before {
    display: none;
  }

  .Slider_card {
    flex: 0 0 calc(50% - 12px);
  }

  .Footer_top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --romak-section-y: 64px;
    --romak-gutter: 18px;
  }

  /* هدر موبایل */
  .Nav_list,
  .Header_cta .Nav_item_btn {
    display: none;
  }

  .Header_burger {
    display: flex;
  }

  /* هیرو */
  .Hero_content {
    padding-top: 110px;
  }

  .Hero_stats_strip {
    gap: 24px;
  }

  .Hero_stats_value {
    font-size: 1.4rem;
  }

  /* درباره ما */
  .About_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .About_image_wrap img {
    height: 360px;
  }

  .About_values {
    grid-template-columns: 1fr;
  }

  /* خدمات */
  .Services_grid {
    grid-template-columns: 1fr;
  }

  /* فرآیند */
  .Process_timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* اسلایدر */
  .Slider_card {
    flex: 0 0 calc(100% - 0px);
  }

  /* تماس */
  .Contact_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .Contact_form {
    padding: 28px 22px;
  }

  .Form_row {
    grid-template-columns: 1fr;
  }

  /* فوتر */
  .Footer_top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .Footer_bottom {
    flex-direction: column;
    text-align: center;
  }

  .Slogan_quote {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .Hero_actions {
    flex-direction: column;
    align-items: stretch;
  }

  .Hero_actions .Btn {
    width: 100%;
  }

  /* نوار آمار هیرو در موبایل افقی بماند */
  .Hero_stats_strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .Hero_stats_strip::-webkit-scrollbar { display: none; }
  .Hero_stats_item { flex-shrink: 0; min-width: 110px; }
  .Hero_stats_value { font-size: 1.5rem; }
  .Hero_stats_label { font-size: 0.74rem; white-space: nowrap; }
}

/* درشت‌نمایی و حرکت کاهش‌یافته */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .Reveal {
    opacity: 1;
    transform: none;
  }
}

/* اسکرول‌بار سفارشی */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--romak-gray-100);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--romak-red), var(--romak-gold));
  border-radius: 10px;
  border: 2px solid var(--romak-gray-100);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--romak-red);
}

/* انتخاب متن */
::selection {
  background: var(--romak-red);
  color: var(--romak-white);
}

/* ============================================================
   اصلاحات نسخه ۱.۱ — مودال‌ها، صفحه تکی، پنل لیدها، مدیر
   ============================================================ */

/* ========================
   مودال‌های جزئیات (نمایشگاه و خدمت)
======================== */
.Modal_overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: romak-modal-fade 0.3s var(--romak-ease);
}
@keyframes romak-modal-fade { from { opacity: 0; } to { opacity: 1; } }

.Modal_dialog {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--romak-white);
  border-radius: var(--romak-radius-lg);
  box-shadow: var(--romak-shadow-lg);
  animation: romak-modal-rise 0.4s var(--romak-ease);
}
@keyframes romak-modal-rise {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.Modal_dialog::-webkit-scrollbar { width: 8px; }
.Modal_dialog::-webkit-scrollbar-track { background: var(--romak-gray-100); }
.Modal_dialog::-webkit-scrollbar-thumb { background: var(--romak-gold); border-radius: 4px; }

.Modal_close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  color: var(--romak-white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--romak-dur) var(--romak-ease);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.Modal_close:hover { background: var(--romak-red); transform: rotate(90deg); }

.Modal_hero { position: relative; height: 320px; overflow: hidden; border-radius: var(--romak-radius-lg) var(--romak-radius-lg) 0 0; }
.Modal_hero img { width: 100%; height: 100%; object-fit: cover; }
.Modal_hero_overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.92) 100%); }
.Modal_hero_content { position: absolute; bottom: 0; inset-inline: 0; padding: 28px 32px; color: var(--romak-white); z-index: 1; }
.Modal_country { display: inline-flex; align-items: center; padding: 6px 14px; background: var(--romak-glass-bg); backdrop-filter: blur(var(--romak-glass-blur)); border: 1px solid var(--romak-glass-border); border-radius: var(--romak-radius-pill); font-size: 0.82rem; font-weight: 600; color: var(--romak-gold-soft); margin-bottom: 12px; }
.Modal_title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.3; margin-bottom: 8px; }
.Modal_date { display: inline-flex; align-items: center; font-size: 0.92rem; color: rgba(255, 255, 255, 0.8); }

.Modal_body { padding: 36px 32px; }
.Modal_section { margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--romak-gray-100); }
.Modal_section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.Modal_section_title { font-size: 1.1rem; font-weight: 800; color: var(--romak-black); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.Modal_section_title::before { content: ""; width: 4px; height: 22px; background: linear-gradient(180deg, var(--romak-red), var(--romak-gold)); border-radius: 2px; }
.Modal_description { font-size: 1rem; line-height: 2; color: var(--romak-gray-600); }

.Modal_highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.Modal_highlights li { display: flex; align-items: center; gap: 10px; font-size: 0.94rem; color: var(--romak-ink); padding: 12px 16px; background: var(--romak-gray-50); border-radius: var(--romak-radius-md); border: 1px solid var(--romak-gray-100); list-style: none; }
.Modal_highlight_dot { color: var(--romak-red); font-size: 0.85rem; flex-shrink: 0; }

.Modal_others { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.Modal_other_card { display: flex; align-items: center; gap: 14px; padding: 12px; background: var(--romak-gray-50); border: 1px solid var(--romak-gray-100); border-radius: var(--romak-radius-md); text-align: right; cursor: pointer; transition: all var(--romak-dur) var(--romak-ease); }
.Modal_other_card:hover { border-color: var(--romak-red); transform: translateX(-4px); box-shadow: var(--romak-shadow-sm); }
.Modal_other_card img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.Modal_other_icon { width: 56px; height: 56px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(211, 17, 34, 0.1), rgba(201, 169, 97, 0.1)); font-size: 1.5rem; flex-shrink: 0; }
.Modal_other_info { display: flex; flex-direction: column; gap: 4px; }
.Modal_other_name { font-size: 0.92rem; font-weight: 700; color: var(--romak-black); line-height: 1.4; }
.Modal_other_city { font-size: 0.8rem; color: var(--romak-gray-600); }
.Modal_cta { text-align: center; padding-top: 8px; }

.Modal_service_header { display: flex; align-items: center; gap: 20px; padding: 36px 32px 28px; background: linear-gradient(180deg, var(--romak-gray-50), var(--romak-white)); border-radius: var(--romak-radius-lg) var(--romak-radius-lg) 0 0; border-bottom: 1px solid var(--romak-gray-100); }
.Modal_service_header.is-featured { background: linear-gradient(160deg, var(--romak-black), #161616); border-bottom: 1px solid rgba(201, 169, 97, 0.2); }
.Modal_service_header.is-featured .Modal_title { color: var(--romak-white); }
.Modal_service_icon { width: 72px; height: 72px; font-size: 1.8rem; flex-shrink: 0; }

@media (max-width: 768px) {
  .Modal_overlay { padding: 0; align-items: flex-end; }
  .Modal_dialog { max-width: 100%; max-height: 92vh; border-radius: var(--romak-radius-lg) var(--romak-radius-lg) 0 0; }
  .Modal_hero { height: 220px; }
  .Modal_hero_content { padding: 20px; }
  .Modal_body { padding: 24px 20px; }
  .Modal_highlights, .Modal_others { grid-template-columns: 1fr; }
  .Modal_service_header { padding: 24px 20px; gap: 14px; }
  .Modal_service_icon { width: 56px; height: 56px; font-size: 1.4rem; }
}

/* ========================
   پنل شناور مشاهده درخواست‌های تماس
======================== */
.Leads_fab { position: fixed; bottom: 24px; inset-inline-start: 24px; z-index: 1500; display: flex; align-items: center; gap: 8px; padding: 14px 22px; background: linear-gradient(135deg, var(--romak-red), var(--romak-red-dark)); color: var(--romak-white); border-radius: var(--romak-radius-pill); box-shadow: 0 12px 36px var(--romak-red-glow); font-weight: 700; font-size: 0.92rem; cursor: pointer; transition: all var(--romak-dur) var(--romak-ease); border: none; }
.Leads_fab:hover { transform: translateY(-3px); box-shadow: 0 18px 48px var(--romak-red-glow); }
.Leads_fab_icon { font-size: 1.1rem; }
.Leads_panel_overlay { position: fixed; inset: 0; z-index: 1600; background: rgba(10, 10, 10, 0.6); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 24px; animation: romak-modal-fade 0.3s var(--romak-ease); }
.Leads_panel { width: 100%; max-width: 640px; max-height: 85vh; background: var(--romak-white); border-radius: var(--romak-radius-lg); box-shadow: var(--romak-shadow-lg); display: flex; flex-direction: column; overflow: hidden; animation: romak-modal-rise 0.4s var(--romak-ease); }
.Leads_panel_header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: linear-gradient(135deg, var(--romak-black), #161616); color: var(--romak-white); }
.Leads_panel_title { font-size: 1.1rem; font-weight: 800; }
.Leads_panel_actions { display: flex; gap: 8px; }
.Leads_refresh, .Leads_close { width: 34px; height: 34px; border-radius: 8px; background: var(--romak-glass-bg); border: 1px solid var(--romak-glass-border); color: var(--romak-white); font-size: 1rem; cursor: pointer; transition: all var(--romak-dur) var(--romak-ease); }
.Leads_refresh:hover { background: var(--romak-gold); color: var(--romak-black); border-color: var(--romak-gold); }
.Leads_close:hover { background: var(--romak-red); border-color: var(--romak-red); }
.Leads_panel_body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.Leads_count { font-size: 0.88rem; color: var(--romak-gray-600); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--romak-gray-100); }
.Leads_list { display: flex; flex-direction: column; gap: 14px; }
.Leads_empty { text-align: center; padding: 40px 20px; color: var(--romak-gray-600); line-height: 1.9; }
.Lead_card { padding: 16px 18px; background: var(--romak-gray-50); border: 1px solid var(--romak-gray-100); border-radius: var(--romak-radius-md); transition: all var(--romak-dur) var(--romak-ease); }
.Lead_card:hover { border-color: var(--romak-red); box-shadow: var(--romak-shadow-sm); }
.Lead_card_header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; gap: 12px; flex-wrap: wrap; }
.Lead_card_name { font-size: 1rem; font-weight: 800; color: var(--romak-black); }
.Lead_card_date { font-size: 0.76rem; color: var(--romak-gray-600); }
.Lead_card_meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.Lead_badge { padding: 4px 12px; background: rgba(211, 17, 34, 0.1); color: var(--romak-red); border-radius: var(--romak-radius-pill); font-size: 0.76rem; font-weight: 700; }
.Lead_card_phone, .Lead_card_email { font-size: 0.84rem; color: var(--romak-gray-600); text-decoration: none; transition: color var(--romak-dur) var(--romak-ease); }
.Lead_card_phone:hover, .Lead_card_email:hover { color: var(--romak-red); }
.Lead_card_company { font-size: 0.84rem; color: var(--romak-gray-600); margin-bottom: 8px; }
.Lead_card_message { font-size: 0.9rem; color: var(--romak-ink); line-height: 1.7; padding-top: 8px; border-top: 1px dashed var(--romak-gray-200); margin-top: 4px; }
@media (max-width: 768px) {
  .Leads_fab_label { display: none; }
  .Leads_fab { padding: 14px; }
  .Leads_panel_overlay { padding: 0; align-items: flex-end; }
  .Leads_panel { max-width: 100%; max-height: 90vh; border-radius: var(--romak-radius-lg) var(--romak-radius-lg) 0 0; }
}

/* ========================
   بخش مدیر/صاحب روماک
======================== */
.About_owner { margin-top: 56px; padding: 36px; background: linear-gradient(135deg, var(--romak-black), #161616); border-radius: var(--romak-radius-lg); display: flex; align-items: center; gap: 32px; position: relative; overflow: hidden; border: 1px solid rgba(201, 169, 97, 0.15); }
.About_owner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 50%, var(--romak-gold-glow), transparent 50%); opacity: 0.3; }
.About_owner > * { position: relative; z-index: 1; }
.About_owner_image_wrap { flex-shrink: 0; width: 140px; height: 140px; border-radius: 50%; overflow: hidden; border: 4px solid var(--romak-gold); box-shadow: var(--romak-shadow-gold); }
.About_owner_image { width: 100%; height: 100%; object-fit: cover; }
.About_owner_content { flex: 1; }
.About_owner_quote { font-size: 1.2rem; font-weight: 600; line-height: 1.7; color: var(--romak-white); font-style: italic; margin-bottom: 14px; padding-inline-start: 16px; border-inline-start: 3px solid var(--romak-gold); }
.About_owner_name { font-size: 1.15rem; font-weight: 800; color: var(--romak-gold-soft); margin-bottom: 4px; }
.About_owner_title { font-size: 0.92rem; color: rgba(255, 255, 255, 0.6); }
@media (max-width: 768px) {
  .About_owner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .About_owner_quote { border-inline-start: none; padding-inline-start: 0; border-top: 2px solid var(--romak-gold); padding-top: 16px; }
}

/* ========================
   صفحه جزئیات تکی (نمایشگاه / خدمت)
======================== */
.Single_hero { position: relative; min-height: 460px; display: flex; align-items: flex-end; overflow: hidden; background: var(--romak-black); color: var(--romak-white); margin-bottom: 56px; }
.Single_hero_image { position: absolute; inset: 0; z-index: 0; }
.Single_hero_image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.Single_hero_overlay { position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 80% 20%, rgba(211, 17, 34, 0.3), transparent 50%), linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.92) 100%); }
.Single_hero_content { position: relative; z-index: 2; padding-bottom: 48px; }
.Single_hero_eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; color: var(--romak-gold-soft); text-transform: uppercase; margin-bottom: 14px; }
.Single_hero_title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.2; margin-bottom: 18px; max-width: 800px; }
.Single_hero_meta { display: flex; flex-wrap: wrap; gap: 20px; }
.Single_meta_item { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--romak-glass-bg); backdrop-filter: blur(var(--romak-glass-blur)); border: 1px solid var(--romak-glass-border); border-radius: var(--romak-radius-pill); font-size: 0.88rem; font-weight: 600; color: var(--romak-white); }

.Single_service_header { background: linear-gradient(180deg, var(--romak-gray-50), var(--romak-white)); padding-block: 48px; margin-bottom: 48px; border-bottom: 1px solid var(--romak-gray-100); }
.Single_service_header.is-featured { background: linear-gradient(160deg, var(--romak-black), #161616); border-bottom: 1px solid rgba(201, 169, 97, 0.2); }
.Single_service_header.is-featured .Single_hero_title { color: var(--romak-white); }
.Single_service_header.is-featured .Section_eyebrow { color: var(--romak-gold-soft); }
.Single_service_header_inner { display: flex; align-items: center; gap: 24px; }
.Single_service_icon { width: 80px; height: 80px; font-size: 2rem; flex-shrink: 0; }

.Single_layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.Single_main { min-width: 0; }

.Single_gallery { margin-bottom: 40px; }
.Single_gallery_main { border-radius: var(--romak-radius-lg); overflow: hidden; box-shadow: var(--romak-shadow-lg); margin-bottom: 14px; }
.Single_gallery_main img { width: 100%; height: 440px; object-fit: cover; display: block; }
.Single_gallery_thumbs { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 4px; }
.Single_gallery_thumb { flex-shrink: 0; width: 96px; height: 72px; border-radius: 10px; overflow: hidden; cursor: pointer; border: 2px solid transparent; opacity: 0.7; transition: all var(--romak-dur) var(--romak-ease); }
.Single_gallery_thumb:hover, .Single_gallery_thumb.is-active { border-color: var(--romak-red); opacity: 1; }
.Single_gallery_thumb img { width: 100%; height: 100%; object-fit: cover; }

.Single_content_section, .Single_details_box { margin-bottom: 40px; }
.Single_section_title { font-size: 1.35rem; font-weight: 800; color: var(--romak-black); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.Single_section_title::before { content: ""; width: 5px; height: 26px; background: linear-gradient(180deg, var(--romak-red), var(--romak-gold)); border-radius: 3px; }
.Single_content { font-size: 1.05rem; line-height: 2.1; color: var(--romak-ink); }
.Single_content p { margin-bottom: 18px; }
.Single_content h2, .Single_content h3 { color: var(--romak-black); margin-top: 28px; margin-bottom: 14px; }

.Single_details_box { padding: 28px; background: var(--romak-gray-50); border-radius: var(--romak-radius-lg); border: 1px solid var(--romak-gray-100); }
.Single_details_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.Single_detail_item { display: flex; align-items: center; gap: 14px; }
.Single_detail_icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(211, 17, 34, 0.1), rgba(201, 169, 97, 0.1)); font-size: 1.3rem; }
.Single_detail_label { font-size: 0.78rem; color: var(--romak-gray-600); margin-bottom: 2px; }
.Single_detail_value { font-size: 1rem; font-weight: 700; color: var(--romak-black); }

.Single_cta_box { padding: 36px; background: linear-gradient(135deg, var(--romak-black), #161616); border-radius: var(--romak-radius-lg); text-align: center; color: var(--romak-white); margin-bottom: 48px; position: relative; overflow: hidden; }
.Single_cta_box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, var(--romak-red-glow), transparent 50%), radial-gradient(circle at 80% 50%, var(--romak-gold-glow), transparent 50%); opacity: 0.4; }
.Single_cta_box > * { position: relative; z-index: 1; }
.Single_cta_box h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.Single_cta_box p { color: rgba(255, 255, 255, 0.75); margin-bottom: 24px; }

.Single_comments { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--romak-gray-100); }

.Single_sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 28px; }
.Single_sidebar_title { font-size: 1.05rem; font-weight: 800; color: var(--romak-black); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--romak-red); display: inline-block; }
.Single_related_list { display: flex; flex-direction: column; gap: 12px; }
.Single_related_card { display: flex; align-items: center; gap: 14px; padding: 12px; background: var(--romak-white); border: 1px solid var(--romak-gray-100); border-radius: var(--romak-radius-md); transition: all var(--romak-dur) var(--romak-ease); text-decoration: none; color: inherit; }
.Single_related_card:hover { border-color: var(--romak-red); transform: translateX(-4px); box-shadow: var(--romak-shadow-sm); }
.Single_related_thumb { flex-shrink: 0; width: 56px; height: 56px; border-radius: 10px; overflow: hidden; }
.Single_related_thumb img { width: 100%; height: 100%; object-fit: cover; }
.Single_related_thumb_icon { display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: linear-gradient(135deg, rgba(211, 17, 34, 0.1), rgba(201, 169, 97, 0.1)); }
.Single_related_info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.Single_related_title { font-size: 0.9rem; font-weight: 700; color: var(--romak-black); line-height: 1.4; }
.Single_related_meta { font-size: 0.78rem; color: var(--romak-gray-600); }

.Single_sidebar_contact { padding: 24px; background: var(--romak-gray-50); border-radius: var(--romak-radius-lg); border: 1px solid var(--romak-gray-100); }

@media (max-width: 1024px) {
  .Single_layout { grid-template-columns: 1fr; }
  .Single_sidebar { position: static; order: 2; }
}
@media (max-width: 768px) {
  .Single_hero { min-height: 340px; }
  .Single_gallery_main img { height: 280px; }
  .Single_details_grid { grid-template-columns: 1fr; gap: 16px; }
  .Single_service_header_inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .Single_cta_box { padding: 28px 20px; }
}

/* ========================
   حالت خالی (نبود نمایشگاه/خدمت)
======================== */
.Slider_empty, .Services_empty {
  grid-column: 1 / -1;
  padding: 60px 24px;
  background: var(--romak-gray-50);
  border: 2px dashed var(--romak-gray-200);
  border-radius: var(--romak-radius-lg);
  text-align: center;
  color: var(--romak-gray-600);
}

.Slider_empty p, .Services_empty p {
  font-size: 1rem;
  margin: 0;
}
