
:root{
  --deep-navy:#06152b;
  --royal-blue:#1f4ed8;
  --electric:#38bdf8;
  --gold:#f6d365;
  --glass:rgba(255,255,255,0.08);
  --white:#ffffff;
  --silver:#dbeafe;
}

/* RESET */
.elite-footer *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* MAIN FOOTER */
.elite-footer{
  position:relative;
  overflow:hidden;
  padding:70px 25px 35px;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(246,211,101,0.22), transparent 30%),
    linear-gradient(135deg,#020617,#06152b,#0f172a,#1e3a8a);
  border-top:1px solid rgba(255,255,255,0.08);
}

/* Floating light effect */
.footer-glow{
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(56,189,248,0.18), transparent 65%);
  top:-220px;
  left:-120px;
  animation:floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow{
  0%,100%{transform:translateY(0px);}
  50%{transform:translateY(30px);}
}

.footer-wrap{
  max-width:1300px;
  margin:auto;
  position:relative;
  z-index:2;
}

/* BRAND */
.footer-brand{
  text-align:center;
  margin-bottom:38px;
}

.footer-brand h2{
  font-size:42px;
  font-weight:900;
  letter-spacing:2px;
  color:#fff;
  text-transform:uppercase;
  background:linear-gradient(90deg,#ffffff,#38bdf8,#f6d365,#ffffff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.footer-brand p{
  margin-top:10px;
  color:var(--silver);
  font-size:17px;
  letter-spacing:0.4px;
}

/* LINKS */
.footer-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:38px;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
  padding:13px 22px;
  border-radius:14px;
  background:var(--glass);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,0.09);
  font-weight:600;
  transition:0.35s ease;
}

.footer-links a:hover{
  transform:translateY(-4px) scale(1.05);
  background:linear-gradient(135deg,#38bdf8,#1f4ed8);
  box-shadow:0 10px 25px rgba(56,189,248,0.35);
}

/* BOTTOM */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:24px;
  text-align:center;
}

.footer-bottom p{
  color:#ffffff;
  font-size:15px;
  margin-bottom:8px;
}

.footer-bottom strong{
  color:#f6d365;
}

.footer-bottom span{
  color:#93c5fd;
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* MOBILE */
@media(max-width:768px){

  .elite-footer{
    padding:55px 20px 28px;
  }

  .footer-brand h2{
    font-size:30px;
  }

  .footer-brand p{
    font-size:15px;
  }

  .footer-links{
    gap:12px;
  }

  .footer-links a{
    width:100%;
    max-width:260px;
    text-align:center;
  }
}
