/* ---------- CENTERED MINIMALIST FINTECH FOOTER ---------- */
.site-footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 35px;
  position: relative;
  overflow: hidden;
  color: var(--text-secondary);
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

/* Logo Box */
.footer-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 95px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 200, 83, 0.25));
  transition: transform var(--transition-normal);
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.footer-logo-title {
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Contact Info Row */
.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-info-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.footer-info-pill svg {
  color: var(--bull-green);
  flex-shrink: 0;
}

/* Social Pills */
.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.footer-social-pill svg {
  color: var(--bull-green);
  transition: color var(--transition-fast);
}

.footer-social-pill:hover {
  background: var(--bull-green);
  border-color: var(--bull-green);
  color: #000000;
}

.footer-social-pill:hover svg {
  color: #000000;
}

/* Divider & Bottom Bar */
.footer-bottom-divider {
  width: 100%;
  max-width: 320px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  margin: 32px auto 20px;
}

.footer-bottom {
  text-align: center;
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #64748b;
  letter-spacing: 0.02em;
}

/* Responsive Footer */
@media (max-width: 600px) {
  .site-footer {
    padding: 45px 0 25px;
  }

  .footer-center-content {
    gap: 22px;
  }

  .footer-logo-img {
    height: 52px;
  }

  .footer-logo-title {
    font-size: 1.1rem;
  }

  .footer-contact-row {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-info-pill {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    box-sizing: border-box;
  }

  .footer-social-row {
    gap: 8px;
  }

  .footer-social-pill {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
}
