
/* ===================== */
/* FOOTER */
/* ===================== */

footer.footer {
  background: #0A1A2F;
  color: white;
  padding: 60px 5%;
}

/* GRID LAYOUT */
.ftr-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;

  max-width: 1200px;
  margin: 0 auto;
}

/* TYPO */
footer h3 {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

footer p,
footer a {
  font-size: var(--text-caption);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* NAV LINKS */ 
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-nav a:hover {
  transform: translateX(5px);
}

/* SOCIAL ICONS */
.ftr-scl-wrp {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ftr-scl-wrp img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.85;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.ftr-scl-wrp img:hover {
  opacity: 1;
}

.footer-logo-img {
  width: 110px;
  height: auto;
  display: block;
  margin-bottom: 12px;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logo-img:hover {
  opacity: 0.85;
  transform: scale(1.02);
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .ftr-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .ftr-wrapper {
    grid-template-columns: 1fr;
  }
}
