/* ============================================
   FOOTER.CSS - Footer Section Styles
   ============================================ */

/* ===== Footer Container ===== */
.footer {
  background-color: #000;
  border-top: 1px solid #333;
  padding: 3em 0 1em;
  margin-top: 4em;
}

/* ===== Footer Content ===== */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-bottom: 2em;
}

/* ===== Footer Sections ===== */
.footer-section h3,
.footer-section h4 {
  margin-bottom: 1em;
  color: #fff;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1em;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5em;
  color: #ccc;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

/* ===== Social Links ===== */
.social-links {
  display: flex;
  gap: 1em;
  margin-top: 1em;
}

.social-links a {
  font-size: 1.5em;
  text-decoration: none;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: scale(1.2);
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  text-align: center;
  padding-top: 2em;
  border-top: 1px solid #333;
  color: #666;
}
