.elementor-4745 .elementor-element.elementor-element-1b6e0d3 > .elementor-widget-container{margin:-10px -10px -10px -10px;box-shadow:-35px -42px 61px 7px rgba(234.3733367919922, 204.53085171125775, 162.65173218966177, 0.4);}/* Start custom CSS for html, class: .elementor-element-1b6e0d3 */:root {
  --shape-size: 650px;
  --green: #15c26b;
}

.footer-section {
  background: #082E5F;
  color: #fff;
  padding: 40px 0;
  position: relative;
  direction: rtl;
  font-family: sans-serif;
  overflow: hidden;
}

/* ===== تصاویر پس‌زمینه ===== */
.footer-rotating-shape {
  position: absolute;
  right: -170px;
  top: -210px;
  width: var(--shape-size);
  height: var(--shape-size);
  opacity: 0.18;
  animation: rotateShape 40s linear infinite;
}

.footer-static-shape {
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: var(--shape-size);
  height: var(--shape-size);
  opacity: 0.80;
}

@keyframes rotateShape {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== گرید ===== */
.footer-container {
  position: relative;
  z-index: 100;
  max-width: 1250px;
  margin: auto;
  padding: 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 1.3fr;
  gap: 50px;
}

/* ===== فقط دو خط عمودی ===== */
.footer-grid > div {
  position: relative;
  padding: 0 25px;
}

.footer-grid > div:nth-child(2)::before,
.footer-grid > div:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.25);
}

.footer-grid > div:nth-child(2)::before {
  right: 0;
}
.footer-grid > div:nth-child(3)::after {
  left: 0;
}

/* ===== عنوان‌ها ===== */
.footer-title {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--green);
  position: absolute;
  bottom: -8px;
  right: 0;
  border-radius: 10px;
}

/* ===== لینک‌ها ===== */
.footer-links a {
  display: block;
  color: #fff;
  margin-bottom: 10px;
  transition: .3s;
}
.footer-links a:hover { color: var(--green); }

/* ===== سوشال ===== */
.footer-social a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 8px;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  font-size: 20px;
  transition: .3s;
}
.footer-social a:hover {
  background: #0dd06f;
}

/* ===== نمادها ===== */
.footer-licenses {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 12px;
}
.footer-licenses img {
  width: 90px;
  height: auto;
  border-radius: 10px;
}

/* ===== پایین فوتر ===== */
.footer-bottom {
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-contact-bottom {
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer-contact-bottom span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========================= */
/* ========= موبایل ========= */
/* ========================= */
@media(max-width: 900px){

  /* حذف خطوط عمودی */
  .footer-grid > div:nth-child(2)::before,
  .footer-grid > div:nth-child(3)::after {
    display:none;
  }

  /* چیدمان موبایل */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align:center;
  }

  .footer-grid > div:nth-child(1) { grid-column: span 2; }
  .footer-grid > div:nth-child(2) { grid-column: 1; }
  .footer-grid > div:nth-child(3) { grid-column: 2; }
  .footer-grid > div:nth-child(4) { grid-column: span 2; }

  /* خط سبز زیر عنوان موبایل */
  .footer-title::after {
    right: 50%;
    transform: translateX(50%);
  }

  /* نمادها در مرکز */
  .footer-licenses {
    justify-content: center;
  }

  /* تماس و ایمیل کنار هم */
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
  .footer-contact-bottom {
    justify-content: center;
    flex-wrap: wrap;
  }
}/* End custom CSS */