/* --- Modern footer --- */

.eg-footer {
  background: #123022;          /* dark green to match header tone */
  color: #ffffff;
  padding: 1.75rem 5% 1.25rem;
  font-family: "Open Sans", Arial, sans-serif;
  box-sizing: border-box;
}

.eg-footer a {
  color: #ffffff;
  text-decoration: none;
}

.eg-footer a:hover {
  text-decoration: underline;
}

.eg-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

/* Columns */
.eg-footer-col {
  flex: 1 1 220px;
  min-width: 0;
}

/* Brand column */
.eg-footer-brand-title {
  margin: 0 0 0.25rem 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.eg-footer-brand-sub {
  margin: 0 0 0.75rem 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.eg-footer-sitemap {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  text-align:left;
}

/* Contact list */
.eg-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eg-footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.eg-footer-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.eg-footer-list strong {
  font-size: 0.9rem;
}

/* Map column */
.eg-footer-map .responsive-iframe {
  width: 100%;
  min-height: 180px;
  border: 0;
  border-radius: 6px;
}

/* Bottom strip */
.eg-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 1.5rem;
  padding-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  font-size: 0.72rem;
  opacity: 0.9;
}

.eg-footer-bottom P{font-size:0.85rem;}

/* Responsive tweaks */
@media (max-width: 700px) {
  .eg-footer {
    padding-left: 6%;
    padding-right: 6%;
  }

  .eg-footer-inner {
    flex-direction: column;
  }

  .eg-footer-col {
    flex: 1 1 100%;
  }

  .eg-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* FORCE footer text to be white, regardless of old global styles */
.eg-footer,
.eg-footer * {
  color: #ffffff !important;
}

/* Keep links styled as links */
.eg-footer a {
  color: #ffffff !important;
  text-decoration: none;
}

.eg-footer a:hover {
  text-decoration: underline;
}
.eg-footer-sitemap {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.eg-footer-icon-sitemap {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
/* Force sitemap line to align left */
.eg-footer-sitemap {
  text-align: left !important;
  justify-content: flex-start !important;
}
.eg-footer-brand {
  text-align: left !important;
}

/* Make the entire footer area the same dark green */
.footer,
.bottomnewbanner,
.innerbottomnewbanner {
  background-color: #123022 !important;  /* same as .eg-footer */
}

/* Remove any extra light backgrounds or borders */
.bottomnewbanner,
.innerbottomnewbanner {
  border: none !important;
}

/* Ensure the footer stretches full width cleanly */
.footer {
  width: 100%;
  margin: 0;
  padding: 0;
}


