/* ============================================================
   MASTER FOOTER STYLING
   ============================================================ */
.mvo-footer-master {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 100px 0 60px; /* Generous breathing room */
}

.mvo-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.mvo-footer-brand .footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 24px;
}

.mvo-footer-brand p {
  max-width: 280px;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   SOCIAL BUTTONS (Symmetrical Styling)
   ============================================================ */
.footer-social-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding: 10px 18px;
  background: var(--bg-main);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION LINKS
   ============================================================ */
.footer-col h4 {
  margin-bottom: 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-link {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent);
}

/* ============================================================
   BOTTOM BAR
   ============================================================ */
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.legal-links {
  display: flex;
  gap: 24px;
}

/* ============================================================
   MOBILE SYMMETRY FIX
   ============================================================ */
@media (max-width: 820px) {
  .mvo-footer-grid {
    grid-template-columns: 1fr; /* Single column spine */
    text-align: center;
    gap: 50px;
  }

  .mvo-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mvo-footer-brand p {
    max-width: 100%;
  }

  .footer-social-row {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}