/* FOOTER */
.footer {
  background-color: #111111; /* dark for strong contrast */
  color: #dddddd;
  padding: 60px 0 20px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* FOOTER COLUMNS */
.footer-col h2.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #FFC107;
  margin-bottom: 15px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6px;
  color: #cccccc;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #cccccc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #FFC107;
  padding-left: 5px;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #FFC107;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  background-color: #FFC107;
  color: #111111;
  transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #aaaaaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

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