.site-footer {
  width: 100%;
  background-color: var(--dark-charcoal-bg);
  padding: var(--container-py) 0;
  margin-top: auto;
  border-top: 1px solid var(--color-light);
}

.logo-text {
  display: none;
}

.site-footer .container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
}

/* Main Footer Content */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Logo and Address */
.footer-logo {
  max-width: 320px;
}

.footer-logo img {
  height: 24px;
  width: auto;
  margin: 0 !important;
  margin-bottom: var(--space-lg) !important;
}

.footer-logo address {
  color: var(--text-secondary);
  font-family: "Roboto", sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: var(--text-sm);
  line-height: 139%;
  text-transform: capitalize;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-form .btn-primary {
  font-family: var(--font-content-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 17.22px;
  letter-spacing: -0.01em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

/* Footer Navigation */
.footer-navigation {
  padding-top: var(--space-lg);
}

.footer-navigation ul {
  display: flex;
  justify-content: flex-start;
  gap: var(--space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-navigation a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.2s ease;
  font-family: var(--font-content-body);
  font-weight: 400;
  line-height: 15.68px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.footer-navigation a:hover {
  color: var(--primary-blue);
}

.footer-social {
  display: flex;
  margin-top: var(--space-sm);
  align-items: flex-start;
}

.btn-contact-us > a:hover {
  color: var(--dark-bg);
}

.footer-link-section {
  display: flex;
  gap: 31px;
}

.footer-column h3 {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-top: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: var(--text-sm);
  transition: color 0.3s;
  font-family: "Roboto", sans-serif;
}

.footer-column ul li a:hover {
  color: #fff;
}

@media (max-width: 1158px) {
  .site-footer {
    padding: var(--container-py) var(--container-px);
  }
  .footer-link-section {
    display: none;
  }

  .footer-logo img {
    display: none;
  }
  .logo-text {
    display: block;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: var(--container-pt);
    padding-bottom: var(--container-pb);
  }

  .footer-content {
    flex-direction: column;
    align-items: start;
    text-align: left;
    gap: var(--space-xl);
  }

  .footer-logo {
    display: flex;
    flex-direction: column;
  }

  .footer-logo > a > img {
    margin: 0 !important;
    margin-bottom: var(--space-md) !important;
  }

  .footer-newsletter {
    width: 100%;
    text-align: left;
  }

  .newsletter-form {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
  }

  .footer-navigation {
    width: 100%;
  }

  .footer-navigation ul {
    flex-direction: column;
    justify-content: start;
  }

  .footer-navigation a {
    font-size: 14px;
  }

  #contact-us-footer {
    display: inline-block;
  }
}

@media (max-width: 586px) {
  .footer-logo address {
    font-size: 12px;
    line-height: 1.5;
  }

  .footer-navigation ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-sm);
    text-align: left;
  }
}
