/* ============================= */
/* MWN CORPORATION – FOOTER CSS */
/* Brand Color: #963014          */
/* ============================= */

.mwn-footer {
  background: #963014;
  padding: 90px 20px 45px;
  color: #fef6f2;
}

/* Glass Container */
.footer-glass {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 65px 60px 35px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Layout */
.footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 50px;
}

/* Brand */
.footer-logo {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffb199;
}

.footer-desc {
  font-size: 14.5px;
  line-height: 1.85;
  color: #f2d3c8;
  max-width: 420px;
}

/* Headings */
.footer-heading {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-heading::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg, #ffffff, #ffb199);
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #f1c7b8;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #ffb199;
  transform: translateX(3px);
}

/* Contact */
.footer-contact li {
  font-size: 14.5px;
  margin-bottom: 10px;
  color: #f1c7b8;
}

.footer-contact strong {
  color: #ffffff;
}

.footer-contact a {
  color: #ffb199;
  text-decoration: none;
}

/* CTA Button */
.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 14.5px;
  font-weight: 600;
  background: linear-gradient(90deg, #963014, #c3471f);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.5);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 13px;
  color: #f1c7b8;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-row {
    grid-template-columns: 1fr;
  }
  .footer-glass {
    padding: 45px 28px 30px;
  }
}
