/**
 * VOC Sourcing — Mega footer (layout inspired by shanghaifair.in, blue professional theme)
 */
:root {
  --footer-primary: #0369a1;
  --footer-primary-dark: #0c4a6e;
  --footer-accent: #38bdf8;
  --footer-accent-light: #bae6fd;
  --footer-cream: #f8fafc;
  --footer-white: #ffffff;
  --footer-text: #0f172a;
  --footer-muted: #64748b;
  --footer-border: #e2e8f0;
  --footer-shadow: 0 12px 40px rgba(3, 105, 161, 0.08);
  --wa-green: #25d366;
}

.voc-footer.footer,
footer.footer.voc-footer {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 55%, #dbeafe 100%);
  padding: 56px 0 28px;
  border-top: 3px solid var(--footer-accent-light);
  color: var(--footer-text);
  font-family: var(--voc-font, "Poppins", system-ui, sans-serif);
}

.voc-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.voc-footer .footer__lead {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--footer-white);
  border-radius: 16px;
  margin-bottom: 40px;
  border: 1px solid var(--footer-border);
  box-shadow: var(--footer-shadow);
}

.voc-footer .footer__lead h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--footer-text);
}

.voc-footer .footer__lead p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 14px;
  max-width: 420px;
  line-height: 1.5;
}

.voc-footer .footer__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.voc-footer .footer__form input[type="tel"],
.voc-footer .footer__form input[type="text"] {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--footer-border);
  min-width: min(260px, 100%);
  font-size: 15px;
  background: var(--footer-cream);
  font-family: inherit;
}

.voc-footer .footer__form .btn--primary {
  padding: 14px 22px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--footer-primary), #0ea5e9);
  color: #fff;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.voc-footer .footer__form .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

.voc-footer #subsMsg {
  font-size: 13px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--footer-primary);
  width: 100%;
}

.voc-footer .footer__mega {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 0.95fr 0.95fr;
  gap: 36px 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.35);
}

.voc-footer .footer__mega-brand h4 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--footer-text);
}

.voc-footer .footer__mega-brand > p {
  font-size: 14px;
  color: var(--footer-muted);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 340px;
}

.voc-footer .footer__brand-mark {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  text-decoration: none;
}

.voc-footer .footer__brand-mark img,
.voc-footer .footer__brand-logo {
  height: 72px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.voc-footer .footer__contact a,
.voc-footer .footer__contact .footer__address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  color: var(--footer-text);
}

.voc-footer .footer__contact a:hover {
  color: var(--footer-primary);
}

.voc-footer .footer__address {
  color: var(--footer-muted);
  margin-bottom: 0;
}

.voc-footer .footer__contact-icon {
  flex-shrink: 0;
  width: 1.25em;
  text-align: center;
  color: var(--footer-primary);
}

.voc-footer .footer__mega-col h5 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--footer-primary);
  margin: 0 0 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--footer-accent-light);
}

.voc-footer .footer__col-desc {
  font-size: 13px;
  color: var(--footer-muted);
  margin: 0 0 14px;
  line-height: 1.45;
}

.voc-footer .footer__social-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.voc-footer .social-pill {
  padding: 10px 16px;
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s, filter 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
}

.voc-footer .social-pill:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: #fff;
}

.voc-footer .social-pill--fb { background: #1877f2; }
.voc-footer .social-pill--ig { background: linear-gradient(45deg, #f09433, #dc2743); }
.voc-footer .social-pill--yt { background: #ff0000; }
.voc-footer .social-pill--x { background: #0f172a; }
.voc-footer .social-pill--threads { background: #1a1a1a; border: 1px solid #444; }
.voc-footer .social-pill--wa { background: var(--wa-green); }

.voc-footer .footer__link-list,
.voc-footer .footer__site-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.voc-footer .footer__link-list li { margin-bottom: 8px; }

.voc-footer .footer__link-list a {
  font-size: 14px;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.voc-footer .footer__link-list a:hover {
  color: var(--footer-primary);
  padding-left: 5px;
}

.voc-footer .footer__site-list li { margin-bottom: 8px; }

.voc-footer .footer__site-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--footer-white);
  border: 1px solid var(--footer-border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--footer-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.voc-footer .footer__site-list a:hover {
  border-color: var(--footer-accent);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.voc-footer .footer__site-list img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.voc-footer .footer__site-list span {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.voc-footer .footer__site-list strong {
  font-size: 13px;
  font-weight: 700;
}

.voc-footer .footer__site-list small {
  font-size: 11px;
  color: var(--footer-muted);
  font-weight: 500;
}

.voc-footer .footer__quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  padding: 20px 0;
  margin-bottom: 8px;
}

.voc-footer .footer__quick-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--footer-muted);
}

.voc-footer .footer__quick a {
  font-size: 13px;
  font-weight: 600;
  color: var(--footer-text);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.voc-footer .footer__quick a:hover {
  color: var(--footer-primary);
  border-bottom-color: var(--footer-accent);
}

.voc-footer .footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.voc-footer .footer__legal a {
  font-size: 13px;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.voc-footer .footer__legal a:hover {
  color: var(--footer-primary);
}

.voc-footer .footer__bottom {
  text-align: center;
  padding-top: 8px;
  font-size: 13px;
  color: var(--footer-muted);
}

.voc-footer .footer__bottom strong {
  color: var(--footer-text);
}

.voc-footer .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1100px) {
  .voc-footer .footer__mega {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .voc-footer .footer__mega {
    grid-template-columns: 1fr;
  }
  .voc-footer .footer__lead {
    padding: 20px;
  }
  .voc-footer .footer__form {
    width: 100%;
  }
  .voc-footer .footer__form input {
    flex: 1;
    min-width: 0;
  }
}
