/* ========== LIQUID GLASS FOOTER ========== */
.footer-modern {
  background: linear-gradient(135deg, rgba(15,23,42,0.97) 0%, rgba(30,27,75,0.97) 50%, rgba(15,23,42,0.97) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  color: #94a3b8;
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(124,58,237,0.15);
}

/* Animated top border */
.footer-modern::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #7c3aed, #ec4899, #06b6d4, #7c3aed);
  background-size: 300% auto;
  animation: footerBorderShimmer 5s linear infinite;
}

/* Ambient glow */
.footer-modern::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 65%);
  top: -250px; right: -150px;
  pointer-events: none;
}

@keyframes footerBorderShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.footer-modern .row { align-items: flex-start; }

/* Company name */
.footer-modern h3 {
  background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

/* Section headings */
.footer-modern h6 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.85);
}
.footer-modern h6::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  border-radius: 2px;
  transition: width 0.35s ease;
}
.footer-modern h6:hover::after { width: 48px; }

/* List items */
.footer-modern ul.list-unstyled li {
  margin-bottom: 9px;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Links */
.footer-modern a.text-secondary {
  color: #94a3b8 !important;
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}
.footer-modern a.text-secondary:hover {
  color: #a78bfa !important;
  padding-left: 5px;
}

/* Social icons — glass pill */
.footer-modern .fab {
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
}
.footer-modern .fab:hover {
  color: #a78bfa !important;
  transform: translateY(-4px) scale(1.15);
  background: rgba(167,139,250,0.12);
}

/* Gradient divider */
.footer-modern .my-4 {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.4), rgba(236,72,153,0.3), rgba(6,182,212,0.25), transparent);
  border: none;
}

/* Copyright */
.footer-modern .text-center.small {
  color: #64748b;
  padding-top: 4px;
}

@media (max-width: 768px) {
  .footer-modern { padding: 44px 0 24px; }
}
