.site-footer {
  background: #222;
  color: rgba(255,255,255,0.75);
  margin-top: 32px;
}

/* ── Trust Bar ── */
.trust-bar {
  background: #2a2a2a;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon i {
  font-size: 18px;
  color: #fff;
}
.trust-text strong {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.trust-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

/* ── Footer Links ── */
.footer-links-section {
  padding: 32px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.brand-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-icon i {
  font-size: 18px;
  color: #fff;
}
.brand-logo strong {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.footer-brand p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: var(--transition-fast);
  text-decoration: none;
}
.social-link:hover { background: var(--primary); color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
  text-decoration: none;
}
.footer-col ul li a:hover { color: var(--primary); }

/* ── Newsletter ── */
.newsletter-section {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}
.newsletter-section h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}
.newsletter-section p {
  font-size: 12px;
  margin-bottom: 12px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form button {
  padding: 9px 18px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--primary-dark); }

/* ── Bottom Bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner p {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.footer-disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 8px 0;
}

/* ── Back to Top / Float ── */
.float-action {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}
.float-btn {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); background: var(--primary-dark); }
.float-btn.whatsapp { background: #25D366; font-size: 22px; }
.back-top { opacity: 0; pointer-events: none; transition: var(--transition); }
.back-top.visible { opacity: 1; pointer-events: auto; }
