/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red !important; */
}

/* BASE */
body {
  font-family: "Vazirmatn", sans-serif;
  background: #fff;
  color: #0f172a;
  overflow-x: hidden;
  color: #a3a3a3;
}
i {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------------HEADER ----------------- */

/* ===========================
   HEADER (GLASS + SCROLL)
=========================== */
/* =========================================================
   HEADER + OFFCANVAS (Optimized, Solid Dark Offcanvas)
   Works with Bootstrap Offcanvas + Navbar
========================================================= */

/* --------- VARIABLES --------- */
:root {
  --ep-accent: #00a3ff;
  --ep-blue: #318fe3;

  --ep-dark: #071a33; /* offcanvas solid background */
  --ep-dark-2: #0a2140;
  --ep-text-light: rgba(255, 255, 255, 0.92);
  --ep-text-light-soft: rgba(255, 255, 255, 0.62);

  --ep-text-dark: #0f172a;
  --ep-border-light: rgba(255, 255, 255, 0.12);
  --ep-border-dark: rgba(15, 23, 42, 0.12);

  --ep-radius: 5px;
  --ep-radius-sm: 5px;

  --ep-shadow-lg: 0 18px 60px rgba(0, 0, 0, 0.35);
  --ep-shadow-md: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* --------- Z-INDEX (ALWAYS ON TOP) --------- */
.glassy-nav {
  z-index: 2147483646 !important;
}

.ep-offcanvas.offcanvas {
  z-index: 2147483647 !important;
}
/* 
.offcanvas-backdrop {
  z-index: 2147483645 !important;
} */

/* =========================================================
   HEADER
========================================================= */
.glassy-nav {
  padding: 0.55rem 0;
  transition: background 0.35s ease, box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Optional: make header slightly readable on top of hero */
.glassy-nav:not(.scrolled) {
  background: rgba(0, 0, 0, 0.06);
  backdrop-filter: saturate(110%);
}

/* On scroll -> white */
.glassy-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  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;
}

/* Nav links */
.glassy-nav .nav-link {
  font-weight: 700;
  color: #fff !important;
  position: relative;
  padding: 0.35rem 0.15rem;
  transition: color 0.25s ease;
}

.glassy-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0%;
  height: 2px;
  background: var(--ep-accent);
  transition: width 0.3s ease;
}
.glassy-nav .nav-link:hover::after {
  width: 100%;
}

/* scrolled link color */
.glassy-nav.scrolled .nav-link {
  color: #111 !important;
}

/* Desktop button */
.glassy-nav .btn-outline-glass {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  border-radius: 5px;
  font-weight: 800;
  padding: 0.45rem 0.95rem;
  transition: background 0.25s ease, border-color 0.25s ease,
    transform 0.2s ease;
}
.glassy-nav .btn-outline-glass:hover {
  background: rgba(0, 163, 255, 0.16);
  border-color: var(--ep-accent);
  /* transform: translateY(-1px); */
}

.glassy-nav.scrolled .btn-outline-glass {
  color: #111;
  background: #f2f4f7;
  border-color: rgba(0, 0, 0, 0.18);
}

/* Toggler / offcanvas trigger icon */
.ep-oc-trigger i {
  font-size: 2rem;
  color: #fff !important;
}
.glassy-nav.scrolled .ep-oc-trigger i {
  color: #318fe3 !important;
}

/* Remove bootstrap focus ring on toggler */
.glassy-nav .navbar-toggler:focus,
.glassy-nav .navbar-toggler:active {
  outline: none;
  box-shadow: none;
}

/* =========================================================
   OFFCANVAS (SOLID DARK BLUE, NOT GLASS)
========================================================= */
.ep-offcanvas {
  width: min(92vw, 380px);
  border: 0 !important;

  background: white !important;
  color: var(--ep-text-light);

  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.55);
}

/* kill any “aura” or glass leftovers */
.ep-offcanvas::before {
  content: none !important;
}
.ep-offcanvas * {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Offcanvas scrollbar (nice on dark) */
.ep-offcanvas .offcanvas-body {
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}
.ep-offcanvas .offcanvas-body::-webkit-scrollbar {
  width: 10px;
}
.ep-offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}

/* Top area */
.ep-offcanvas__top {
  position: sticky;
  top: 0;
  z-index: 2;

  padding: 14px 16px 12px;
  background: var(--ep-dark) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Logo + title */
.ep-oc-logo {
  height: 28px;
  width: auto;
}
.ep-oc-title {
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--ep-text-light);
}

/* Divider */
.ep-oc-divider {
  height: 1px;
  margin: 12px 0;
  background: rgba(255, 255, 255, 0.1);
}

/* Close button */
.ep-oc-close {
  width: 38px;
  height: 38px;
  border-radius: var(--ep-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}
.ep-oc-close:hover {
  /* transform: translateY(-1px); */
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(90, 167, 255, 0.35);
}
.ep-oc-close i {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
}

/* Body */
.ep-offcanvas__body {
  padding: 14px 16px 18px;
}

/* Auth card */
.ep-oc-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;

  padding: 12px 12px;
  border-radius: var(--ep-radius);

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);

  color: var(--ep-text-light);
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}
.ep-oc-auth:hover {
  /* transform: translateY(-1px); */
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(90, 167, 255, 0.35);
}

.ep-oc-auth__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.ep-oc-auth__icon i {
  color: #5aa7ff;
  font-size: 1.1rem;
}
.ep-oc-auth__text {
  font-weight: 900;
}
.ep-oc-auth__chev {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.65);
}

/* Sections */
.ep-oc-section {
  margin-top: 14px;
}
.ep-oc-section__title {
  font-size: 0.82rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

/* Links */
.ep-oc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;

  padding: 12px 12px;
  border-radius: var(--ep-radius);

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);

  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;

  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}
.ep-oc-link:hover {
  /* transform: translateY(-1px); */
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(90, 167, 255, 0.35);
}
.ep-oc-link i {
  font-size: 1.05rem;
  color: #5aa7ff;
}
.ep-oc-link__chev {
  margin-right: auto;
  opacity: 0.75;
  color: rgba(255, 255, 255, 0.62);
}

/* CTA box */
.ep-oc-cta {
  margin-top: 14px;
  padding: 14px;
  border-radius: 5px;
  border: 1px solid rgba(90, 167, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.ep-oc-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-weight: 900;
  border-radius: 5px;

  padding: 12px 14px;
  background: var(--ep-blue);
  color: #fff;

  box-shadow: 0 12px 26px rgba(49, 143, 227, 0.24);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.ep-oc-cta__btn:hover {
  /* transform: translateY(-1px); */
  filter: brightness(0.98);
}

.ep-oc-cta__hint {
  margin: 10px 0 0;
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
}

/* Backdrop (darker + premium) */
.offcanvas-backdrop.show {
  opacity: 0.78;
  background-color: #000;
}

/* =========================================================
   MOBILE POLISH
========================================================= */
@media (max-width: 991.98px) {
  /* You wanted mobile header white */
  .glassy-nav {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  }

  .glassy-nav .nav-link {
    color: #111 !important;
    font-size: 1.05rem;
  }

  .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 */
  .ep-oc-trigger i {
    color: #111;
  }

  .brand-logo {
    height: 34px;
  }
}

@media (max-width: 420px) {
  .ep-offcanvas {
    width: 92vw;
  }
  .brand-logo {
    height: 32px;
  }
}

.ep-offcanvas.offcanvas {
  --bs-offcanvas-width: 290px !important;
  width: 290px !important;
  max-width: 88vw !important;
}
/* =========================================================
   OFFCANVAS (WHITE THEME - SOLID, NOT GLASS)
========================================================= */

:root {
  --ep-oc-bg: #ffffff;
  --ep-oc-bg-2: #f6f8fc; /* subtle section bg */
  --ep-oc-text: rgba(15, 23, 42, 0.92);
  --ep-oc-text-soft: rgba(15, 23, 42, 0.62);
  --ep-oc-border: rgba(15, 23, 42, 0.1);
  --ep-oc-border-2: rgba(15, 23, 42, 0.08);
  --ep-oc-shadow: -24px 0 70px rgba(0, 0, 0, 0.18);
}

/* ✅ Always above everything */
.glassy-nav {
  z-index: 2147483646 !important;
}
.ep-offcanvas.offcanvas {
  z-index: 2147483647 !important;
}

/* ✅ Prevent mobile full width (Bootstrap default) */
.ep-offcanvas.offcanvas {
  --bs-offcanvas-width: 290px !important;
  width: var(--bs-offcanvas-width) !important;
  max-width: 88vw !important;
}

/* Panel base */
.ep-offcanvas {
  border: 0 !important;
  background: var(--ep-oc-bg) !important;
  color: var(--ep-oc-text) !important;
  box-shadow: var(--ep-oc-shadow);
}

/* kill any “aura/glass” */
.ep-offcanvas::before {
  content: none !important;
}
.ep-offcanvas * {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Scrollbar (light) */
.ep-offcanvas .offcanvas-body {
  scrollbar-color: rgba(15, 23, 42, 0.28) transparent;
}
.ep-offcanvas .offcanvas-body::-webkit-scrollbar {
  width: 10px;
}
.ep-offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}

/* Top sticky area */
.ep-offcanvas__top {
  position: sticky;
  top: 0;
  z-index: 2;

  padding: 14px 16px 12px;
  background: var(--ep-oc-bg) !important;
  border-bottom: 1px solid var(--ep-oc-border-2);
}

/* Title text in header */
.ep-oc-title {
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--ep-oc-text);
}

/* Divider */
.ep-oc-divider {
  height: 1px;
  margin: 12px 0;
  background: var(--ep-oc-border-2);
}

/* Close button (white theme) */
.ep-oc-close {
  width: 38px;
  height: 38px;
  border-radius: var(--ep-radius-sm);
  border: 1px solid var(--ep-oc-border);
  background: var(--ep-oc-bg-2);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}
.ep-oc-close:hover {
  /* transform: translateY(-1px); */
  background: #eef3ff;
  border-color: rgba(49, 143, 227, 0.25);
}
.ep-oc-close i {
  font-size: 1.1rem;
  color: rgba(15, 23, 42, 0.82);
}

/* Body padding */
.ep-offcanvas__body {
  padding: 14px 16px 18px;
}

/* Auth card (white theme) */
.ep-oc-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;

  padding: 12px 12px;
  border-radius: var(--ep-radius);

  background: var(--ep-oc-bg-2);
  border: 1px solid var(--ep-oc-border);
  color: var(--ep-oc-text);

  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}
.ep-oc-auth:hover {
  /* transform: translateY(-1px); */
  background: #eef3ff;
  border-color: rgba(49, 143, 227, 0.25);
}
.ep-oc-auth__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;

  background: #ffffff;
  border: 1px solid rgba(49, 143, 227, 0.18);
}
.ep-oc-auth__icon i {
  color: var(--ep-blue);
  font-size: 1.1rem;
}
.ep-oc-auth__text {
  font-weight: 900;
  color: var(--ep-oc-text);
}
.ep-oc-auth__chev {
  margin-right: auto;
  color: rgba(15, 23, 42, 0.5);
}

/* Section titles */
.ep-oc-section {
  margin-top: 14px;
}
.ep-oc-section__title {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--ep-oc-text-soft);
  margin-bottom: 10px;
}

/* Links (white theme) */
.ep-oc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;

  padding: 12px 12px;
  border-radius: var(--ep-radius);

  background: #ffffff;
  border: 1px solid var(--ep-oc-border);
  color: var(--ep-oc-text);

  margin-bottom: 10px;
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}
.ep-oc-link:hover {
  /* transform: translateY(-1px); */
  background: #f2f7ff;
  border-color: rgba(49, 143, 227, 0.25);
}
.ep-oc-link i {
  font-size: 1.05rem;
  color: var(--ep-blue);
}
.ep-oc-link__chev {
  margin-right: auto;
  opacity: 0.75;
  color: rgba(15, 23, 42, 0.55);
}

/* CTA box (white theme) */
.ep-oc-cta {
  margin-top: 14px;
  padding: 14px;
  border-radius: 5px;
  border: 1px solid rgba(49, 143, 227, 0.2);
  background: linear-gradient(180deg, #f6f9ff, #ffffff);
}
.ep-oc-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  font-weight: 900;
  border-radius: 5px;

  padding: 12px 14px;
  background: var(--ep-blue);
  color: #fff;

  box-shadow: 0 12px 26px rgba(49, 143, 227, 0.22);
  transition: transform 0.18s ease, filter 0.18s ease;
}
.ep-oc-cta__btn:hover {
  /* transform: translateY(-1px); */
  filter: brightness(0.98);
}
.ep-oc-cta__hint {
  margin: 10px 0 0;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--ep-oc-text-soft);
}

/* Backdrop (premium, not too dark) */
.offcanvas-backdrop.show {
  opacity: 0.55;
  background-color: #000;
}

/* Tiny screens */
@media (max-width: 420px) {
  .ep-offcanvas.offcanvas {
    --bs-offcanvas-width: 280px !important;
    max-width: 90vw !important;
  }
}

/* HERO WRAPPER (taller) */
.about-hero {
  position: relative;
  background: url("/src/img/supportSectionImg.png") center/cover no-repeat;
  color: #f9fafb;

  /* ✅ more height */
  min-height: 52vh; /* add height */
  display: flex;
  align-items: center;

  /* keep your spacing but slightly bigger */
  padding: clamp(7rem, 20vh, 10rem) 0 clamp(3.5rem, 12vh, 6rem);
  overflow: hidden;
}

/* overlay (unchanged) */
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      160deg,
      rgba(15, 23, 42, 0.52),
      rgba(15, 23, 42, 0.42)
    ),
    radial-gradient(circle at 10% 0%, rgba(93, 173, 236, 0.35), transparent 60%);
  z-index: 1;
}

.about-hero__content {
  position: relative;
  z-index: 2;
}
.ep-supportIntro {
  padding: clamp(16px, 3.2vw, 26px) 0;
}

.ep-supportIntro__card {
  max-width: 1120px;
  margin-inline: auto;

  border-radius: 7px;


  padding: clamp(14px, 2.2vw, 20px);

  display: grid;
  gap: 10px;

  /* ✅ center all content */
  text-align: center;
  justify-items: center;
}

.ep-supportIntro__title {
  margin: 0;
  font-weight: 950;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(15, 23, 42, 0.92);
}

.ep-supportIntro__text {
  margin: 0;
  font-weight: 800;
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  line-height: 1.95;
  color: #7f7f7f;

  /* ✅ nicer centered paragraph width */
  max-width: 70ch;
}

.ep-supportIntro__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* ✅ */
  gap: 8px;

  font-weight: 800;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  color: rgba(49, 143, 227, 0.92);

  padding-top: 6px;
  border-top: 1px dashed rgba(49, 143, 227, 0.22);

  width: 100%; /* ✅ make border full width */
  max-width: 70ch; /* ✅ align with paragraph width */
}

.ep-supportIntro__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(49, 143, 227, 0.95);
  box-shadow: 0 0 0 3px rgba(49, 143, 227, 0.14);
}

/* mobile */
@media (max-width: 575.98px) {
  .ep-supportIntro__card {
    padding: 14px;
  }
  .ep-supportIntro__text,
  .ep-supportIntro__meta {
    max-width: 100%;
  }
}

/* ===================== contact us ========= */
/* =========================
   CONTACT — Pro (FA/RTL)
   TOP: 4 cards in a row (responsive)
   BOTTOM: form + map (responsive)
   radius: 7px
========================= */

.ep-contactPro {
  padding: clamp(1.6rem, 4.5vh, 2.8rem) 0;
}

.ep-contactPro .container {
  padding-inline: clamp(10px, 2vw, 16px);
}

/* Wrapper (whole section width control) */
.ep-contactPro__wrap {
  max-width: 1120px;
  margin-inline: auto;
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  /* margin-top: 120px; */
}

/* =========================
   TOP CARDS (4 in a row)
========================= */
.ep-contactPro__cards {
  display: grid;
  gap: clamp(10px, 1.6vw, 18px);
}

.ep-contactPro__cards--row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
}

/* Card base */
.ep-contactPro__card {
  position: relative;
  background: var(--ep-surface);
  border: 1px solid rgba(49, 143, 227, 0.22);
  border-radius: 5px;

  padding: clamp(12px, 1.5vw, 16px);
  text-decoration: none;
  color: inherit;

  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: center;
  text-align: center;

  min-height: clamp(145px, 16vw, 175px);

  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

/* hover only for link cards */
.ep-contactPro__card--link:hover {
  border-color: rgba(49, 143, 227, 0.45);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.09);
}

/* Icon bigger */
.ep-contactPro__icon {
  width: clamp(52px, 5.2vw, 64px);
  height: clamp(52px, 5.2vw, 64px);
  border-radius: 5px;

  display: grid;
  place-items: center;

  color: rgba(49, 143, 227, 0.95);

  font-size: clamp(42px, 2.3vw, 42px);
}

.ep-contactPro__title {
  margin: 0;
  font-weight: 950;
  font-size: clamp(0.99rem, 1.15vw, 1.06rem);
  color: black;
}

.ep-contactPro__text {
  margin: 0;
  font-weight: 750;
  font-size: clamp(0.9rem, 0.95vw, 0.96rem);
  line-height: 1.9;
  color: var(--ep-ink-muted);

  overflow-wrap: anywhere;
  word-break: break-word;
}

.ep-contactPro__meta {
  font-weight: 850;
  font-size: clamp(0.78rem, 0.9vw, 0.84rem);
  color: rgba(49, 143, 227, 0.95);
}

/* =========================
   BOTTOM: FORM + MAP
========================= */
.ep-contactPro__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

/* Panel (form) */
.ep-contactPro__panel {
  border-radius: 5px;
  border: 1px solid rgba(49, 143, 227, 0.22);

  background: radial-gradient(
      circle at 18% 12%,
      rgba(49, 143, 227, 0.14),
      transparent 58%
    ),
    linear-gradient(
      to bottom,
      rgba(49, 143, 227, 0.08),
      rgba(49, 143, 227, 0.04)
    ),
    var(--ep-surface);

  padding: clamp(14px, 2vw, 22px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);

  display: grid;
  align-content: start;
  gap: 10px;

  min-width: 0;
}

.ep-contactPro__panelTitle {
  margin: 0;
  font-weight: 950;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: var(--ep-text-dark);
  text-align: center;
}

.ep-contactPro__panelHint {
  margin: 0 0 6px;
  font-weight: 750;
  font-size: clamp(0.88rem, 0.95vw, 0.95rem);
  line-height: 1.85;
  color: var(--ep-ink-muted);
  text-align: center;
}

/* Form */
.ep-contactPro__form {
  display: grid;
  gap: 12px;
}

.ep-contactPro__field {
  display: grid;
  gap: 7px;
}

.ep-contactPro__label {
  font-weight: 900;
  font-size: clamp(0.86rem, 0.95vw, 0.9rem);
  color: var(--ep-text-dark);
  text-align: right;
  margin-right: 4px;
}

/* iOS: keep font >= 16px */
.ep-contactPro__input,
.ep-contactPro__textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.94);

  padding: 12px 12px;
  font-weight: 800;
  font-size: 16px;
  color: var(--ep-ink);

  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;

  min-width: 0;
}

.ep-contactPro__textarea {
  resize: vertical;
  min-height: clamp(130px, 16vw, 170px);
}

.ep-contactPro__input:focus,
.ep-contactPro__textarea:focus {
  border-color: rgba(49, 143, 227, 0.55);
  box-shadow: 0 0 0 3px rgba(49, 143, 227, 0.14);
}

/* Button */
.ep-contactPro__btn {
  width: max-content;
  margin-inline: auto;

  padding: 10px 24px;
  border-radius: 5px;
  border: 1px solid rgba(49, 143, 227, 0.55);

  background: rgba(49, 143, 227, 0.92);
  color: #fff;

  font-weight: 950;
  cursor: pointer;
  transition: filter 140ms ease;
}

.ep-contactPro__btn:hover {
  filter: brightness(0.98);
}

/* =========================
   MAP CARD (iframe fills)
========================= */
.ep-contactPro__mapCard {
  position: relative;
  border-radius: 5px;
  border: 1px solid rgba(49, 143, 227, 0.22);
  background: var(--ep-surface);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;

  min-height: 320px;
}

.ep-contactPro__mapCard iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (hover: hover) {
  .ep-contactPro__mapCard:hover {
    border-color: rgba(49, 143, 227, 0.35);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .ep-contactPro__cards--row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .ep-contactPro__bottom {
    grid-template-columns: 1fr;
  }
  .ep-contactPro__mapCard {
    min-height: 260px;
  }
}

@media (max-width: 575.98px) {
  .ep-contactPro__cards--row {
    grid-template-columns: 1fr;
  }

  .ep-contactPro__card {
    min-height: auto;
    padding: 14px;
  }

  .ep-contactPro__textarea {
    min-height: 120px;
  }

  .ep-contactPro__btn {
    width: 100%;
    padding: 12px 16px;
  }
}
.ep-contactPro__mapCard {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

.ep-contactPro__mapCard iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* circle area overlay */
.ep-mapAreaRing {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px; /* change size = your radius */
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  pointer-events: none;
  z-index: 5;

  border: 2px solid rgba(52, 144, 227, 0.85);
  background: rgba(52, 145, 227, 0.457);
}

/* soft pulse */
.ep-mapAreaRing::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid rgba(52, 144, 227, 0.45);
  animation: epAreaPulse 1.6s ease-in-out infinite;
}

.ep-mapAreaHint {
  position: absolute;
  left: 50%;
  top: calc(50% + 100px);
  transform: translateX(-50%);
  z-index: 6;
  pointer-events: none;

  font-weight: 800;
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.75);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(52, 145, 227, 0.953);
  border-radius: 999px;
  padding: 6px 10px;
  backdrop-filter: blur(14px);
}
/* Card base — FIXED VERTICAL ALIGN */
.ep-contactPro__card {
  position: relative;
  background: var(--ep-surface);
  border: 1px solid rgba(49, 143, 227, 0.22);
  border-radius: 5px;

  padding: clamp(14px, 1.6vw, 18px);
  text-decoration: none;
  color: inherit;

  display: grid;
  grid-template-rows:
    64px /* icon */
    28px /* title */
    1fr /* text */
    22px; /* meta (even if empty) */

  gap: 10px;
  align-items: center;
  justify-items: center;
  text-align: center;

  min-height: 190px;

  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.ep-contactPro__icon {
  width: 56px;
  height: 56px;
  border-radius: 5px;

  display: grid;
  place-items: center;

  color: rgba(49, 143, 227, 0.95);
  font-size: 36px;

  margin-bottom: 0;
}
.ep-contactPro__title {
  margin: 0;
  line-height: 1.2;
  font-weight: 950;
  font-size: 1.2rem;
  align-self: center;
}
.ep-contactPro__text {
  margin: 0;
  font-weight: 750;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ep-ink-muted);

  align-self: start; /* ⬅️ خیلی مهم */
}
.ep-contactPro__meta {
  font-weight: 850;
  font-size: 0.82rem;
  color: rgba(49, 143, 227, 0.95);

  align-self: end;
}
/* ===================== contact us ========= */

/* ////////////////////////FOOTER */

.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;
  margin-top: 80px;
}

/* روی هر چیزی داخل فوتر، رنگ متن را کنترل می‌کنیم */
.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;
}

/* لوگو و شبکه اجتماعی */
.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: 5px;
  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;
  }
}
