/* =========================================================
   12. FOOTER
   ========================================================= */
.site-footer {
  background-color: #12161d;
  padding: 58px 0 24px;
  color: var(--white);
}

.footer-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 0px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--white);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background-color: var(--secondary);
  color: var(--white);
}

.footer-social a i {
  font-size: 1.05rem;
  line-height: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 34px;
  padding-top: 20px;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}