/* ===== FOOTER ===== */

.site-footer {
  background: linear-gradient(180deg, #070E1A, #0b1324);
  color: #e6f1ff;
  padding: 70px 20px 25px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 44px;
}

/* FOOTER HEADINGS */
.site-footer h3,
.site-footer h4 {
  color: #19e0ff;
  margin-bottom: 14px;
  padding-bottom: 6px;
  letter-spacing: .4px;
  font-weight: 700;
}

/* Footer description text */
.site-footer p {
  line-height: 1.7;
  color: #e6f1ff;
  margin-top: 10px;
}

.site-footer a {
  color: #e6f1ff;
  text-decoration: none;
  display: block;
  margin-bottom: 9px;
  transition: .25s ease;
}

.site-footer a:hover {
  color: #19e0ff;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  color: #e6f1ff;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 18px;
}

/* ===== FOOTER MOBILE ===== */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer h3,
  .site-footer h4 {
    margin-top: 22px;
  }
}
