:root{
  --blue:#123c66;
  --orange:#ef7d1a;
  --ink:#0c1016;
  --bg:#ffffff;
  --white:#fff;
}

/* Make short pages push the footer to the bottom */
html, body { height:100%; }
body{
  margin:0;                       /* NEW */
  display:flex;
  flex-direction:column;
  min-height:100vh;
  overflow-x:hidden;              /* NEW: never allow sideways scroll */
}

/* ----- FOOTER (compact + mobile-safe) ----- */
.site-footer{
  margin-top:auto;                /* stick to bottom */
  position:relative;              /* NEW */
  z-index:10;                     /* NEW */
  isolation:isolate;              /* NEW: separate stacking context */
  background:#0f172a;
  color:#e5e7eb;
  border-top:1px solid rgba(255,255,255,.06);
  box-shadow:0 -6px 18px rgba(0,0,0,.05);
}

.footer-wrap{
  width:min(1200px, 92vw);
  margin-inline:auto;
  padding:18px 12px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:18px;
}

.footer-col h4{
  margin:0 0 6px;
  font-size:.95rem;
  font-weight:800;
  color:#fff;
  position:relative;
  display:inline-block;
}
.footer-col h4::after{
  content:"";
  display:block;
  height:2px;
  width:44px;
  margin-top:6px;
  border-radius:2px;
  background:linear-gradient(90deg, var(--blue), var(--orange));
}

.footer-col ul{ list-style:none; margin:0; padding:0; }
.footer-col li{ margin:.25rem 0; }
.footer-col a{
  color:#cbd5e1;
  text-decoration:none;
  font-size:.95rem;
  line-height:1.35;
  transition:color .2s ease, transform .12s ease;
}
.footer-col a:hover{
  color:#fff;
  transform:translateX(2px);
}

/* Contact “pills” */
.contact-list{
  list-style:none; margin:0; padding:0;
  display:grid; gap:8px;
}
.contact-list a{
  display:flex; align-items:center; gap:8px;
  width:100%; max-width:100%;
  box-sizing:border-box;
  color:#cbd5e1; text-decoration:none;
  background:#111827;
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  padding:10px 12px;
  font-size:.95rem;
  transition:transform .12s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.contact-list a:hover{
  transform:translateY(-2px);
  background:linear-gradient(90deg, var(--blue), var(--orange));
  color:#fff;
  border-color:transparent;
}
.contact-list i{ width:18px; text-align:center; }

/* Bottom copyright strip */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:10px 12px env(safe-area-inset-bottom);
  text-align:center;
  color:#a8b1c0;
  font-size:.85rem;
}

/* Ensure any <section> inside footer never brings in other page backgrounds */
.site-footer section { background: transparent !important; }

/* ----- Responsive ----- */
@media (max-width:900px){
  .footer-wrap{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap:14px;
  }
}
@media (max-width:560px){
  .footer-wrap{ grid-template-columns:1fr; }
}
