/* ══════════════ STANDARD FOOTER ══════════════ */
:root {
  --navy: #0a1929;
  --teal: #00bcd4;
}

.footer { background: var(--navy); padding: 56px 40px 28px; color: white; }
.footer-inner { max-width: 1340px; margin: 0 auto; }
.footer-accred { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; padding-bottom: 36px; margin-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-accred img { height: 28px; width: auto; opacity: 0.8; transition: opacity 0.3s; filter: brightness(0) invert(1); }
.footer-accred img:first-child { height: 32px; }
.footer-accred img:hover { opacity: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.footer-brand .footer-logo span { color: var(--teal); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 300px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: rgba(255,255,255,0.85); }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; padding: 3px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }

.tap-to-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.tap-to-call:hover { color: var(--teal); }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-accred { gap: 20px; padding-bottom: 28px; margin-bottom: 28px; }
  .footer-accred img { height: 22px; }
  .footer-accred img:first-child { height: 26px; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 20px 20px; }
}

@media (max-width: 480px) {
  .footer { padding: 30px 16px 15px; }
}
