/* Scoped footer styles so it won't be destroyed by global CSS */
#footer-web.tsc-footer {
  padding: 40px 16px 96px; /* extra bottom space if you have a sticky bar */
  border-top: 1px solid rgba(0,0,0,0.08);
}

#footer-web .tsc-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* reset link look (kills the blue default) */
#footer-web a {
  color: inherit;
  text-decoration: none;
}
#footer-web a:hover {
  text-decoration: underline;
}

/* Top grid */
#footer-web .tsc-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

#footer-web .tsc-footer__title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
}

/* ✅ FOOTER LOGO — 3x larger (was 96px) */
#footer-web .tsc-footer__logo {
  width: 288px;     /* 96px * 3 */
  max-width: 100%;  /* prevents overflow on smaller screens */
  height: auto;
  display: block;
  margin-bottom: 12px;
}

/* Optional: slightly reduce logo on very small phones so it doesn't look too huge */
@media (max-width: 420px) {
  #footer-web .tsc-footer__logo {
    width: 220px;
  }
}

#footer-web .tsc-footer__desc {
  margin: 0;
  max-width: 360px;
  line-height: 1.5;
  opacity: 0.9;
}

#footer-web .tsc-footer__links,
#footer-web .tsc-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer-web .tsc-footer__links li,
#footer-web .tsc-footer__contact li {
  margin: 8px 0;
}

/* Bottom layout */
#footer-web .tsc-footer__bottom {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

#footer-web .tsc-footer__socialLinks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Form */
#footer-web .tsc-footer__form {
  margin: 0;
}

#footer-web .tsc-footer__formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  align-items: end;
}

#footer-web .tsc-footer__form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

#footer-web input,
#footer-web textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  outline: none;
}

#footer-web textarea {
  resize: vertical;
  min-height: 110px;
}

#footer-web input:focus,
#footer-web textarea:focus {
  border-color: rgba(0,0,0,0.35);
}

#footer-web .tsc-footer__full {
  grid-column: 1 / -1;
}

#footer-web .tsc-footer__verify {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px;
  align-items: center;
}

#footer-web .tsc-footer__verifyLabel {
  font-weight: 700;
  font-size: 13px;
}

#footer-web .tsc-footer__verifyCode {
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(0,0,0,0.06);
}

#footer-web .tsc-footer__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer-web .tsc-footer__btn {
  width: fit-content;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

#footer-web .tsc-footer__note {
  margin: 0;
  font-size: 12px;
  opacity: 0.8;
}

#footer-web .tsc-footer__legal {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 12px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 900px) {
  #footer-web .tsc-footer__top {
    grid-template-columns: 1fr;
  }
  #footer-web .tsc-footer__bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  #footer-web .tsc-footer__formGrid {
    grid-template-columns: 1fr;
  }
  #footer-web .tsc-footer__verify {
    grid-template-columns: 1fr;
    align-items: start;
  }
  #footer-web .tsc-footer__btn {
    width: 100%;
  }
}
