
/* =========================
   FULL WIDTH FOOTER FIX
========================= */

.footer-wrapper {
  background: #0a0a0f;
  color: #ffffff;

  padding: 70px 0 20px;
  font-family: "Segoe UI", sans-serif;

  width: 100vw !important;
  max-width: 100vw !important;

  position: relative;

  /* 🔥 BREAK OUT OF BOXED LAYOUT */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  overflow: hidden;
}

/* glow effect */
.footer-wrapper::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: #6366f1;
  filter: blur(140px);
  opacity: 0.25;
}

/* container */
.footer-container {
  max-width: 1200px;
  margin: auto;

  display: flex;
  gap: 50px;

  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* columns */
.footer-col {
  flex: 1;
}

/* text styles */
.footer-title {
  font-size: 26px;
  margin-bottom: 15px;
}

.footer-subtitle {
  font-size: 18px;
  margin-bottom: 15px;
  color: #e5e5e5;
}

.footer-desc {
  color: #b5b5b5;
  line-height: 1.7;
}

/* links */
.footer-link {
  color: #cfcfcf;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-link:hover {
  color: #6366f1;
}

.footer-link-inline {
  color: #6366f1;
  text-decoration: none;
}

.footer-link-inline:hover {
  text-decoration: underline;
}

/* buttons */
.footer-btn {
  display: block;
  padding: 12px;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 10px;
  background: #6366f1;
  color: white;
  text-decoration: none;
}

.footer-btn:hover {
  background: #4f46e5;
}

.footer-btn.outline {
  background: transparent;
  border: 1px solid #6366f1;
}

.footer-btn.outline:hover {
  background: #6366f1;
}

/* bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 15px;
  color: #777;
}

/* responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}