

.footer-wrap {
  padding: 28px 20px;
  border-radius: 18px;
  margin-top: 25px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(14px) saturate(160%);

  box-shadow: 0 0 40px rgba(255,255,255,0.08);
}

/* Top Row */
.footer-row.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand span {
  font-size: 13px;
  color: var(--muted);
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  font-size: 20px;
  padding: 10px;
  border-radius: 10px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);

  transition: .25s ease;
  color: #fff;
}

.footer-socials a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 16px rgba(255,255,255,0.45);
}

/* Middle Links */
.footer-links {
  margin: 22px 0;
  display: flex;
  justify-content: center;
  gap: 26px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: .2s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 600px) {
  .footer-columns {
    display: none !important;
  }
}

.about {
  background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent);
  padding: 8px;
  border-radius: 12px;
  margin: 28px 0;
}

.about p {
  color: var(--muted);
}


/* === PRO FOOTER UPGRADE === */

.pro-footer {
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,120,255,0.25), transparent 70%);
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

/* Social Icons Upgrade */
.footer-socials.pro a {
  font-size: 22px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  transition: 0.25s ease;
  align-items: center;
  width: 50px;
}

.footer-socials.pro a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 18px rgba(255,255,255,0.5);
}

/* Footer Columns */
.footer-columns {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-columns h4 {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
}

.footer-columns a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 6px;
  transition: 0.2s ease;
}

.footer-columns a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* Bottom Section */
.footer-bottom.pro {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-bottom .dot {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

/* Responsive */
@media(max-width:600px) {
  .footer-columns {
    flex-direction: column;
    text-align: center;
  }
}
