/* #region Footer Styles */

.site-footer {
  background-color: #0f1d2f;
  font-family: 'Poppins', Arial, sans-serif;
  padding-top: 48px;
}

.footer-top {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
}

.footer-logo {
  max-width: 190px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #9fb3c8;
  font-size: 13px;
  margin-bottom: 0;
}

.footer-heading {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
  color: #9fb3c8;
  font-size: 13px;
}

.footer-links a {
  color: #9fb3c8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  color: #9fb3c8;
  font-size: 13px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.footer-contact i {
  color: #6fa8d8;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-copy,
.footer-meta {
  color: #7d8fa3;
  font-size: 12px;
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social span {
  color: #7d8fa3;
  font-size: 12px;
  margin-right: 4px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #16324f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.footer-social a:hover {
  background-color: #3d6fb4;
}

@media (max-width: 767.98px) {
  .footer-social {
    justify-content: flex-start;
    margin-top: 10px;
  }

  .text-md-center,
  .text-md-end {
    text-align: left !important;
  }
}

@media (max-width: 575.98px) {
  .site-footer {
    padding-top: 32px;
  }
}

/* #endregion Footer Styles */