.footer {
  padding: 80px 130px;
  clear: both;
  margin-bottom: var(--fixed-bottom-height);;
}

.footer a {
  text-decoration: none;
}

.footer-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  box-sizing: border-box;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  row-gap: 32px;
  column-gap: 65px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0px;
  white-space: nowrap;
}

.footer-links {
  color: rgb(var(--color-8));
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  transition: color 0.2s ease;
  letter-spacing: 0px;
}

.footer-links a:hover {
  color: rgb(var(--black)) !important;
}

.footer-bottom {
  border-top: 1px solid rgb(var(--color-8) / 0.2);
  padding-top: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  color: rgb(var(--color-8) / 0.8);
}

.footer-social a {
  color: inherit;
}

.footer-social svg {
  fill: currentColor;
}

.footer-info {
  text-align: right;
  color: rgb(var(--color-8));
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0px;
}

.footer-call-us {
  text-decoration: none;
  color: inherit;
}

.footer-social-icon {
  display: flex;
  gap: 16px;
}

/* Mobile Styles */
@media screen and (max-width: 640px) {
  .footer {
    padding: 40px 0 40px;
  }

  .footer-content {
    padding: 0 24px;
    max-width: 640px;
    gap: 40px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
  }

  .footer-column {
    gap: 12px;
  }

  .footer-column[style*="margin-left"] {
    margin-left: 0 !important;
  }

  .footer-title {
    margin-bottom: 8px;
  }

  .footer-links {
    display: none;
  }

  .footer-column.detail label::after {
    right: initial;
    margin-left: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    border-top: 0px;
    padding-top: 0px;
  }

  .footer-social {
    border-top: 1px solid rgb(var(--color-8) / 0.2);
    border-bottom: 1px solid rgb(var(--color-8) / 0.2);
    padding: 20px 0px;
  }

  .footer-social-icon {
    height: 21px;
  }

  .footer-info {
    text-align: left;
  }

  .footer-call-us {
    display: block;
  }
}