.site-footer {
  background: linear-gradient(180deg, #091b33 0%, #0d274f 100%);
  color: #fff;
  padding: 4rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.footer-title {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8fd3ff;
}

.footer-brand p,
.footer-contact p,
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a,
.footer-bottom a {
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #8fd3ff;
  transform: translateX(3px);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.footer-contact i {
  color: #8fd3ff;
  margin-top: 0.2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  background: #8fd3ff;
  color: #071b33;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding-top: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
