/* ============================================================
   SDC MODERN FOOTER — Shared across all pages
   ============================================================ */

.sdc-footer {
  background: linear-gradient(180deg, #002C50, #060e18);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  font-family: 'Outfit', system-ui, sans-serif;
}
.sdc-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sdc-footer__brand img { height: 48px; margin-bottom: 20px; }
.sdc-footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
}
.sdc-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.sdc-footer__social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  transition: all 0.3s;
}
.sdc-footer__social a:hover {
  background: #1C75BC;
  color: #fff;
  border-color: #1C75BC;
  transform: translateY(-3px);
}
.sdc-footer__col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Outfit', system-ui, sans-serif;
}
.sdc-footer__col ul { list-style: none; padding: 0; margin: 0; }
.sdc-footer__col ul li { margin-bottom: 10px; }
.sdc-footer__col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.2s;
}
.sdc-footer__col ul li a:hover {
  color: #5BA4E6;
  padding-left: 4px;
}
.sdc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.sdc-footer__bottom a { color: #5BA4E6; text-decoration: none; }

/* Responsive */
@media (max-width: 1200px) {
  .sdc-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .sdc-footer__grid { grid-template-columns: 1fr; }
  .sdc-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
