.site-footer{
  background:#0f172a;
  color:#e5e7eb;
  padding-top: 54px;
}

.footer__top{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 34px;
}

.footer__logoImg{ max-height: 46px; width:auto; }
.footer__logoText{ font-weight:800; font-size: 18px; color:#fff; }

.footer__title{
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.footer__text{
  margin: 12px 0 0;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 420px;
}

.footer__links{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap: 10px;
}

.footer__links a{
  color: rgba(255,255,255,.8);
  text-decoration:none;
}
.footer__links a:hover{
  color: var(--brand, #e11d2e);
}

.footer__social{
  display:flex;
  gap: 10px;
  margin-top: 16px;
}

.footer__socialLink{
  width: 40px;
  height: 40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color:#fff;
  text-decoration:none;
}
.footer__socialLink:hover{
  background: rgba(255,255,255,.14);
  color: var(--brand2, #fbbf24);
}

/* bottom bar */
.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
}
.footer__bottomInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.footer__copy{
  margin:0;
  color: rgba(255,255,255,.65);
  font-size: 14px;
}

/* Back to top (fixed like your screenshot) */
.back-to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--brand, #e11d2e);
  color: #fff;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  z-index: 999;
}
.back-to-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* SR only */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

@media (max-width: 900px){
  .footer__top{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__social{ justify-content:center; }
  .footer__text{ margin-left:auto; margin-right:auto; }
  .footer__bottomInner{
    flex-direction: column;
  }
}





/* Footer logo visibility fix */
.site-footer .footer__logo{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-footer .footer__logoImg{
  display: block;
  width: auto;
  height: auto;
  max-width: 240px;
  max-height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.45));
}



/* ==============================
   Footer facelift (visual upgrade)
   (append at END of footer.css)
================================ */

/* Richer background + subtle glow */
.site-footer{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(225,27,34,.22), transparent 62%),
    radial-gradient(800px 380px at 92% 10%, rgba(255,212,0,.18), transparent 60%),
    linear-gradient(180deg, #0b1224 0%, #0f172a 55%, #0b1020 100%);
}

.site-footer::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.08), transparent 70%) 0 0/320px 320px;
  opacity:.10;
}

.site-footer > *{ position: relative; z-index: 1; }

/* Make columns feel like premium cards */
.footer__brand,
.footer__nav,
.footer__meta{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

/* Better spacing */
.footer__top{
  gap: 22px;
  padding-bottom: 40px;
}

/* Logo: clean light plate so dark logo stays visible */
.site-footer .footer__logo{
  /* background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: none;
  padding: 14px;
  border-radius: 15px; */
}

.site-footer .footer__logoImg{
  max-height: 110px;
  max-width: 280px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__logoImg{
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.20));
}

/* Titles + text */
.footer__title{
  font-size: 15px;
  letter-spacing: .10em;
}

.footer__text{
  font-size: 15px;
}

/* Links: nicer hover + bullet */
.footer__links a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px;
  border-radius: 12px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.footer__links a::before{
  content:"";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,212,0,.85);
  box-shadow: 0 0 0 3px rgba(255,212,0,.12);
}
.footer__links a:hover{
  background: rgba(255,255,255,.06);
  color: #fff;
  transform: translateX(2px);
}

/* Contact items */
.footer__contactItem{
  margin: 10px 0 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,.80);
  line-height: 1.6;
}
.footer__contactItem i{
  margin-top: 4px;
  color: rgba(255,212,0,.95);
}
.footer__contactItem a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.28);
}
.footer__contactItem a:hover{
  color: #fff;
  border-bottom-color: rgba(255,255,255,.55);
}

/* Social icons: lift on hover */
.footer__socialLink{
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.footer__socialLink:hover{
  transform: translateY(-2px);
}

/* Bottom bar */
.footer__bottom{
  background: rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
}

/* Back-to-top should sit above header */
.back-to-top{ z-index: 1200; }

@media (max-width: 900px){
  .footer__brand,
  .footer__nav,
  .footer__meta{
    padding: 18px;
  }

  .footer__contactItem {
    justify-content: center;
  }

}
@media (max-width: 450px){
  .site-footer .footer__logoImg{
    max-height: 80px;
    max-width: 200px;
  }
}




/* ==============================
   Sticky WhatsApp Icon Only
================================ */
.whatsapp-sticky{
  position: fixed;
  right: 18px;
  bottom: 78px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  z-index: 1201;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-sticky i{
  font-size: 30px;
  line-height: 1;
}

.whatsapp-sticky:hover,
.whatsapp-sticky:focus{
  color: #fff;
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,.28);
}

.whatsapp-sticky:focus-visible{
  outline: 3px solid rgba(37,211,102,.28);
  outline-offset: 4px;
}

/* mobile */
@media (max-width: 767px){
  .whatsapp-sticky{
    width: 52px;
    height: 52px;
    right: 12px;
    bottom: 74px;
  }

  .whatsapp-sticky i{
    font-size: 27px;
  }

  .back-to-top{
    right: 12px;
    bottom: 14px;
  }
}