.site-footer {
    width: 100%;
    overflow-x: hidden;
}

.footer-main {
    position: relative;
    min-height: 300px;
    display: flex;
    justify-content: space-between;
    padding: 25px;

    background: url("/images/pages/_partials/footer-bg.jpg");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    color: var(--dark-white);
    overflow: hidden;
}
/* Dark overlay */
.footer-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* adjust darkness */
    z-index: 0;
}

.footer-contact-us img {
    height: 50px;
    width: auto;
}

/* Ensure footer content stays above overlay */
.footer-main > * {
    position: relative;
    z-index: 1;
}

.footer-main ul {
    margin-left: -25px;
}

.footer-main a {
    color: var(--dark-white);
}

.footer-main div {
    /* border: 1px solid black; */
    width: 33%;
}

.footer-main hr {
    margin-top: -15px;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    gap: 15px;
    padding-bottom: 15px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.footer-cta h2 {
    color: var(--link-text);
    font-weight: bold;
}

.footer-bottom {
    width: 100%;
    background: black;
    color: white;
    text-align: center;
    padding: 5px;
}

.footer-cta {
    border-bottom: 1px var(--link-text);
}

.pre-footer-bar {
  background: #8b1d1d; /* deep red */
  padding: 14px 18px;
}

.pre-footer-bar-inner {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.95rem;
}

.pre-footer-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.pre-footer-bar-item i {
  color: rgba(255, 255, 255, 0.85);
}

.pre-footer-bar-item a:hover {
    text-decoration: none;
}

.pre-footer-bar-item .icon {
  font-size: 1rem;
  opacity: 0.95;
}

.pre-footer-bar a {
  color: rgba(255, 255, 255, 0.98);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
}

.pre-footer-bar a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.9);
  transition: 0.25s;
}

/* ================================================== */
/* LIGHTBOX                                            */
/* ================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: min(1000px, 95vw);
  max-height: 85vh;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;

  font-size: 26px;
  font-weight: 900;
  cursor: pointer;
}


/* Mobile stack */
@media (max-width: 900px) {
  .pre-footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pre-footer-bar-item {
    white-space: normal;
  }
}


@media (max-width: 1000px) {
    .footer-main {
        flex-direction: column;
    }

    .footer-main div {
        width: 100%;
    }
}