.site-footer {
  background: #0b1f38;
  color: rgba(255, 255, 255, .75);
  padding-top: 70px;
}

.footer-brand-box {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: 270px;
  max-height: 90px;
  object-fit: contain;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.footer-about {
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 390px;
}

.footer-title {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, #a9653c, #d79a6b);
  border-radius: 99px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  color: #d79a6b;
}

.footer-links a:hover {
  color: #d79a6b;
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: #d79a6b;
  font-size: 19px;
  margin-top: 2px;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #d79a6b;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.footer-social a:hover {
  background: #d79a6b;
  color: #111827;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  margin-top: 50px;
  padding: 22px 0;
  font-size: 14px;
}

.footer-bottom a {
  color: #d79a6b;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 991px) {
  .footer-logo {
    width: 230px;
    max-height: 78px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 50px;
  }

  .footer-brand-box {
    justify-content: flex-start;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .text-md-end {
    margin-top: 8px;
  }
}

@media (max-width: 575px) {
  .footer-logo {
    width: 200px;
    max-height: 70px;
  }
}