/* Footer — Dark 4-column layout (site-wide) */
.lfd-footer {
  padding: 68px clamp(16px, 4vw, 64px) 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: #060d14;
  color: rgba(255,255,255,.72);
}
.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr .95fr;
  gap: 40px;
}
.footer-brand img {
  height: 20px; opacity: .7; margin-bottom: 18px;
}
.lfd-footer p { font-size: .7rem; color: rgba(255,255,255,.72); line-height: 1.85; }
.lfd-footer h4 {
  font-size: .43rem; font-weight: 700;
  letter-spacing: .38em; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-bottom: 16px;
  font-family: 'Poppins', 'Poppins-fallback', sans-serif;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a {
  font-size: .7rem; color: rgba(255,255,255,.72);
  display: block; padding: 3px 0;
  transition: color .25s; text-decoration: none;
}
.footer-links a:hover { color: rgba(255,255,255,.96); }
.footer-hours {
  font-size: .7rem; color: rgba(255,255,255,.72); line-height: 2.1;
}
.footer-hours strong { color: rgba(255,255,255,.96); font-weight: 500; }
.footer-directions { margin-top: 18px; }
.footer-directions a {
  color: #4fc0eb; font-weight: 600; font-size: .7rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .25s; text-decoration: none;
}
.footer-directions a:hover { color: #fff; }
.footer-links a:focus-visible,
.footer-bottom a:focus-visible,
.footer-directions a:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 2px;
  border-radius: 4px;
}
[data-hrs] { color: #4fc0eb; font-weight: 500; }
.footer-bottom {
  max-width: 1400px; margin: 36px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between;
  font-size: .52rem; color: rgba(255,255,255,.35);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom a {
  color: rgba(255,255,255,.4); transition: color .25s;
  text-decoration: none;
}
.footer-bottom a:hover { color: rgba(255,255,255,.72); }
@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media(max-width:600px) { .footer-grid { grid-template-columns: 1fr; } }

/* Mobile CTA Bar */
.mobile-bar {
  display: none; position: fixed;
  bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(6,13,20,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar-inner { display: flex; }
.mobile-bar a {
  flex: 1; display: flex; align-items: center;
  justify-content: center; gap: 6px;
  height: 54px; font-weight: 600; font-size: .58rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.96); text-decoration: none;
  font-family: 'Poppins', 'Poppins-fallback', sans-serif;
}
.mobile-bar .bar-call { border-right: 1px solid rgba(255,255,255,.1); }
.mobile-bar .bar-schedule { background: #0093D3; }
@media(max-width:767px) {
  .mobile-bar { display: block; }
  body { padding-bottom: 54px; }
}

/* Footer office card */
.footer-office-card {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 12px;
  transition: transform .3s var(--e, cubic-bezier(.22,1,.36,1));
}
.footer-office-card:hover {
  transform: translateY(-2px);
}
.footer-office-card img {
  transition: opacity .3s;
}
.footer-office-card:hover img {
  opacity: .9;
}
