#site-footer {
  background: var(--bg-dark);
  border-top: 3px solid var(--red);
}

.footer-main {
  padding: 5rem 0 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.875rem;
  max-width: 28ch;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.footer-socials { display: flex; gap: 0.6rem; }
.social-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  text-decoration: none;
}
.social-link:hover {
  background: var(--red-dim);
  color: var(--red);
  border-color: var(--red-border);
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C41414;
  margin-bottom: 1.25rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
  transition: color 0.22s;
}
.footer-links a:hover { color: #ffffff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
}
.footer-contact-icon {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.68);
  transition: color 0.22s;
}
.footer-contact-item a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  max-width: none;
}
.footer-badge {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-badge span { color: var(--blue); }

@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-main { padding: 3.5rem 0 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
