/* =========================================================
   FOOTER TURBOHOST
========================================================= */

.th-footer {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.th-footer__main {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 72px;
}

.th-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr 1fr;
  gap: 72px;
  align-items: start;
}

.th-footer__col h3 {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.th-footer__brand {
  max-width: 320px;
}

.th-footer__logo {
  display: inline-block;
  margin-bottom: 34px;
}

.th-footer__logo img {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
}

.th-footer__lead {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.96);
}

.th-footer__social {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.th-footer__social a {
  color: rgba(255,255,255,0.82);
  font-size: 22px;
  transition: opacity .2s ease, transform .2s ease;
}

.th-footer__social a:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: #fff;
}

.th-footer__dash {
  margin-bottom: 18px;
  font-size: 24px;
  color: rgba(180,210,255,0.9);
}

.th-footer__hours-title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}

.th-footer__hours p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.th-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.th-footer__links li {
  margin-bottom: 16px;
}

.th-footer__links a {
  color: rgba(255,255,255,0.94);
  font-size: 17px;
  line-height: 1.45;
  transition: color .2s ease, opacity .2s ease;
}

.th-footer__links a:hover {
  color: #fff;
  opacity: 0.82;
}

.th-footer__subscribe {
  max-width: 280px;
}

.th-footer__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.th-footer__form label {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
}

.th-footer__form input {
  width: 100%;
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  outline: none;
  color: #fff;
  background: rgba(0, 8, 24, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.th-footer__form input::placeholder {
  color: rgba(255,255,255,0.32);
}

.th-footer__btn {
  margin-top: 14px;
  width: fit-content;
  min-width: 104px;
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f7cff 0%, #1d63f2 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(29, 99, 242, 0.28);
  transition: transform .2s ease, filter .2s ease;
}

.th-footer__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.th-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0, 8, 25, 0.16);
}

.th-footer__bottom-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.th-footer__copy {
  font-size: 14px;
  color: rgba(255,255,255,0.86);
}

.th-footer__extras {
  display: flex;
  align-items: center;
  gap: 26px;
}

.th-footer__currency,
.th-footer__totop {
  color: rgba(255,255,255,0.86);
  font-size: 16px;
  transition: opacity .2s ease;
}

.th-footer__currency:hover,
.th-footer__totop:hover {
  opacity: 1;
  color: #fff;
}

.th-footer__totop {
  font-size: 28px;
  line-height: 1;
}

/* Responsive */

@media (max-width: 1200px) {
  .th-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px 40px;
  }

  .th-footer__subscribe {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .th-footer__main {
    width: min(100% - 32px, 1280px);
    padding: 2em;
  }

  .th-footer__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .th-footer__brand,
  .th-footer__subscribe {
    max-width: 100%;
  }

  .th-footer__logo img {
    width: 190px;
  }

  .th-footer__col h3 {
    margin-bottom: 20px;
  }

  .th-footer__links li {
    margin-bottom: 12px;
  }

  .th-footer__bottom-inner {
    width: min(100% - 32px, 1280px);
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .th-footer__extras {
    width: 100%;
    justify-content: space-between;
  }
}