/* ===== Footer (isolated) ===== */
.fs-footer{
  --fs-blue: #0a65a8;
  --fs-blue-dark:#0a5a97;
  --fs-link:#ff5a2a;
  --fs-text:#e8f2fb;
  --fs-muted:#b7d0e9;

  background: var(--fs-blue);
  color: var(--fs-text);
  padding-top: 40px;
  margin-top: 48px;
  position: relative;
}

.fs-footer a{ color:#fff; text-decoration:none; }
.fs-footer a:hover{ text-decoration:underline; }

.fs-footer__inner{
  max-width:1200px; margin:0 auto;
  padding:0 16px 24px;
  display:grid; gap:28px; grid-template-columns:1fr;
}

.fs-footer__brand .fs-footer__logo{ width:220px; height:auto; display:block; margin-bottom:12px; }
.fs-footer__addr{ font-style:normal; line-height:1.5; margin:8px 0; color:var(--fs-muted); }
.fs-footer__phone{ display:inline-block; margin:6px 0; font-weight:700; }
.fs-footer__licenses{ margin:6px 0 0; color:var(--fs-muted); font-size:.95rem; }

.fs-footer__title{ font-size:1.15rem; font-weight:800; margin:4px 0 12px; }
.fs-footer__list, .fs-footer__areas{
  list-style:none; padding:0; margin:0; display:grid; gap:8px;
}

.fs-footer__areas a{ color:var(--fs-link); font-weight:600; }
.fs-footer__text{ color:var(--fs-muted); line-height:1.6; }

.fs-footer__social{ display:flex; gap:12px; margin-top:14px; }
.fs-footer__soc{
  width:40px; height:40px; border-radius:999px; display:grid; place-items:center;
  background:#084e89; border:1px solid rgba(255,255,255,.15);
}
.fs-footer__soc:hover{ background:#0b5797; }
.fs-footer__soc svg{ width:20px; height:20px; fill:#fff; display:block; }

.fs-footer__bottom{
  border-top:1px solid rgba(255,255,255,.15);
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:16px;
  max-width:1200px; margin:0 auto;
}
.fs-footer__bottom nav{ display:flex; gap:16px; flex-wrap:wrap; }
.fs-footer__bottom a{ color:#fff; opacity:.9; }
.fs-footer__bottom a:hover{ opacity:1; text-decoration:underline; }

/* Grid at larger screens */
@media (min-width:700px){
  .fs-footer__inner{ grid-template-columns:1.2fr 1fr 1fr 1fr 1fr; }
}

/* Back to top */
.fs-footer .fs-backtotop{
  position:fixed; right:18px; bottom:18px;
  width:44px; height:44px; border-radius:999px; border:none;
  background:var(--fs-blue-dark); color:#fff; font-size:18px; line-height:1;
  cursor:pointer; box-shadow:0 6px 20px rgba(0,0,0,.25);
  display:none; /* JS toggles */
}
.fs-footer .fs-backtotop:focus-visible{ outline:3px solid #fff; outline-offset:2px; }
