/* Bluetti-style site footer */

.site-footer {
  background: #0f0f10;
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 28px;
  /* margin-top: 0px; */
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.site-footer__inner {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.site-footer__top {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__newsletter h2 {
  margin: 0 0 18px;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
}

.site-footer__newsletterRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__subscribe {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 320px;
  max-width: 640px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer__subscribe input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  padding: 10px 12px;
}

.site-footer__subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__subscribe button {
  border: 0;
  outline: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  background: #1f6feb;
  color: #fff;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__socialLink {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__socialLink i {
  font-size: 16px;
}

.site-footer__cols {
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.site-footer__accordionBtn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  cursor: default;
}

.site-footer__plus {
  display: none;
  font-size: 20px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__panel {
  margin-top: 10px;
}

.contact-links a{
  text-decoration: underline;
}

.site-footer a,
.site-footer a:link,
.site-footer a:visited,
.site-footer a:hover,
.site-footer a:active {
    color: #fff; /* your desired color */
    text-decoration: none;
}

.site-footer__title {
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__col li {
  margin: 10px 0;
}

.site-footer__col a {
  font-size: 14px;
}

.site-footer__bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
}

/* Utility: screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .site-footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-footer__inner {
    width: min(1200px, calc(100% - 36px));
  }

  .site-footer__newsletter h2 {
    font-size: 22px;
  }

  .site-footer__newsletterRow {
    align-items: stretch;
  }

  .site-footer__social {
    width: 100%;
    justify-content: flex-start;
  }

  .site-footer__subscribe {
    min-width: 0;
    width: 100%;
  }

  .site-footer__cols {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer__col {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer__accordionBtn {
    cursor: pointer;
  }

  .site-footer__plus {
    display: inline-block;
  }

  .site-footer__accordionBtn[aria-expanded="true"] .site-footer__plus {
    transform: rotate(45deg);
    transition: transform 0.15s ease;
  }

  .site-footer__accordionBtn[aria-expanded="false"] .site-footer__plus {
    transform: rotate(0deg);
    transition: transform 0.15s ease;
  }

  .site-footer__panel {
    margin-top: 12px;
  }
}
