.site-footer {
  position: relative;
  background: linear-gradient(180deg, #16171A 0%, #34373C 100%);
  color: #ffffff;
  padding-top: 60px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

.site-footer a:hover {
  color: white;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 48px;
}

.footer-top h2 {
  font-size: 3.75rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  font-family: var(--font-title);
}

.footer-top h2 span {
  color: #FF6633;
}

.footer-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 517px;
}

.footer-top-right p {
  margin-bottom: 20px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.4;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background-color: #FF6633;
  color: #fff !important;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.footer-btn img {
  margin-left: 10px;
  background-color: rgba(254, 254, 254, 0.2);
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.footer-branding>img {
  margin-bottom: 20px;
}

.footer-branding p {
  font-size: 1.125rem;
  line-height: 2rem;
  color: #d1d1d1;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover, a:active {
  background: var(--color-accent);
}

.footer-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-column h3 {
  font-size: 1.125rem;  
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: var(--font-title);
}

.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services li {
  margin-bottom: 10px;
  line-height: 32px;
  font-size: 1.125rem;
  color: #d1d1d1;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0 0 95px 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.125rem;
  color: #d1d1d1;
  gap: 10px;
  line-height: 32px;
}

.footer-contact li:hover a {
  color: white;
}

.footer-contact li svg {
  transition: fill 0.3s ease, color 0.3s ease;
}

.footer-contact li:hover svg * {
  fill: var(--color-accent);
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: auto;
}

.footer-contact-links a {
  color: #d1d1d1 !important;
  text-decoration: none;
}

.footer-affiliates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 382px;
  max-height: 256px;
}

.footer-affiliates-grid-item {
  background: rgba(255, 255, 255, 0.05);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  height: 80px;
  width: 122px;
}

.footer-affiliates-grid-item img {
  max-width: 100%;
  height: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  color: white;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.footer-bottom-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom-logo span {
  margin-top: .3125rem;
}

.footer-bg-text-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.footer-bg-text {
  position: absolute;
  bottom: 0px;
  left: 0;
  pointer-events: none;
}

.footer-top-btn {
  position: absolute;
  top: 0px;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: #383b40;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  z-index: 10;
}

@media(max-width: 991px) {
  .footer-middle {
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer-column {
    flex: 1 1 40%;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media(max-width: 767px) {
  .footer-column {
    flex: 1 1 100%;
  }
}