/* ===== Base Footer ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.zimmy-footer {
  background: radial-gradient(circle at 20% 20%, #26314b96, #212d64c4 80%);
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Glassmorphic Glow Layer */
.zimmy-footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(56,189,248,0.3), transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

.zimmy-footer::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236,72,153,0.3), transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

/* Inner Content */
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Logo */
.footer-logo {
  height: 60px;
  filter: drop-shadow(0px 0px 8px rgba(56,189,248,0.5));
  margin-bottom: 15px;
}

/* Titles */
.footer-column h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #ec4899);
  border-radius: 2px;
}

/* Text */
.footer-desc {
  font-size: 14px;
  margin-bottom: 15px;
  color: #cbd5e1;
}

/* List */
.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  transition: transform 0.3s ease;
}

.footer-list li:hover {
  transform: translateX(4px);
}

.footer-list li i {
  color: #38bdf8;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-list li:hover i {
  transform: scale(1.2);
  color: #ec4899;
}

/* Links */
.footer-list a {
  text-decoration: none;
  color: inherit;
  position: relative;
}

.footer-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #38bdf8, #ec4899);
  transition: width 0.3s ease;
}

.footer-list a:hover::after {
  width: 100%;
}

/* Warning Text */
.footer-warning {
  color: #f87171;
  font-size: 13px;
  font-weight: bold;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: #38bdf8;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ec4899;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-list li {
    justify-content: center;
  }
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
