/* ============================================================
   FOOTER — pz-footer prefix
   Dark footer with 4-column grid layout
   ============================================================ */

/* Reset: override old .footer styles from style.css */
footer.pz-footer,
footer.pz-footer *,
footer.pz-footer *::before,
footer.pz-footer *::after {
  box-sizing: border-box;
}

/* ── Main Footer ── */
.pz-footer {
  background: #111827;
  color: #d1d5db;
  font-family: "Poppins", sans-serif;
  padding: 64px 0 0;
  position: relative;
}

.pz-footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}
.pz-footer a:hover {
  color: #ea6425;
  text-decoration: none;
}

/* ── Container ── */
.pz-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── 4-Column Grid ── */
.pz-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* ── Column 1: Brand ── */
.pz-footer__brand-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  /* Invert for dark bg if logo is dark */
  filter: brightness(0) invert(1);
}

.pz-footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
  margin: 0 0 24px;
  max-width: 280px;
}

.pz-footer__social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pz-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #d1d5db;
  transition: background 0.2s ease, color 0.2s ease;
}
.pz-footer__social-link:hover {
  background: #ea6425;
  color: #fff;
}
.pz-footer__social-link i {
  font-size: 18px;
  line-height: 1;
}

/* ── Column headings ── */
.pz-footer__heading {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
}

/* ── Link lists ── */
.pz-footer__links {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.pz-footer__links:last-child {
  margin-bottom: 0;
}

.pz-footer__links li {
  margin-bottom: 10px;
}
.pz-footer__links li:last-child {
  margin-bottom: 0;
}

.pz-footer__links a {
  font-size: 13.5px;
  line-height: 1.4;
}

/* ── Column 4: Contact ── */
.pz-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13.5px;
  line-height: 1.5;
}
.pz-footer__contact-item i {
  font-size: 18px;
  color: #ea6425;
  flex-shrink: 0;
  margin-top: 2px;
}
.pz-footer__contact-item:last-of-type {
  margin-bottom: 24px;
}

.pz-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #ea6425;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.pz-footer__cta:hover {
  background: #d4551e;
  color: #fff;
  transform: translateY(-1px);
}
.pz-footer__cta i {
  font-size: 16px;
}

/* ── Trust Badges ── */
.pz-footer__badges {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.pz-footer__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  white-space: nowrap;
}
.pz-footer__badge i {
  font-size: 14px;
  color: #34d399;
}

/* ── Divider ── */
.pz-footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 48px 0 0;
}

/* ── Bottom Bar ── */
.pz-footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.pz-footer__copyright {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.pz-footer__legal {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.pz-footer__legal a {
  font-size: 12px;
  color: #6b7280;
}
.pz-footer__legal a:hover {
  color: #d1d5db;
}

/* ============================================================
   Responsive
   ============================================================ */

/* Tablet / narrow desktop: 2-col */
@media (max-width: 1024px) {
  .pz-footer {
    padding: 48px 0 0;
  }
  .pz-footer__inner {
    padding: 0 24px;
  }
  .pz-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}

/* Mobile: 1-col */
@media (max-width: 600px) {
  .pz-footer {
    padding: 40px 0 0;
  }
  .pz-footer__inner {
    padding: 0 20px;
  }
  .pz-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pz-footer__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
  }
  .pz-footer__legal {
    gap: 12px 16px;
  }
  .pz-footer__badges {
    flex-wrap: wrap;
  }
}
