/* =========================
   FOOTER STYLE
========================= */

.footer {
  background: #0D1840;
  color: #ffffff;
  padding: 80px 0 80px;
}

.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== Top Row ===== */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Brand */
.footer-brand {
  max-width: 300px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 30px;
}

.footer-brand p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Links Wrapper */
.footer-links {
  display: flex;
  gap: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 14px;
}

.footer-column a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 25px;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

/* Compliance Section */
.footer-compliance img {
  width: 100%;
  max-width: 150px;
}

.footer-divider {
  margin: 30px 0 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 25px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social i {
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-social i:hover {
  color: #ffffff;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .footer-top {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}