.footer {
  background-color: var(--background-color);
  color: var(--text-color);
  padding-top: 100px;
  padding-bottom: 60px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 5vw, 40px);
  width: 100%;
  max-width: 360px;
}

.footer-logo {
  width: 100%;
}

.footer-logo-img {
  display: block;
  max-width: 358px;
  height: auto;
  object-fit: contain;
}

.footer-btns {
  width: 100%;
  display: flex;
  gap: 28px;
}

.footer-btn {
  background-color: var(--footer-btn-bg-color);
  color: var(--footer-btn-color);
}

.footer-btn .btn-icon-wrapper {
  background-color: var(--footer-btn-icon-bg-color);
  color: var(--text-color);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 5vw, 40px);
  min-width: 120px;
  width: max-content;
}

.footer-column h3 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  color: var(--light);
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: clamp(10px, 2vw, 20px);
}

.footer-column a {
  color: var(--text-color);
  text-decoration: none;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.3;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 16px;
  margin-top: clamp(60px, 5vw, 120px);
}

.footer-bottom p span {
  color: var(--light);
}

.social-icons {
  display: flex;
  gap: clamp(10px, 2vw, 20px);
  list-style: none;
  font-size: 20px;
}

.social-icons li {
  cursor: pointer;
  color: var(--light);
}

.social-icons li:hover {
  color: var(--text-color);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .footer-wrapper {
    gap: 30px;
  }

  .footer-content {
    width: 50%;
    max-width: unset;
  }

  .footer-logo-img {
    max-width: 258px;
    height: auto;
  }

  .footer-links {
    gap: 20px;
  }
}

@media screen and (max-width: 830px) {
  .footer-wrapper {
    gap: 50px;
    flex-direction: column;
  }

  .footer-content {
    width: 60%;
  }

  .footer-links {
    gap: 20px;
    justify-content: space-between;
  }
}

@media screen and (max-width: 576px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 20px;
  }

  .footer-content {
    width: 100%;
  }

  .footer-logo-img {
    max-width: 200px;
    height: auto;
  }

  .footer-links {
    gap: 20px;
    justify-content: space-between;
  }
}
