.site-features-wrapper {
  --columns: 2;
  --gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
  margin-bottom: 10rem;
  row-gap: 4rem;
  padding-top: calc(var(--section-space) + 2rem);
}


.site-feature__title {
  font-size: var(--fs-18);
  font-weight: bold;
  display: block;
}



.site-feature__subtitle {
  font-size: 1.4rem;
  color: var(--c-blue-150);
  display: block;
  margin-top: 0.5rem;
}

.site-feature {
  width: calc((100% - (var(--columns) - 1) * var(--gap)) / var(--columns));
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-radius: 2.8rem;
  padding: 3rem;
  box-shadow: inset 1px 0 0 1px #cc967b24, 0 1.4rem 1.6rem #f5f5f9;
}


.site-feature::before {
  content: "";
  position: absolute;
  top: -1rem;
  z-index: -2;
  width: 13rem;
  background-color: var(--c-secondary);
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1rem 1rem 0 0;
  height: 2rem;
}

.site-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff5c;
  z-index: -1;
  backdrop-filter: blur(25px);
}

.site-feature__img {
  width: 5rem;
  flex: none;
}

.site-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*************************/
/* footer */
/**************************/
#scrollUp {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-secondary);
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  color: var(--c-white);
  font-size: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  top: -3.5rem;
}

#scrollUp:hover {
  background-color: var(--c-primary);
}

.footer-desc {
  text-align: center;
  z-index: 2;
  position: relative;
}

.footer-shape {
  position: absolute;
  left: 50%;
  top: 0;
  width: 34rem;
  transform: translateX(-50%) scale(-1);
  height: 2.8rem;
  pointer-events: none;
  margin-top: -1px;
}

.logo-ft {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  max-width: 7.8rem;
}

.logo-ft img {
  width: 100%;
}

.footer__about_desc {
  margin-top: 2.2rem;
  font-size: 1.6rem;
  line-height: 2.4;
  color: #d8dbe5;
}

.ft-socials-wrap {
  margin-top: 2rem;
}

.ft-socials-title {
  font-size: var(--fs-16);
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--c-white);
}

.footer-desc .socials {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  line-height: 1;
  flex-wrap: wrap;
}

.footer-desc .socials a {
  width: 3.6rem;
  height: 3.6rem;
  background-color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-desc .socials a:hover {
  background-color: var(--c-secondary);
  color: var(--c-white);
}



.footer-info {
  background: var(--c-primary);
  position: relative;
  padding-top: 6rem;
}

.footer-info::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 33rem;
  top: 0;
  background-image: url(../../img/pattern.webp);
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: auto 100%;
}


.footer-info-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;

  padding-bottom: 3rem;
  position: relative;
}



.footer-contact li:not(:last-child) {
  margin-bottom: 1.2rem;
}

.footer-contact li a:hover {
  color: var(--c-secondary);
}


.footer-contact li.address a {
  opacity: 0.6;
  font-size: var(--fs-14);
}


.footer-contact li i {
  font-size: 2rem;
  vertical-align: middle;
  color: var(--c-secondary);
  display: flex;

  flex: none;
}

.footer-contact li {
  display: flex;
  gap: 1rem;
  color: var(--c-white);
}

.footer-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  color: var(--c-white);
  font-size: var(--fs-16);
  position: relative;
  font-weight: bold;
}



.footer__menu.nav li:not(:last-child) {
  margin-bottom: 1.6rem;
}

.footer__menu.nav a {
  display: inline-block;
  position: relative;
  color: #d8dbe5;
  transition: 0.3s var(--ease2);
}

.footer__menu.nav a::before {
  content: "";
  width: 1rem;
  background: var(--c-secondary);
  height: 1px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  transition: 0.3s var(--ease2);
  right: 0;
  transform-origin: right;
}



.enamad-ft {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  align-items: center;
}

.enamad-ft a {
  display: block;
}

.enamad-ft img {
  border-radius: 1rem;
  width: 8.5rem;
}

.footer-title::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--text-primary);
  width: 27px;
  position: absolute;
  top: 100%;
  border-radius: 1px;
}

.footer-contact__link {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  flex-wrap: wrap;
}

.footer-title.accordion i {
  color: var(--c-white);
  font-size: 1.6rem;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-title.accordion::after {
  display: none;
}

.footer__menu.active .accordion i {
  transform: rotate(-180deg);
}



.footer__menu.contact {
  grid-column: 1/-1;
}

.item-awwards__img {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.awwards-ft {
  display: grid;
  grid-template-columns: repeat(4, minmax(min(6rem, 17%), 1fr));
  border-radius: 16px;
  border: 1px solid rgba(43, 43, 43, 0.5);
  background: linear-gradient(180deg,
      rgba(28, 28, 28, 0) -21.67%,
      #1c1c1c 118.82%);
  padding: 16px 1.8rem;
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.awwards-ft img {
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 7rem;
}

.copyright-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-14);
  padding: 1.5rem 0;
  gap: 2rem;
  flex-direction: column;
  text-align: center;
}

.websima-logo img {
  min-width: 8rem;
}


@media (width>=1024px) {


  .site-features-wrapper {
    --columns: 4;
    --gap: 2rem;
  }

  .footer-info-wrap {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .footer-contact li.address a:hover {
    color: var(--c-secondary);
  }

  .footer__menu.nav a:hover {
    color: var(--c-secondary);
  }

  .footer-title.accordion i {
    display: none;
  }

  .footer-info-wrap {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-title.accordion::after {
    display: block;
  }

  .accordion-content.open-in-desktop {
    display: block;
  }

  .footer-title.accordion {
    pointer-events: none;
  }

  .enamad-ft {
    justify-content: start;
  }

  .ft-cta-wrapper {
    padding: 2rem;
  }

  .copyright-wrap {
    flex-direction: row;
    text-align: right;
  }

  .footer-desc {
    margin: 0 13rem;
  }

  .footer__menu.contact {
    grid-column: auto;
    margin-left: 12rem;
  }
}

@media (width<1024px) {
  .accordion-content.open-in-desktop:not(.active) {
    display: none;
  }

  .site-feature__title {
    font-size: var(--fs-16);
  }

  .site-feature {
    flex-direction: column;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .footer-info::before {
    height: 33rem;
  }

  .footer-info-wrap {
    margin-top: 3rem;
    padding-top: 3rem;
  }

  .footer-info-wrap::before {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, transparent, #fdfdfd36, transparent);
    width: 100%;
    height: 1px;
  }

  .footer-title.accordion {
    padding: 1.5rem 2.5rem;
    margin-bottom: 0;
  }

  .footer__menu {
    background: #ffffff21;
    border-radius: 1.4rem;
    box-shadow: inset 0.5px 0.5px 0 1px #ffffff54;
  }

  .footer-info-wrap .accordion-content {
    padding: 0 2rem 2rem;
  }

  .ft-cta-text {
    flex-direction: column;
    text-align: center;
  }

  .ft-cta-text__head {
    flex-direction: column;
  }

  .enamad-ft-wrap .footer-title {
    text-align: center;
    justify-content: center;
  }

  .footer-wrapper {
    padding-bottom: 4rem;
  }
}

/* Fixed Call Button */
.call-fix {
  position: fixed;
  bottom: 13rem;
  right: 2rem;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.call-fix__btn {
  background: var(--c-secondary);
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.call-fix__btn::before {
  content: '';
  position: absolute;
  width: 74%;
  height: 74%;
  background: #ffffff0d;
  border-radius: 50%;
  box-shadow: inset 0 0 9px #ffffff8c;
  pointer-events: none;
}

.call-fix__btn:active,
.desktop .call-fix__btn:hover {
  background: var(--c-primary);
  transform: scale(1.05);
}

.call-fix__btn i {
  font-size: 2.4rem;
  color: var(--c-white);
  transition: all 0.3s ease;
}

.call-fix__number {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-blue-50);
  color: var(--c-primary);
  padding: 1rem 1.5rem;
  border-radius: 1.2rem;
  font-size: 2rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(1rem);
  transition: all 0.3s ease;
  margin-right: 1rem;
}

.call-fix__number::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 0.8rem solid transparent;
  border-left-color: var(--c-blue-50);
}



.call-fix.show-number .call-fix__number {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.call-fix__btn.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--c-secondary-rgb, 204, 150, 123), 0.7);
  }

  70% {
    box-shadow: 0 0 0 2rem rgba(var(--c-secondary-rgb, 204, 150, 123), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--c-secondary-rgb, 204, 150, 123), 0);
  }
}

@media (width >=768px) {
  .call-fix__btn {
    width: 7.4rem;
    height: 7.4rem;
  }

  .call-fix__btn i {
    font-size: 2.8rem;
  }

  .call-fix__number {
    font-size: 1.8rem;
    padding: 1.2rem 2rem;
  }

  .call-fix {
    bottom: 2rem;
  }
}