/* =================================== */
/* footer.css                          */
/* Zesty Finance site footer           */
/* Matches zestyfinance.com exactly    */
/* =================================== */

/* Main footer — matches Webflow .footer-2.footerfull */
.ze-site-footer {
  background: rgb(55, 43, 97);
  color: #FFFFFF;
  padding: 80px 80px 32px;
  font-family: 'Bitstream Swiss 721', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}

.ze-site-footer a {
  text-decoration: none !important;
  color: inherit !important;
  transition: opacity 0.2s ease;
}

.ze-site-footer a:hover {
  opacity: 0.8;
}

/* ---- Footer logo — matches .logo-footer-2 ---- */
.ze-footer-logo {
  display: inline-block;
}

.ze-footer-logo img {
  height: 96px;
  width: auto;
}

/* ---- App store links — matches .link-stores ---- */
.ze-footer-app-links {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.ze-footer-app-links a {
  display: inline-block;
}

.ze-footer-app-links img {
  height: 48px;
  width: auto;
}

/* ---- Social icons — matches .flex-block-2 ---- */
.ze-footer-social-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ze-footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ze-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.ze-footer-social a:hover {
  transform: scale(1.1);
  opacity: 1 !important;
}

/* Social icons — matches .rrss-footer (40x40) */
.ze-footer-social img {
  width: 40px;
  height: 40px;
}

/* WhatsApp icon slightly larger — matches .rrss-footer.wsp (48x48) */
.ze-footer-social img.ze-wsp-icon {
  width: 48px;
  height: 48px;
}

/* ---- Divider — matches .divider-2 ---- */
.ze-footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0;
  width: 100%;
  max-width: 1332px;
}

/* ---- Legal text — matches .legal-text-footer em ---- */
.ze-footer-legal {
  font-size: 12px;
  font-weight: 500;
  font-family: 'Dinpro', 'DIN Pro', sans-serif;
  color: #FFFFFF;
  line-height: 1.7;
  text-align: center;
  max-width: 1332px;
  width: 100%;
  opacity: 0.6;
}

.ze-footer-legal em {
  font-style: italic;
}

/* ---- Bottom links — matches .footer-link-2 ---- */
.ze-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.ze-footer-links a {
  font-size: 16px;
  color: #FFFFFF !important;
  font-weight: 400;
  font-family: 'Bitstream Swiss 721', sans-serif;
  padding: 8px;
  opacity: 0.8;
}

.ze-footer-links a:hover {
  opacity: 1 !important;
}

/* ---- WhatsApp floating button ---- */
.ze-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ze-whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.ze-whatsapp-float img,
.ze-whatsapp-float svg {
  width: 40px;
  height: 40px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .ze-site-footer {
    padding: 48px 24px 24px;
    gap: 20px;
  }

  .ze-footer-logo img {
    height: 64px;
  }

  .ze-footer-app-links img {
    height: 40px;
  }

  .ze-footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .ze-site-footer {
    padding: 32px 16px 20px;
  }

  .ze-footer-social img {
    width: 32px;
    height: 32px;
  }

  .ze-footer-social img.ze-wsp-icon {
    width: 40px;
    height: 40px;
  }
}

/* ---- Dark mode ---- */
.ze-dark .ze-site-footer {
  background: #080910;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
