/* ═══════════════════════════════════════════════════════════
   VAAZHA — footer-redesign.css v3.11
   Complete footer overhaul — additive on top of main.css.
   Uses same CSS variables (--clr-forest, --clr-lime, etc.)
═══════════════════════════════════════════════════════════ */

/* ── Reset old footer styles ─────────────────────────────── */
.vzh-footer {
  background: var(--clr-forest);
  color: rgba(255,255,255,0.75);
  padding: 0;
  font-size: 14px;
  line-height: 1.65;
  position: relative;
  overflow: hidden;
}
/* Decorative banana-leaf watermark */
.vzh-footer::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 380px; height: 380px;
  background: url("data:image/svg+xml,%3Csvg width='380' height='380' viewBox='0 0 200 200' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 10 C60 30 20 80 30 140 C40 180 80 195 100 190 C120 195 160 180 170 140 C180 80 140 30 100 10Z' fill='%23c8f55a' opacity='0.06'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
}

/* ── Newsletter band ─────────────────────────────────────── */
.vzh-footer-newsletter-band {
  background: rgba(200,245,90,0.06);
  border-bottom: 1px solid rgba(200,245,90,0.12);
  padding: 36px 0;
}
.vzh-footer-newsletter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.vzh-newsletter-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(18px,2.5vw,26px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 4px;
}
.vzh-newsletter-copy p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.4px;
}
.vzh-newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 440px;
  min-width: 260px;
}
.vzh-newsletter-input {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--clr-white);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.vzh-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.vzh-newsletter-input:focus {
  border-color: rgba(200,245,90,0.5);
  background: rgba(255,255,255,0.09);
}
.vzh-newsletter-btn {
  padding: 12px 20px;
  background: var(--clr-lime);
  color: var(--clr-dark);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--clr-lime);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.vzh-newsletter-btn:hover { background: var(--clr-lime-dark); border-color: var(--clr-lime-dark); }
.vzh-newsletter-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 6px;
  text-align: right;
}

/* ── 4-column main grid ──────────────────────────────────── */
.vzh-footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px 32px;
}

/* ── Column 1 — Brand ────────────────────────────────────── */
.vzh-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vzh-footer-logo {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255,255,255,0.94);
  border-radius: 10px;
  align-self: flex-start;
}
.vzh-footer-logo img {
  height: 44px;
  width: auto;
  filter: none;
  opacity: 1;
  display: block;
}
.vzh-footer-logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--clr-lime);
}
.vzh-footer-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-lime);
  margin: 0;
}
.vzh-footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  margin: 0;
  max-width: 300px;
}

/* Social icons — circle style */
.vzh-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.vzh-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.vzh-footer-social a:hover {
  background: var(--clr-lime);
  border-color: var(--clr-lime);
  color: var(--clr-dark);
}

/* ── Columns 2-4 — Links ─────────────────────────────────── */
.vzh-footer-col h4,
.vzh-footer-col-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-lime);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,245,90,0.15);
}
.vzh-footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.vzh-footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.vzh-footer-col ul li a:hover {
  color: var(--clr-lime);
  padding-left: 4px;
}
/* Contact info block inside Legal column */
.vzh-footer-contact-info {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.vzh-footer-contact-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
  margin: 0;
}
.vzh-footer-contact-info a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.vzh-footer-contact-info a:hover { color: var(--clr-lime); }

/* ── Bottom bar ─────────────────────────────────────────── */
.vzh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.vzh-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.vzh-footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.4px;
}
/* Payment badges row */
.vzh-footer-payment {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.vzh-payment-badge {
  padding: 4px 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
/* Back-to-top button */
.vzh-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.vzh-back-to-top:hover { color: var(--clr-lime); }
.vzh-back-to-top svg { width: 14px; height: 14px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .vzh-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .vzh-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .vzh-footer-main {
    grid-template-columns: 1fr;
    padding: 36px 20px 32px;
  }
  .vzh-footer-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .vzh-newsletter-form { max-width: 100%; width: 100%; }
  .vzh-newsletter-note { text-align: left; }
  .vzh-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
