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

#footer {
  background-color: rgb(5, 32, 58);
  color: #ffffff;
  padding: 45px 10% 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #09a9d1 0%, #00c314 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #00c314;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(15, 37, 79, 0.9);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.footer-socials a i {
  font-size: 1.15rem;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #09a9d1 0%, #00c314 100%);
  box-shadow: 0 10px 25px rgba(9, 169, 209, 0.25);
}

.footer-bottom {
  padding-top: 22px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 0.9rem;
}

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

@media (max-width: 768px) {
  #footer {
    padding: 40px 6% 20px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-brand h3 {
    font-size: 1.6rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}
