* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* header */
body {
  font-family: "Vazirmatn", sans-serif;
  background: #fff;
  color: #0f172a;

  min-height: 100vh; /* ✅ full height */
  margin: 0; /* remove default body margin */
}
body {
  overflow-x: hidden;
}
i{
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ===========================
   GLOBAL HEADER (GLASS EFFECT)
=========================== */
.glassy-nav {
  /* backdrop-filter: blur(14px) saturate(180%); */
  /* -webkit-backdrop-filter: blur(14px) saturate(180%); */
  /* background: rgba(255, 255, 255, 0.25); */
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.35s ease;
  z-index: 1050;
}

/* On Scroll */
.glassy-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===========================
   BRAND
=========================== */
.brand-logo {
  height: 40px;
  width: auto;
  transition: opacity 0.25s ease;
}

/* ===========================
   NAV LINKS
=========================== */
.nav-link {
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  color: #fff !important;
  transition: color 0.25s ease;
}

/* Hover underline */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  background: #00a3ff;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Scroll → dark text */
.glassy-nav.scrolled .nav-link {
  color: #111 !important;
}

/* ===========================
   BUTTONS
=========================== */
.btn-outline-glass,
.btn-brand {
  display: 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 */
.btn-outline-glass {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: all 0.3s ease;
}
.btn-outline-glass:hover {
  background: rgba(0, 163, 255, 0.15);
  border-color: #00a3ff;
  color: white;
}

/* Scroll state */
.glassy-nav.scrolled .btn-outline-glass {
  color: #111;
  background: rgb(239, 239, 239);
  border-color: rgba(0, 0, 0, 0.2);
}

/* Brand button */
.btn-brand {
  background: #00a3ff;
  color: #fff;
  transition: background 0.25s ease;
}
.btn-brand:hover {
  background: #0095ea;
}

/* ===========================
   NAVBAR TOGGLER
=========================== */
.navbar-toggler {
  border: none;
  /* color: #fff; */
}
.glassy-nav.scrolled .navbar-toggler {
  color: #111;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 991.98px) {
  .glassy-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
  }

  .nav-link {
    color: #222 !important;
    font-size: 1.1rem;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .brand-logo {
    height: 32px;
  }
}

/* Small icon utility (used elsewhere) */
.small-icons .icon-item {
  width: 50px;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}
/* ===========================
   MOBILE
=========================== */
@media (max-width: 991.98px) {
  .glassy-nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  }

  .nav-link {
    color: #111 !important;
    font-size: 1.05rem;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .brand-logo {
    height: 32px;
  }

  /* 🔹 دکمه Outline روی پس‌زمینه سفید */
  .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;
  }

  /* 🔹 دکمه اصلی (برند) روی موبایل */
  .glassy-nav .btn-brand {
    background: #00a3ff;
    color: #fff;
    box-shadow: none;
  }

  .glassy-nav .btn-brand:hover {
    background: #0095ea;
    color: #fff;
  }
}

/* //////////////////////CONTACT US */
/* ============================================
   CONTACT PAGE – EskanPars Dark Glass Theme
============================================ */

/* MAIN WRAPPER */
.contact-main {
  position: relative;
  background: linear-gradient(
      to bottom,
      rgba(0, 7, 15, 0.92),
      rgba(0, 20, 40, 0.95)
    ),
    url("/src/img/contactUSBgImage.jpg") center/cover no-repeat;
  padding: clamp(9rem, 16vh, 12rem) 0 clamp(4rem, 7vh, 6rem);
  overflow: hidden;
  color: #f9fafb;
}

/* Glassy overlay with subtle movement */
.contact-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 10%,
      rgba(62, 168, 255, 0.24),
      transparent 60%
    ),
    radial-gradient(circle at 80% 90%, rgba(0, 163, 255, 0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  animation: contactGlow 12s ease-in-out infinite alternate;
}

@keyframes contactGlow {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.85;
  }
  100% {
    transform: translate3d(-10px, -8px, 0);
    opacity: 1;
  }
}

/* INTRO TEXT BLOCK */
.contact-main .container {
  position: relative;
  z-index: 1;
}

.contact-main h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 1.1rem;
}

.contact-main .lead {
  max-width: 880px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 2;
  color: #e5e7eb;
}

/* Slight glass behind text on large screens */
@media (min-width: 992px) {
  .contact-main .mb-5[dir="rtl"] {
    background: radial-gradient(
      circle at top left,
      rgba(15, 23, 42, 0.7),
      rgba(15, 23, 42, 0.5)
    );
    border-radius: 18px;
    padding: 1.75rem 2rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    backdrop-filter: blur(14px);
  }
}

/* ============================================
   CONTACT BUTTONS – Glass Cards
============================================ */

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  background: radial-gradient(
      circle at 30% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.55);

  color: #f9fafb;
  padding: 1.7rem 1rem;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  gap: 0.45rem;

  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease, background 0.28s ease;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.7);
}

.contact-btn i {
  font-size: 2.4rem;
  margin-bottom: 0.2rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Hover state – glow + accent blue */
.contact-btn:hover {
  background: radial-gradient(
      circle at 20% 0%,
      rgba(62, 168, 255, 0.18),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.9);
  border-color: #3ea8ff;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 22px 55px rgba(56, 189, 248, 0.45);
}

.contact-btn:hover i {
  color: #3ea8ff;
  transform: translateY(-1px) scale(1.1);
}

/* Icon-specific accents (optional, خیلی ظریف) */
.contact-btn[href^="https://www.google.com/maps"] i
{
  /* location */
}
.contact-btn[href^="tel:"] i {
  /* phone */
}
.contact-btn[href^="https://wa.me"] i
{
  color: #22c55e;
}
.contact-btn[href^="mailto:"] i {
  /* mail */
}

/* ============================================
   RESPONSIVE TWEAKS
============================================ */

@media (max-width: 991.98px) {
  .contact-main {
    padding: clamp(9rem, 16vh, 12rem) 0 clamp(4rem, 7vh, 6rem);
  }

  .contact-main .mb-5[dir="rtl"] {
    padding-inline: 1.25rem;
  }

  .contact-btn {
    padding: 1.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .contact-btn i {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .contact-main {
    padding: clamp(8rem, 15vh, 11rem) 0 clamp(4rem, 7vh, 6rem);
  }

  .contact-main h1 {
    font-size: 1.6rem;
  }

  .contact-main .lead {
    font-size: 0.9rem;
  }

  .contact-btn {
    padding: 1.2rem 0.7rem;
    border-radius: 16px;
    font-size: 0.88rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.7);
  }

  .contact-btn i {
    font-size: 1.8rem;
  }
}

/* ////////////////////////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;
}

/* روی هر چیزی داخل فوتر، رنگ متن را کنترل می‌کنیم */
.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;
  }
}
