/* ============================================================
   CAZNET — footer.css
   ============================================================ */

footer {
  background: #111120;
  color: rgba(255,255,255,0.55);
}

footer .wrap {
  padding-top: 56px;
  padding-bottom: 32px;
}

/* ── Footer grid ────────────────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

/* ── Brand column ───────────────────────────────────────────── */
.footer-brand .footer-logo {
  height: 30px;
  width: auto;
  /* Render the standard logo on dark bg using inversion + cyan preservation trick:
     brightness(0) makes it all black, invert(1) makes it all white.
     Cyan element (#29ABE2) becomes a light colour — acceptable until a white SVG is provided. */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 220px;
  margin-top: 14px;
  color: rgba(255,255,255,0.45);
}

/* ── Link columns ───────────────────────────────────────────── */
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }

/* ── Footer bottom bar ──────────────────────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: #fff; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
