.footer {
  background-color: var(--white);
  padding: 30px 0;
  color: var(--text-gray);
  align-items: center;
  direction: rtl;
  border-top: 1px solid var(--border);
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  .cols-container {
    justify-content: space-around;
  }
  .menu-col {
    display: flex;
    justify-content: center;
  }
  .social-media {
    .social-icons {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 10px;
      margin-top: 10px;
      justify-content: center;
      li {
        a {
          width: 42px;
          text-decoration: none;
          height: 42px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 50%;
          background-color: var(--border);
          transition: all 0.3s ease;
          i {
            font-size: 18px;
            color: var(--text-gray);
            transition: all 0.3s ease;
          }
          &:hover {
            background-color: var(--gold);
            i {
              color: var(--white);
            }
          }
        }
      }
    }
  }
}

.footer-section h3 {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  i {
    display: none;
  }
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 1px;
  background-color: var(--text);
}

.footer-section ul {
  list-style: none;
  margin: auto;
}

.footer-section ul li {
  color: var(--text-gray);
  margin-bottom: 8px;
  font-size: 13px;
}

.footer-section ul li a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--text);
}

.Logo2 {
  display: flex;
  gap: 10px;
  margin-top: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.Logo2 img {
  width: 150px;
  height: 150px;
}

.Logo2 a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  display: none;
}

@media (max-width: 425px) {
  .mobile-last-col {
    order: 10;
    margin-top: 20px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-section {
    position: relative;
    padding: 0;
    margin-left: auto;
  }

  .footer-section {
    h3 {
      padding: 15px 0;
      margin: 0;
      font-size: 14px;
      width: fit-content;
      display: flex;
      justify-content: space-between;
      align-items: center;
      i {
        display: block;
        margin-right: 5px;
        font-size: 12px;
        transition: transform 0.3s ease;
      }
    }
    &.active {
      h3 {
        i {
          transform: rotate(180deg);
        }
      }
    }
  }

  .arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-left: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
  }

  .footer-section ul {
    display: none;
    padding: 15px 0;
  }

  .footer-section.active ul {
    display: block;
  }
}
.copyright {
  font-size: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  > div {
    color: var(--text-gray);
  }
}
