.site-footer-new {
    position: relative;
    background: #050505;
    color: #fff;
    padding: 100px 30px;
    overflow: hidden;
}

.site-footer-new::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
        to right,
        #000 0%,
        #000 42%,
        rgba(0, 0, 0, 1) 47%,
        rgba(0, 0, 0, 0.995) 52%,
        rgba(0, 0, 0, 0.98) 58%,
        rgba(0, 0, 0, 0.96) 65%,
        rgba(0, 0, 0, 0.94) 78%,
        rgba(0, 0, 0, 0.92) 100%
    ),
    url("../images/footer-bg/footer-bg.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    filter: grayscale(100%);
    z-index: 0;
}

/* Keep footer content above background */
.site-footer-new > * {
    position: relative;
    z-index: 1;
}

.site-footer-new .container {
  max-width: 1576px;
}

.site-footer-new__grid {
  display: grid;
  grid-template-columns: 2.5fr 0.5fr 0.9fr 1.3fr;
  gap: 80px;
}

.site-footer-new img {
  max-width: 180px;
  margin-bottom: 30px;
}

.site-footer-new h3,
.site-footer-new p,
.site-footer-new a {
  color: #fff;
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 26px;
}

.site-footer-new a {
  display: block;
  text-decoration: none;
  margin-bottom: 18px;
}

.site-footer-new__bottom {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid #fff;
  text-align: center;
  color: #fff;
  font-family: "Open Sans";
}

.foot-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.foot-item p,
.foot-item a {
  margin: 0;
}

.foot-item .extension {
  color: #fff;
}

@media (min-width: 1200px) {
  .site-footer-new__grid .site-footer {
    max-width: 498px;
    margin-right: auto;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .site-footer-new {
    padding: 70px 30px 40px;
  }

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

@media (max-width: 767px) {
  .site-footer-new {
    padding: 50px 20px 30px;
  }

  .site-footer-new__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer-new__bottom {
    margin-top: 30px;
  }
}