/* design-system/css/footer.css */
/* Site footer component with columns, stats, and social links. */

.site-footer {
  background: #1a1a2e;
  color: #fff;
  padding: 48px max(40px, calc((100% - 1400px) / 2)) 0;
}

/* ── Top section: logo + stats ── */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.footer-stat-label {
  font-size: 13px;
  color: #9aa3af;
  line-height: 1.4;
}

/* ── Column grid ── */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 13px;
  color: #9aa3af;
  text-decoration: none;
  line-height: 28px;
}

.footer-link:hover {
  color: #fff;
}

/* ── Cargo categories 2-col grid ── */
.footer-cargo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* ── Contact items ── */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9aa3af;
  line-height: 28px;
}

/* ── Social icons ── */
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social img {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

.footer-social img:hover {
  opacity: 1;
}

/* ── Copyright ── */
.footer-copyright {
  font-size: 12px;
  color: #5c6370;
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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