/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: "Vazirmatn", sans-serif;
  background: #fff;
  color: #0f172a;
  overflow-x: hidden;
}
i {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===========================
   GLOBAL HEADER (GLASS EFFECT)
=========================== */
.glassy-nav {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
  z-index: 1050;

  /* optional glass */
  /* background: rgba(255, 255, 255, 0.10); */
  /* backdrop-filter: blur(12px) saturate(180%); */
  /* -webkit-backdrop-filter: blur(12px) saturate(180%); */
}

/* On Scroll */
.glassy-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* ===========================
   BRAND
=========================== */
.brand-logo {
  height: 40px;
  width: auto;
  transition: opacity 0.25s ease;
}

/* ===========================
   NAV LINKS
=========================== */
.glassy-nav .nav-link {
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  color: #fff !important;
  transition: color 0.25s ease;
}

/* underline on hover */
.glassy-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background: #00a3ff;
  transition: width 0.3s ease;
}
.glassy-nav .nav-link:hover::after {
  width: 100%;
}

/* scrolled link color */
.glassy-nav.scrolled .nav-link {
  color: #111 !important;
}

/* ===========================
   BUTTONS
=========================== */
.glassy-nav .btn-outline-glass,
.glassy-nav .btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 5px;
  white-space: nowrap;
}

/* Outline button */
.glassy-nav .btn-outline-glass {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.glassy-nav .btn-outline-glass:hover {
  background: rgba(0, 163, 255, 0.15);
  border-color: #00a3ff;
  color: #fff;
}

/* scrolled outline button */
.glassy-nav.scrolled .btn-outline-glass {
  color: #111;
  background: rgb(239, 239, 239);
  border-color: rgba(0, 0, 0, 0.2);
}

/* Brand button (if you add one later) */
.glassy-nav .btn-brand {
  background: #00a3ff;
  color: #fff;
  border: 1px solid transparent;
  transition: background 0.25s ease;
}
.glassy-nav .btn-brand:hover {
  background: #0095ea;
}

/* ===========================
   NAVBAR TOGGLER
=========================== */
.glassy-nav .navbar-toggler {
  border: none;
}
.glassy-nav .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* make toggler icon color follow header state */
.glassy-nav .navbar-toggler i {
  color: #fff;
}
.glassy-nav.scrolled .navbar-toggler i {
  color: #111;
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 991.98px) {
  .glassy-nav {
    background: rgba(255, 255, 255, 0.98);
    /* optional */
    /* backdrop-filter: blur(10px); */
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  }

  .glassy-nav .nav-link {
    color: #111 !important;
    font-size: 1.05rem;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .brand-logo {
    height: 32px;
  }

  /* outline on mobile */
  .glassy-nav .btn-outline-glass {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: #111;
  }
  .glassy-nav .btn-outline-glass:hover {
    background: #e5e7eb;
    border-color: #cbd5e1;
    color: #000;
  }

  /* toggler icon always dark on mobile (since header bg is white) */
  .glassy-nav .navbar-toggler i {
    color: #111;
  }
}
/* Main hero wrapper */
.hero-section {
  width: 100%;
  min-height: 92vh;
  padding-top: 130px; /* leaves space for navbar */
  background: linear-gradient(
      to bottom,
      rgba(0, 7, 15, 0.9),
      rgba(0, 20, 40, 0.566)
    ),
    url("/src/img//eskanParsMainBgImg.webp") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #ffffff;
}

/* Glass glow overlay */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(255, 255, 255, 0.15),
    transparent 65%
  );
  pointer-events: none;
}

/* Titles */
.hero-section h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}

.hero-section h4 {
  font-weight: 500;
  opacity: 0.9;
}

.text-brand {
  color: #3ea8ff !important;
}

/* Hero text responsive tweaks for small devices */
@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 110px; /* a bit less space on small phones */
  }

  .hero-section h4 {
    font-size: 0.95rem;
  }

  .hero-section h1 {
    font-size: 1.65rem;
  }

  .hero-section h5 {
    font-size: 0.9rem;
  }
}

/* ============================================
   SEARCH BOX – Glass, Minimal, RTL Friendly
   ============================================ */

/* Outer form width */
.nebka-search {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* Glass container */
.search-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(49, 143, 227, 0.25);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* Top row: search input + button */
.search-input-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d6e3f5;
}

/* Input itself */
.search-input {
  flex: 1;
  padding: 0.9rem 1rem;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #111111;
}

.search-input::placeholder {
  color: #9b9b9b;
}

/* Search button */
.search-btn {
  background: #318fe3;
  color: #ffffff;
  padding: 1.2rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.search-btn:hover {
  background: #2175c4;
  transform: translateY(-1px);
}

/* Remove native select arrow on filters */
.no-arrow {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: none !important;
}

/* Responsive tweaks for search area on small phones */
@media (max-width: 575.98px) {
  .search-container {
    padding: 0.75rem;
  }

  .search-input {
    padding: 0.75rem 0.85rem;
    font-size: 0.95rem;
  }

  .search-btn {
    padding: 1rem 1.3rem;
  }
}

/* ============================================
   FILTERS ROW – Pills + Horizontal Scroll
   ============================================ */

/* Wrapper for filter selects + checkboxes */
.filters-wrapper {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-top: 0.8rem;
  padding-bottom: 0.4rem;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox hide scrollbar */
  -ms-overflow-style: none; /* IE/Edge */
}

.filters-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Base style for filter pills */
.filter-item,
.filter-check {
  min-width: 110px;
  background: #ffffff;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  font-size: 0.85rem;
  white-space: nowrap;
  color: #111111;
}

/* Checkbox pill (label) */
.filter-check {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Smaller pills on small devices so more fit on screen */
@media (max-width: 575.98px) {
  .filter-item {
    min-width: 90px;
    font-size: 0.8rem;
  }

  .filter-check {
    min-width: 85px;
    font-size: 0.8rem;
  }
}

/* ============================================
   DROPDOWN – Suggestions / Recent Searches
   ============================================ */

#searchDropdown {
  background: #ffffff;
  border-radius: 14px;
  margin-top: 10px;
  border: 1px solid #d6e3f5;
  max-height: 280px;
  overflow-y: auto;
  width: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
  animation: dropFade 0.25s ease;
  padding: 0;

  /* Scrollbar hidden but scrollable */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#searchDropdown::-webkit-scrollbar {
  display: none;
}

/* Dropdown show animation */
@keyframes dropFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section title inside dropdown (Suggestions / Recent) */
.section-title {
  padding: 8px 14px;
  font-weight: 700;
  color: #318fe3;
  background: #f2f8ff;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}

/* List wrapper */
.search-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Each suggestion / recent item */
.search-item {
  padding: 12px 14px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  direction: ltr;
  color: #333333;
  transition: background 0.18s ease;
  border-bottom: 1px solid #f2f2f2;
  cursor: pointer;
}

.search-item i {
  font-size: 1rem;
  color: #318fe3;
}

/* Hover state */
.search-item:hover {
  background: #eef6ff;
}

/* Empty state */
.search-empty {
  padding: 14px;
  text-align: center;
  font-size: 0.85rem;
  color: #999999;
}

/* Delete button (recent searches) */
.delete-btn {
  font-size: 1rem;
  cursor: pointer;
  color: #cc0000;
  transition: color 0.15s ease;
}

.delete-btn:hover {
  color: #990000;
}

/* ============================================
   PROPERTY TYPE CARDS – Trendy, Scrollable Row
   ============================================ */

/* Wrapper */
.type-row-wrapper {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* Row – دکوری، گرید تمیز، بدون اسکرول */
.type-row {
  flex-wrap: wrap !important; /* بشکنه تو چند ردیف */
  justify-content: center; /* زیر محتوا قشنگ وسط */
  gap: 0.75rem !important; /* فاصله‌ی بین کارت‌ها */
  overflow-x: visible; /* اسکرول افقی نداشته باشه */
  padding: 0.25rem 0;
}

/* هر col فقط اندازه‌ی محتوا، اجازه‌ی رفتن به ردیف بعد */
.type-row > .col {
  flex: 0 0 auto !important;
}

/* کارت‌ها – مینیمال شیشه‌ای */
.type-card {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 0.8rem 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;

  cursor: default; /* فقط دکوری */
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, background-color 0.25s ease;

  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
}

/* Hover – افکت نرم، نه اغراق‌شده */
.type-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: rgba(62, 168, 255, 0.9);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
}

/* Icon */
.type-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

/* Label */
.type-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
}

/* 📱 موبایل: کمی جمع‌وجورتر */
@media (max-width: 575.98px) {
  .type-card {
    width: 72px;
    height: 72px;
    padding: 0.6rem 0.45rem;
    gap: 0.45rem;
  }

  .type-icon {
    width: 24px;
    height: 24px;
  }

  .type-label {
    font-size: 0.66rem;
  }
}

/* 💻 دسکتاپ بزرگ: یک‌کم نفس */
@media (min-width: 1200px) {
  .type-card {
    width: 100px;
    height: 100px;
  }

  .type-icon {
    width: 44px;
    height: 44px;
  }
}
/* =======================================
   SPECIAL FILES SECTION (عنوان + بدج‌ها)
======================================= */

.ep-special-files {
  background: #f7faff;
  border-top: 1px solid #e3eefb;
  border-bottom: 1px solid #e3eefb;
}

.ep-special-files h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.ep-special-files p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #555555;
}

/* Badge chips */
.ep-badge {
  background: #e8f3ff;
  color: #318fe3;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(49, 143, 227, 0.25);
  transition: 0.24s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ep-badge::before {
  content: "●";
  font-size: 0.55rem;
}

.ep-badge:hover {
  background: #318fe3;
  color: #ffffff;
  border-color: #318fe3;
  transform: translateY(-2px);
}

/* در موبایل فاصله‌ها کمی جمع‌وجورتر شوند */
@media (max-width: 575.98px) {
  .ep-special-files {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .ep-special-files p {
    font-size: 0.9rem;
  }

  .ep-badge {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}

/* =======================================
   ALBUM SLIDER – EskanPars Premium
======================================= */

/* WRAPPER */
.album-slider {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto 3rem;
  padding-block: 0.75rem;
}

/* ==== ARROWS – Glass buttons ==== */
.album-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 46px;
  height: 46px;

  border-radius: 50%;
  border: 1px solid rgba(0, 45, 90, 0.45);

  background: rgba(28, 107, 203, 0.45);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.3rem;
  color: #e8f0ff;
  cursor: pointer;

  transition: 0.25s ease;
  box-shadow: 0 10px 28px rgba(0, 15, 35, 0.45);
}

/* Hover */
.album-arrow:hover {
  background: rgba(49, 143, 227, 0.35);
  border-color: rgba(49, 143, 227, 0.65);
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 40px rgba(49, 143, 227, 0.55);
}

/* Positions */
.album-arrow--left {
  left: 10px;
}
.album-arrow--right {
  right: 10px;
}

/* کوچیک‌تر روی موبایل */
@media (max-width: 767.98px) {
  .album-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
    box-shadow: 0 6px 16px rgba(0, 15, 35, 0.4);
  }
}

/* ==== VIEWPORT ==== */
.album-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-block: 10px;
  direction: rtl;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.album-viewport::-webkit-scrollbar {
  display: none;
}

/* روی موبایل: padding کمتر تا فضا هدر نره */
@media (max-width: 767.98px) {
  .album-viewport {
    padding-inline: 16px;
  }
}

/* ==== TRACK ==== */
.album-track {
  display: flex;
  gap: 16px;
  padding-inline: 4px;
}

/* هر ستون (col-*) در نقش اسلاید مستقل */
.album-track > [class*="col-"] {
  flex: 0 0 80%;
  max-width: 80%;
  scroll-snap-align: start;
}

/* روی تبلت */
@media (min-width: 576px) {
  .album-track > [class*="col-"] {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* روی دسکتاپ عادی */
@media (min-width: 992px) {
  .album-track > [class*="col-"] {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

/* روی مانیتورهای بزرگ */
@media (min-width: 1400px) {
  .album-track > [class*="col-"] {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* ==== CARD ==== */
.album-card {
  border-radius: 10px;
  border: 1px solid #e3e7f0;
  overflow: hidden;
  background: #ffffff;
  /* box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08); */
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.album-card:hover {
  border-color: #318fe3;
}

/* ==== IMAGE ==== */
.album-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

@media (max-width: 575.98px) {
  .album-img {
    height: 170px;
  }
}

/* ==== ICON BUTTONS (top-left glass) ==== */
.album-card-icons {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.album-glass-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(28, 107, 203, 0.45);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(0, 45, 90, 0.45);

  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.22s ease;
}

.album-glass-btn:hover {
  background: rgba(52, 144, 227, 0.65);
  transform: translateY(-1px) scale(1.02);
}

.album-glass-btn img {
  width: 18px;
  height: 18px;
}

/* ==== BODY / TEXT ==== */
.album-card .card-body {
  padding: 0.9rem 0.95rem 0.85rem;
}

.album-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111111;
}

/* Address row */
.album-address {
  font-size: 0.83rem;
  color: #777777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.album-address-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}

.album-address i {
  color: #3490e3;
  flex-shrink: 0;
}

/* Specs row (متراژ، خواب، سن بنا) */
.album-specs-container {
  width: 100%;
}

.album-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #444444;
}

.album-spec img {
  width: 22px;
  height: 22px;
}

/* Prices */
.album-prices .price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 0.84rem;
}

.price-label {
  font-weight: 600;
  color: #444444;
}

.price-value {
  font-weight: 700;
  color: #111111;
}

/* Divider */
.album-card hr {
  margin: 0.75rem 0 0.6rem;
}

/* Meta (تاریخ، کد فایل) */
.album-meta span {
  font-size: 0.78rem;
  background: #f8f9fc;
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #555555;
}

/* کمی جمع‌وجورتر روی موبایل */
@media (max-width: 575.98px) {
  .album-card .card-body {
    padding: 0.8rem 0.8rem 0.75rem;
  }

  .album-title {
    font-size: 0.93rem;
  }

  .album-address {
    font-size: 0.8rem;
  }

  .album-spec {
    font-size: 0.78rem;
  }

  .album-prices .price-row {
    font-size: 0.8rem;
  }
}
@media (max-width: 398px) {
  .album-meta span {
    font-size: 0.58rem;
  }
  .album-spec {
    font-size: 0.6rem;
  }
  .album-spec img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 338px) {
  .album-meta span {
    font-size: 0.38rem;
  }
}
/* ================================
   WHY ESKAN PARS — Trendy Glass Section
================================ */

/* SECTION WRAPPER */
.eskan-why {
  width: 100%;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 7, 15, 0.94),
      rgba(0, 20, 40, 0.96)
    ),
    url("/src/img/Why-Choose-Us (1).webp") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* subtle glow layer */
.eskan-why::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(49, 143, 227, 0.23),
      transparent 60%
    ),
    radial-gradient(circle at 85% 80%, rgba(0, 255, 186, 0.18), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* bring content above overlay */
.eskan-why .container-xxl {
  position: relative;
  z-index: 1;
}

/* ================================
   HEADER
================================ */
.eskan-why__head {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.eskan-why__title {
  font-size: clamp(1.6rem, 2.7vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.4px;
}

.eskan-why__subtitle {
  margin-top: 0.9rem;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: #d5dee9;
  line-height: 1.9;
}

/* زیرلاین ظریف زیر تیتر */
.eskan-why__head::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  margin: 1.2rem auto 0;
  background: linear-gradient(90deg, #318fe3, #4ade80);
  opacity: 0.8;
}

/* ================================
   GRID WRAPPER
================================ */
.eskan-why__grid {
  margin-top: clamp(2rem, 4vw, 2.8rem);
}

/* ================================
   FEATURE CARD
================================ */
.eskan-feature {
  position: relative;
  background: rgba(10, 21, 40, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-radius: 18px;
  padding: 1.7rem 1.4rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease,
    background 0.3s ease;
  height: 100%;
  overflow: hidden;
}

/* gradient border glow */
.eskan-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(49, 143, 227, 0.8),
    rgba(45, 212, 191, 0.7)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.eskan-feature:hover::before {
  opacity: 1;
}

.eskan-feature:hover {
  transform: translateY(-8px);
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.85);
  border-color: transparent;
}

/* INNER CONTENT (برای این‌که border-gradient لبه را نگه دارد) */
.eskan-feature > * {
  position: relative;
  z-index: 1;
}

/* ICON WRAP */
.eskan-feature__icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.7);
}

.eskan-feature__icon-wrap img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* FEATURE TITLE */
.eskan-feature__title {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

/* FEATURE TEXT */
.eskan-feature__text {
  font-size: 0.9rem;
  color: #e5e7eb;
  line-height: 1.8;
}

/* ================================
   RESPONSIVE TWEAKS
================================ */

/* Tablet */
@media (max-width: 991.98px) {
  .eskan-feature {
    padding: 1.5rem 1.15rem 1.4rem;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .eskan-why {
    padding: 2.4rem 0 2.8rem;
  }

  .eskan-why__subtitle {
    font-size: 0.88rem;
  }

  .eskan-feature {
    padding: 1.4rem 1rem 1.3rem;
    border-radius: 16px;
  }

  .eskan-feature__icon-wrap {
    width: 62px;
    height: 62px;
    margin-bottom: 0.85rem;
  }

  .eskan-feature__icon-wrap img {
    width: 34px;
    height: 34px;
  }

  .eskan-feature__title {
    font-size: 0.98rem;
  }

  .eskan-feature__text {
    font-size: 0.85rem;
  }
}
/* ===========================
   APP INTRO — Trend, Responsive
=========================== */

.app-intro {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: radial-gradient(
    circle at top left,
    #e0f2ff 0,
    #f8fafc 45%,
    #eef2ff 100%
  );
}

/* متن + کارت گلس برای توضیحات اپ */
.app-intro-box {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: clamp(1.5rem, 2vw, 2rem);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* تیتر و توضیحات */
.app-intro-box h2 {
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  color: #0f172a;
}

.app-intro-box p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #4b5563;
}

/* دکمه دانلود – کمی ترندی‌تر */
.app-intro .btn-brand {
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

/* ===========================
   VIDEO SIDE
=========================== */

.app-intro .position-relative {
  /* مطمئن شو والدِ ویدیو نسبی باشه (ستون چپ) */
  min-height: 260px;
}

/* دایره گرادیانی پشت ویدیو */
.video-circle {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 30% 30%, #4ba8ff, #318fe3);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: drop-shadow(0 18px 45px rgba(49, 143, 227, 0.35));
  opacity: 0.95;
  animation: floatCircle 8s ease-in-out infinite;
}

/* خود فریم ویدیو */
.app-video-landscape {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.4);
  background: #020617;
}

/* رینگ ظریف دور ویدیو (گرادیانی) */
.app-video-landscape::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(49, 143, 227, 0.9),
    rgba(45, 212, 191, 0.85)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  pointer-events: none;
}

/* خود ویدیو */
.app-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* حرکت نرم دایره */
@keyframes floatCircle {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-14px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

/* ===========================
   RESPONSIVE TWEAKS
=========================== */

/* تا تبلت */
@media (max-width: 991.98px) {
  .app-intro {
    padding: 3rem 0 3.5rem;
  }

  /* متن وسط‌چین روی موبایل/تبلت */
  .app-intro .col-lg-6.text-end {
    text-align: center !important;
  }

  .app-intro .col-lg-6.px-5 {
    padding-inline: 1.25rem !important;
  }

  .video-circle {
    width: 280px;
    height: 280px;
    left: 50%;
  }

  .app-video-landscape {
    max-width: 380px;
    border-radius: 22px;
  }

  /* دکمه روی اسکرین‌های کوچیک‌تر */
  .app-intro .btn-brand {
    min-width: 220px;
  }
}

/* موبایل ریز */
@media (max-width: 575.98px) {
  .video-circle {
    width: 280px;
    height: 280px;
  }

  .app-video-landscape {
    max-width: 280px;
    border-radius: 18px;
  }

  .app-intro-box {
    margin-bottom: 2.2rem;
  }

  /* دکمه فول‌عرض روی موبایل */
  .app-intro .btn-brand {
    width: 100% !important;
  }
}

/* ===========================
   PACKAGES SECTION – Trendy
=========================== */

.packages {
  background: radial-gradient(
    circle at top,
    #eef3fb 0,
    #f9fafb 45%,
    #ffffff 100%
  );
}

/* تیتر اصلی سکشن */
.packages h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: #111;
  position: relative;
  display: inline-block;
}

.packages h2::after {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  right: 50%;
  transform: translateX(50%);
  width: 70px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3490e3, #2779bd);
  opacity: 0.85;
}

/* ===========================
   CARD BASE
=========================== */

.pack-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out,
    border-color 0.22s ease-out;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

/* هاله بالای کارت (خط گرادیانی خیلی ظریف) */
.pack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 3px solid transparent;
  background: linear-gradient(
      90deg,
      rgba(52, 144, 227, 0.7),
      rgba(39, 121, 189, 0.3)
    )
    border-box;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* Hover کارت‌ها */
.pack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(52, 144, 227, 0.8);
}
.pack-card:hover::before {
  opacity: 1;
}

/* ===========================
   SPECIAL PLAN
=========================== */

.pack-special {
  background: linear-gradient(145deg, #3490e3, #2779bd) !important;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.35);
  border-color: transparent;
}

/* برچسب "محبوب‌ترین" بالای پلن ویژه */
.pack-special::after {
  content: "پیشنهاد اسکان پارس";
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #1f2937;
  font-weight: 700;
}

/* متن‌ها داخل پلن ویژه */
.pack-special .pack-title,
.pack-special .pack-subtitle,
.pack-special .pack-list li {
  color: #ffffff !important;
}

/* ===========================
   IMAGE
=========================== */

.pack-img {
  width: clamp(80px, 22vw, 110px);
  height: clamp(80px, 22vw, 110px);
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 2px solid #3490e3;
}

/* تو ویژه، حلقه سفید با خط آبی */
.pack-special .pack-img {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
}

/* ===========================
   TEXTS
=========================== */

.pack-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  text-align: right;
  color: #111827;
}

.pack-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 1rem;
  text-align: right;
}

.pack-list {
  font-size: 0.9rem;
  line-height: 1.9;
  padding: 0;
  margin: 0 0 1.4rem 0;
  list-style: none;
  text-align: right;
}

/* جداکننده خیلی ظریف بین آیتم‌ها */
.pack-list li + li {
  border-top: 1px dashed #e5e7eb;
  padding-top: 0.4rem;
  margin-top: 0.2rem;
}

/* ===========================
   BUTTON
=========================== */

.pack-btn {
  background: #3490e3;
  color: #ffffff;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  margin-top: auto;
  box-shadow: 0 8px 20px rgba(52, 144, 227, 0.25);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pack-btn i {
  font-size: 1rem;
}

.pack-btn:hover {
  background: #2779bd;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(52, 144, 227, 0.35);
}

/* دکمه در پلن ویژه – معکوس ولی با همون رنگ‌ها */
.pack-special .pack-btn {
  background: #ffffff;
  color: #1f2937;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
}
.pack-special .pack-btn:hover {
  background: #f3f4f6;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 991.98px) {
  .pack-card {
    padding: 1.4rem 1.25rem;
  }
  .pack-title {
    font-size: 1.05rem;
  }
  .pack-subtitle,
  .pack-list {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .packages {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pack-card {
    padding: 1.2rem 1rem;
  }

  /* روی موبایل متن‌ها وسط‌چین بشن که خواناتر و مدرن‌تر بشه */
  .pack-title,
  .pack-subtitle,
  .pack-list {
    text-align: center;
  }

  .pack-list li + li {
    border-top: none;
  }

  .pack-btn {
    font-size: 0.9rem;
    padding: 0.55rem 0.8rem;
  }
}
/* ================================
   SOFT FOOTER – Modern, Responsive
================================ */

.soft-footer {
  background: radial-gradient(
    circle at top,
    #f9fafb 0,
    #f2f3f5 45%,
    #e5e7eb 100%
  );
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  color: #4b5563;
  font-size: 0.9rem;
}

/* روی هر چیزی داخل فوتر، رنگ متن را کنترل می‌کنیم */
.soft-footer * {
  color: inherit;
}

/* عنوان هر ستون */
.soft-footer-title {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
  color: #111827;
}

/* لینک‌ها */
.soft-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.soft-footer-links li {
  margin-bottom: 0.45rem;
}

.soft-footer-links a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.15s ease;
}

.soft-footer-links a:hover {
  color: #111827;
  transform: translateX(-2px);
}

/* لوگو و شبکه اجتماعی */
.soft-footer .col:first-child p {
  color: #6b7280;
}

/* آیکن شبکه اجتماعی در دایره ملایم */
.footer-social-icon {
  font-size: 1.4rem;
  color: #4b5563;
  transition: color 0.2s ease, transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #e5e7eb;
}

.footer-social-icon:hover {
  color: #000;
  transform: translateY(-1px);
}

/* دکمه دانلود اپ */
.soft-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.6rem;
  background: #3490e3;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(52, 144, 227, 0.3);
  width: auto;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.soft-download-btn i {
  font-size: 1rem;
}

.soft-download-btn:hover {
  background: #2677c6;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(52, 144, 227, 0.4);
}

/* پایین فوتر */
.soft-footer-bottom {
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.8;
}

/* خط بالای بخش پایینی کمی ملایم‌تر */
.soft-footer-bottom.border-top {
  border-color: #e5e7eb !important;
}

/* ========= Responsive Tweaks ========= */

/* تراز بهتر روی تبلت و موبایل */
@media (max-width: 991.98px) {
  .soft-footer .row > .col {
    text-align: center;
  }

  .soft-footer img[alt="لوگو"] {
    margin: 0 auto 0.75rem;
    display: block;
  }

  .soft-footer .col:nth-child(4) img {
    max-width: 120px;
    margin: 0 auto;
    display: block;
  }

  .soft-download-btn {
    width: 100%;
    justify-content: center;
  }
}

/* موبایل خیلی کوچک */
@media (max-width: 575.98px) {
  .soft-footer {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .soft-footer-title {
    margin-top: 0.5rem;
  }

  .soft-footer .row {
    row-gap: 1.5rem;
  }
}
