/* ================= FOOTER ================= */

.footer{
  background:#041e42;
  color:#e5e7eb;
  margin-top:80px;
}

/* Container */
.footer-container{
  max-width:1200px;
  margin:auto;
  padding:64px 20px 48px;
  display:grid;
  grid-template-columns:1.4fr 2fr;
  gap:60px;
}

/* ================= BRAND ================= */
.footer-brand p{
  font-size:14px;
  line-height:1.7;
  color:#cbd5e1;
  max-width:360px;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  font-size:20px;
}

.footer-logo small{
  font-size:14px;
  font-weight:500;
  opacity:.8;
}

/* Logo image box */
.logo-box{
  width:36px;
  height:36px;
  border-radius:10px;
  background:#ff6b35;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.logo-box img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* ================= LINKS ================= */
.footer-links{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.footer-links h4{
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:14px;
  color:#f8fafc;
}

.footer-links a{
  display:block;
  text-decoration:none;
  color:#cbd5e1;
  font-size:14px;
  margin-bottom:10px;
  transition:.2s ease;
}

.footer-links a:hover{
  color:#ffffff;
  transform:translateX(2px);
}

/* ================= BOTTOM BAR ================= */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:18px 20px;
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  color:#cbd5e1;
}

.footer-legal{
  display:flex;
  gap:20px;
}

.footer-legal a{
  color:#cbd5e1;
  text-decoration:none;
}

.footer-legal a:hover{
  color:#ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px){
  .footer-container{
    grid-template-columns:1fr;
    gap:36px;
    padding:48px 20px 36px;
  }

  .footer-links{
    grid-template-columns:1fr 1fr;
    gap:28px;
  }

  .footer-brand p{
    max-width:100%;
  }
}

@media (max-width: 520px){
  .footer-container{
    padding:40px 16px 32px;
  }

  .footer-logo{
    font-size:18px;
  }

  .footer-links{
    grid-template-columns:1fr;
    gap:24px;
  }

  .footer-links h4{
    font-size:12px;
    margin-bottom:10px;
  }

  .footer-links a{
    font-size:14px;
    margin-bottom:8px;
  }

  .footer-bottom{
    flex-direction:column;
    gap:12px;
    text-align:center;
    font-size:12px;
  }

  .footer-legal{
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
  }
}
