/* ================================================================
   SUANOVA New Design - Footer Styles
   ================================================================ */

.footer {
  background: var(--navy);
}

.footer-main {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #c1c1c1;
  min-height: 258px;
}

.footer-col {
  padding: 72px 15px 46px;
  display: flex;
  flex-direction: column;
}

.footer-col.logo-col {
  width: 200px;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

.footer-col.logo-col img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.footer-col.links-col {
  width: 100px;
}

.footer-col.links-col a {
  color: var(--white);
  font-size: 12px;
  line-height: 20px;
  padding: 2px 5px;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-col.links-col a.teal {
  color: var(--teal-light);
}

.footer-col.address-col {
  width: 400px;
  padding-left: 30px;
  padding-right: 30px;
}

.address-block {
  margin-bottom: 26px;
}

.address-block h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 24px;
  margin-bottom: 8px;
}

.address-block p {
  font-size: 12px;
  color: var(--white);
  line-height: 20px;
  padding-left: 21px;
  position: relative;
}

.address-block p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364ccc9'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-col.qr-col {
  width: 400px;
  padding: 0 15px;
  justify-content: center;
}

.qr-inner {
  padding: 42px 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}

.qr-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 24px;
  margin-bottom: 8px;
}

.qr-text p {
  font-size: 12px;
  color: var(--white);
  line-height: 20px;
  margin-bottom: 4px;
}

.qr-text .email {
  font-size: 14px;
  color: var(--white);
  line-height: 21px;
}

.qr-code img {
  width: 120px;
  height: 120px;
}

.footer-bottom {
  padding: 20px 120px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--cadet-blue);
  line-height: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    width: 100% !important;
    padding: 30px 20px !important;
    align-items: center !important;
  }

  .qr-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-bottom {
    padding: 20px;
    text-align: center;
  }
}
