.site-footer {
  background: linear-gradient(180deg, var(--primary-color), var(--primary-color-dark));
  color: #ffffff;
}

.site-footer-mobile {
  display: none;
  background: linear-gradient(180deg, var(--primary-color), var(--primary-color-dark));
  color: #ffffff;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 30px 20px 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.footer-logo {
  width: 100%;
  height: 65px;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

.tagline {
  font-size: 12px;
  letter-spacing: 2px;
  margin: 0;
  font-family: var(--theme-headings-font-family);
}

.footer-title {
  margin-top: 55px;
  color: var(--secondary-color);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}


.business-details p {
  margin: 0;
}

.footer-heading {
  font-size: 32px;
  letter-spacing: 4px;
  margin-top: 10px;
  margin-bottom: 40px;
  font-weight: 300;
  position: relative;
  text-transform: uppercase;
}

.footer-heading::after {
  position: absolute;
  display: block;
  content: "";
  width: 80%;
  border-bottom: 1px #fff solid;
  margin-bottom: 20px;
}

.contact-list,
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 5px;
  font-family: var(--theme-headings-font-family);
}

.contact-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-list a,
.footer-links a {
  color: #ffffff;
  text-decoration: none;
}

.footer-links a {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
}

.footer-search input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-bottom {
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 100px;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  font-family: var(--theme-headings-font-family);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  /* .footer-search input {
    max-width: 400px;
    margin: auto;
  } */

  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

  .footer-col {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .business-details {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .quick-links {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .footer-title {
    margin-top: 5px;
    /* text-decoration: underline; */
  }

  /* .footer-heading,
  .footer-search input {
    display: none;
  } */

  .site-footer {
    display: none;
  }

  .site-footer-mobile {
    display: block;
    padding: 0 20px;
  }
}
