/* ─── Shared Footer — used across all pages ─── */
.footer {
  background: #03190e;
  border-top: 1px solid #f1f5f9;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 49px 126px 48px;
  box-sizing: border-box;
}

.footer-inner {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  flex-shrink: 0;
  display: block;
  width: 130px;
  height: 71px;
}
.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-social:hover { opacity: 0.75; }
.footer-social img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-social span {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  white-space: nowrap;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.footer-link:hover { opacity: 0.7; text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 1280px) {
  .footer { padding: 40px 60px; }
}

@media (max-width: 768px) {
  .footer         { padding: 40px 24px; }
  .footer-inner   { flex-direction: column; align-items: flex-start; gap: 32px; }
  .footer-right   { align-items: flex-start; }
  .footer-legal   { justify-content: flex-start; gap: 20px; }
  .footer-socials { gap: 24px; }
}
