/* =========================================================================
   Customer Traac — SHARED footer styles (single source of truth)
   Loaded globally by resources/views/layout.antlers.html, AFTER the per-page
   stylesheet, so the footer renders identically on every page and any new
   page inherits it automatically. Do not duplicate footer rules per page.
   ========================================================================= */
footer {
  background: #0e2240;
  color: rgba(255,255,255,0.6);
  padding: 72px 48px 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  column-gap: 7%;
  row-gap: 40px;
  padding: 0 8px;
}
.footer-brand .nav-logo { font-size: 20px; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* legal links (Privacy / Terms) — match other footer links, no default underline/purple */
.footer-bottom a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* contact block: phone / email / address — match footer link styling (no default blue/underline) */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact li { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.6); }
.footer-contact a { color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact .footer-address { font-style: normal; }
.footer-contact .footer-address a { color: rgba(255,255,255,0.6); }
.footer-contact .footer-address a:hover { color: #fff; }

/* mobile responsiveness (added in mobile-QA pass) */
@media (max-width: 768px) {
  footer { padding: 40px 22px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 26px; }
}
@media (max-width: 460px) {
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
}
