/* Modern 3-column footer for Havenrow theme */
.site-footer {
  background: var(--hr-primary);
  color: #fff;
  font-family: var(--hr-font);
  font-size: 1rem;
  margin-top: 0;
  padding: 0;
  border-top: 1px solid #ececec;
  width: 100vw;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.03);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 24px 24px;
  gap: 32px;
}
.footer-col {
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.footer-col-logo {
  max-width: 320px;
  /* Ensure logo and text align to top with other columns */
  align-items: flex-start;
}
.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 18px;
}
.footer-ack {
  font-size: 0.98rem;
  color: #eaf0fa;
  margin-top: 8px;
  line-height: 1.5;
}
.footer-section-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: var(--hr-footer-link, #eaf0fa);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: var(--hr-footer-link-hover, #fff);
  text-decoration: underline;
}
.footer-contact {
  font-size: 1rem;
  color: var(--hr-footer-link, #eaf0fa);
}
.footer-contact a {
  color: var(--hr-footer-link-hover, #fff);
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-contact a:hover,
.footer-contact a:focus {
  color: var(--hr-primary, #2d53b4);
}
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  background: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.footer-socials a:hover {
  background: var(--hr-primary, #2d53b4);
}
.footer-socials img {
  width: 18px;
  height: 18px;
  transition: filter 0.18s;
}
.footer-socials a:hover img {
  filter: none;
}
.footer-bar {
  background: var(--hr-footer-bar-bg, var(--hr-primary, #0b1536));
  color: var(--hr-footer-bar-color, #eaf0fa);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 0.98rem;
  border-top: 1px solid var(--hr-footer-bar-border, #1a237e);
}
.footer-bar-left,
.footer-bar-right {
  color: #000000ff;
}
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    padding: 32px 10px 10px 10px;
    gap: 18px;
  }
  .footer-col {
    margin-bottom: 18px;
  }
  .footer-bar {
    flex-direction: column;
    gap: 8px;
    padding: 12px 10px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .footer-inner {
    padding: 18px 4px 8px 4px;
    gap: 12px;
  }
  .footer-logo {
    height: 60px;
    max-width: 120px;
    margin-bottom: 10px;
  }
  .footer-section-title {
    font-size: 1rem;
  }
  .footer-bar {
    font-size: 0.98rem;
    padding: 6px 4px;
  }
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 0 !important;
}
