/* Reset footer height behavior */
html, body {
  height: auto;
  margin: 0;
  padding: 0;
}

.footer {
  background-color: #121d2b;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding: 30px 20px 20px;
  font-size: 14px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #ffffff;
  margin-right: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff9900;
}

/* ✅ FIXED SOCIAL ICONS */
.footer-social a {
  display: inline-block;
  margin-right: 15px;
  text-decoration: none;
}

.footer-social a i {
  width: 42px;
  height: 42px;
  background-color: #1f2d3f;
  color: #ffffff;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.footer-social a:hover i {
  background-color: #ff9900;
  color: #121d2b;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.3);
}

.footer-copy {
  text-align: center;
  color: #cccccc;
  font-size: 13px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links a {
    display: block;
    margin: 8px 0;
  }

  .footer-social {
    margin-top: 10px;
  }

  .footer-social a {
    margin: 0 8px;
  }
}
