/* ═══════════════════════════════════════
   ZAYOLI — Footer Premium
   ═══════════════════════════════════════ */

.zb-footer {
  margin-top: auto;
}

.zb-footer-main {
  background: linear-gradient(160deg, #8a9a7a 0%, #7a8e68 40%, #6d825c 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  padding: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.zb-footer-main::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.zb-footer-main::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.08);
  pointer-events: none;
}

/* Brand column */
.zb-footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.zb-footer-tagline {
  font-family: var(--z-font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* Column headings */
.zb-footer-col h4 {
  font-family: var(--z-font-display) !important;
  font-size: 18px;
  color: var(--z-white) !important;
  font-weight: 400;
  margin-bottom: 18px;
}

/* Links */
.zb-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zb-footer-col ul li {
  margin-bottom: 10px;
}
.zb-footer-col ul li a {
  font-family: var(--z-font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}
.zb-footer-col ul li a:hover {
  color: var(--z-white);
  padding-left: 4px;
}

/* Contact list */
.zb-footer-contact li {
  font-family: var(--z-font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* Social icons */
.zb-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.zb-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.zb-footer-social a:hover {
  background: rgba(255,255,255,0.18);
  color: var(--z-white);
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Newsletter */
.zb-footer-nl-text {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.zb-footer-nl {
  display: flex;
}
.zb-footer-nl-input {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--z-white);
  padding: 13px 18px;
  font-size: 12px;
  font-family: var(--z-font-body);
  outline: none;
  border-radius: 24px 0 0 24px;
  backdrop-filter: blur(4px);
}
.zb-footer-nl-input::placeholder { color: rgba(255,255,255,0.25); }
.zb-footer-nl-btn {
  background: linear-gradient(135deg, var(--z-gold), var(--z-gold-light));
  border: none;
  padding: 13px 22px;
  color: var(--z-white);
  font-family: var(--z-font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 24px 24px 0;
  transition: all 0.3s ease;
}
.zb-footer-nl-btn:hover {
  filter: brightness(1.1);
}

/* Bottom bar */
.zb-footer-bottom {
  background: linear-gradient(135deg, #5a6b4a, #4a5c3a);
  padding: 18px clamp(24px, 4vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--z-font-body);
}
.zb-footer-bottom span {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1.5px;
}
.zb-footer-bottom-brand {
  font-family: var(--z-font-display) !important;
  font-size: 14px !important;
  color: rgba(212,168,83,0.4) !important;
  letter-spacing: 4px !important;
}
.zb-footer-legal {
  display: flex;
  gap: 18px;
}
.zb-footer-legal a {
  font-size: 10px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.3s ease;
}
.zb-footer-legal a:hover {
  color: var(--z-gold);
}

/* ═══════════════════════════════════════
   Responsive
   ═══════════════════════════════════════ */
@media (max-width: 960px) {
  .zb-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .zb-footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }
  .zb-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 16px 20px;
  }
}
