/* ===== FOOTER ===== */
.footer {
  background: #080f1a;
  padding: 60px 60px 0 60px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Brand Column --- */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
}

.footer-logo {
  height: 130px;
  width: auto;
  mix-blend-mode: screen;

}

.footer-tagline {
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.6;
}

.footer-location {
  font-size: 0.85rem;
  color: #4a6080;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-location i {
  color: #2b6cb0;
}

/* --- Links Column --- */
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #90cdf4;
  margin-bottom: 4px;
}

.footer-links a,
.footer-contact a {
  font-size: 0.95rem;
  color: #718096;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #e2e8f0;
}

.footer-contact a i {
  color: #2b6cb0;
  width: 14px;
}

/* --- Bottom Bar --- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #4a5568;
}

.footer-credit {
  font-size: 0.8rem;
  color: #4a5568;
}

.footer-credit span {
  color: #2b6cb0;
  font-weight: 700;
}