/* ===== Footer (CLEAN – no duplicates, blended) ===== */

.footer {
  width: 100%;
  background: transparent;
}

/* Wrapper that holds background + content */
.footer-bg {
  position: relative;
  overflow: hidden;

  min-height: 300px;       /* controls footer height */
  padding: 28px 0 14px;
  color: #ffffff;

  /* SINGLE background image
  background-image: url("../assets/images/footerbackground.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  */
  
}

/* Background image layer */
.footer-bg::before {
  content: "";
  position: absolute;
  inset: 0;

  /* background-image: var(--footer-bg); */
  background-repeat: no-repeat;
  background-position: center center;

  /* 🔑 makes image slightly smaller so PCA is not cropped */
  background-size: 61% auto;

  z-index: 0;
}


/* Navy blend overlay (this replaces scaling tricks) */
.footer-bg::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 42, 92, 0.30); /* 🔥 much lighter */
  pointer-events: none;
  z-index: 0;
}


/* Keep content above background + overlay */
.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
}

/* Main content row */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;

  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Left */
.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 12px;
}

.footer-address {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  opacity: 0.95;
}

.footer-icons {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.footer-icons img {
  width: 18px;
  height: 18px;
  display: block;
}

/* Center + Right */
.footer-col h4 {
  font-size: 16px;
  margin: 0 0 12px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.9;
  opacity: 0.95;
}

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

.footer-col p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
}

.footer-col p a {
  display: inline;
  color: #ffffff;
  text-decoration: underline;
}

/* Bottom line + copyright (WHITE LINE KEPT) */
.footer-bottom {
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 10px 60px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 16px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bg {
    min-height: 260px;
    padding: 22px 0 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 16px;
  }

  .footer-bottom {
    padding: 10px 16px 0;
  }

  .footer-logo {
    height: 48px;
  }
}
