/**
 * Footer Styles
 * Sales Fundas Theme by Infineural Technologies
 */

/* =========================================================
   SITE FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Brand column */
.footer-brand {}

.footer-logo {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}
.footer-logo span { color: var(--gold); }
.footer-logo img { height: 44px; width: auto; }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--t-fast), color var(--t-fast);
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Footer columns */
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--gold); }
.footer-col address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
}
.footer-col address a {
  color: rgba(255,255,255,.5);
}
.footer-col address a:hover { color: var(--gold); }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-cr {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}
.footer-powered {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}
.footer-powered a {
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast);
}
.footer-powered a:hover { color: var(--gold); }

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 20px; right: 20px; }
}
