/* Footer wrapper */
.site-footer{
  background: #0f2f46;
  color: rgba(255,255,255,.85);
  padding: 64px 0 0;
}

/* Remove bullets + bootstrap defaults inside footer */
.site-footer ul{ list-style:none; margin:0; padding:0; }
.site-footer a{ text-decoration:none; }
.site-footer a:hover{ text-decoration:none; }

/* Main grid (even if you have 1 col now, keep it scalable) */
.site-footer__inner{
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr; /* brand | links | contact */
  gap: 100px;
  align-items: start;
  padding-bottom: 36px;
}

/* Brand column */
.site-footer__brand{
  min-width: 0;
}

/* Logo: remove white card look + control size */
.site-footer__logo{
  width: 410px;          /* key: stop it being too big */
  max-width: 100%;
  height: auto;
  display: block;
  opacity: .95;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.18));
  background: linear-gradient(45deg, black, transparent);
}

/* Description: control line length + spacing */
.site-footer__desc{
  max-width: 520px;      /* readable line length */
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,.72);
  margin-top:20px;
}

/* Titles */
.site-footer__title{
  margin: 6px 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  color: rgba(255,255,255,.9);
}

/* Links */
.site-footer__links{ display: grid; gap: 10px; }

.site-footer__link{
  color: rgba(255,255,255,.72);
  display: inline-block;
  transition: transform .15s ease, color .15s ease;
}
.site-footer__link:hover{
  color: #ffffff;
  transform: translateX(4px);
}

/* Contact */
.site-footer__contact{ display:grid; gap:10px; }
.site-footer__contact li{
  font-size: 14px;
  color: rgba(255,255,255,.74);
}

/* Divider + bottom bar */
.site-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.10);
}
.site-footer__bottomInner{
  padding: 18px 0;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,.55);
}

/* Responsive */
@media (max-width: 767px){
  .site-footer{ padding-top: 44px; }

  .site-footer__inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__logo{ width: 350px; }

  .site-footer__bottomInner{ text-align: left; }
}
