/* ===== Modern Footer Design ===== */
.site-footer {
  background-color: #0b0f19 !important;
  /* Matches slate-950 color */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  position: relative;
  z-index: 10;
  display: block !important;
}

.footer-brand .custom-logo-link img {
  height: 52px !important;
  width: auto !important;
  max-height: 52px !important;
  border-radius: 6px;
  background-color: #ffffff;
  padding: 4px;
}

.footer-socials .social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  /* Slate-400 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.footer-socials .social-link:hover {
  background-color: #ffb300;
  /* Accent color */
  color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 179, 0, 0.3);
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #ffb300;
  border-radius: 1px;
}

.footer-menu-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-menu-links a:hover {
  color: #ffb300;
  transform: translateX(4px);
}

.footer-contact-info li {
  font-size: 0.95rem;
}

.footer-contact-info a {
  transition: all 0.3s ease;
}

.footer-contact-info a:hover {
  color: #ffb300 !important;
}

.footer-newsletter-form .form-control {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 30px 0 0 30px !important;
  padding: 12px 20px !important;
  font-size: 0.9rem !important;
  box-shadow: none !important;
}

.footer-newsletter-form .form-control:focus {
  border-color: rgba(255, 179, 0, 0.5) !important;
  background-color: rgba(255, 255, 255, 0.02) !important;
}

.footer-newsletter-form .btn {
  border-radius: 0 30px 30px 0 !important;
  padding: 0 20px !important;
  background-color: #ffb300 !important;
  border-color: #ffb300 !important;
  color: #0f172a !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.footer-newsletter-form .btn:hover {
  background-color: #ffc107 !important;
  border-color: #ffc107 !important;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
  font-size: 0.9rem;
}

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

.footer-bottom-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ffb300;
}

.site-footer {
  margin-top: 0;
}

/* ===== Footer Mobile Responsiveness Overrides ===== */
@media (max-width: 767.98px) {
  .site-footer {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .site-footer .row {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  .site-footer [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    text-align: center !important;
  }

  .footer-heading::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .footer-socials {
    justify-content: center !important;
  }

  .footer-contact-info li {
    justify-content: center !important;
  }

  .footer-newsletter-form {
    max-width: 320px !important;
    margin: 0 auto !important;
  }

  .footer-divider {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .footer-bottom-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
    margin-top: 15px !important;
  }

  .footer-bottom-links .list-inline-item {
    margin: 0 !important;
  }
}

@media (max-width: 767px) {
  ul.list-unstyled.footer-menu-links.mb-0 {
    margin-right: 50px;
  }
}

@media(max-width:767px) {
  .row>[class*="col-"] {
    padding-bottom: 20px;
  }
}