/* ============================================
   FOOTER + TRUCKS BANNER
   ============================================ */
.trucks-banner {
  width: 100%;
  height: 666px;
  overflow: hidden;
}

.trucks-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  background: var(--bg-dark);
  padding: 80px 0;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.footer-logo img {
  max-height: 65px;
  width: auto;
  object-fit: contain;
}

.footer-contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
}

.footer-contacts a:hover {
  color: var(--red);
  transition: color 0.2s ease;
}

.footer-sep {
  color: var(--white-20);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .trucks-banner { height: 300px; }
  .footer { padding: 60px 0; }
  .footer-inner { gap: 32px; }
  .footer-logo img { max-height: 50px; }
  .footer-contacts { flex-direction: column; gap: 8px; text-align: center; }
  .footer-sep { display: none; }
  .social-link { width: 48px; height: 48px; }
  .social-link svg { width: 20px; height: 20px; }
}
