/* ================================
   PAGE SUPPORT #ffc815 #fff315
================================ */
html, body {
  height: 100%;
}

.page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content-wrap {
  flex: 1;
}

/* ================================
   FOOTER BASE
================================ */
.footer {
  background: #222;
  color: #dcdcdc;
  padding: 3rem 1.5rem 1.5rem;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ================================
   FOOTER GRID
================================ */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

/* ================================
   SECTIONS
================================ */
.footer-section h2,
.footer-section h3 {
  color: #ffc815;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cfcfcf;
}

/* ================================
   LINKS
================================ */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
}

.footer-section ul li a {
  color: #dcdcdc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

/* ================================
   SOCIAL ICONS
================================ */
.social-icons {
  display: flex;
  gap: 0.6rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icons a:hover {
  background: #ffc815;
  color: #222;
  transform: translateY(-3px);
}

/* ================================
   FOOTER BOTTOM
================================ */
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid #444;
  text-align: center;
  font-size: 0.85rem;
  color: #bdbdbd;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 1rem 1rem;
  }

  .footer-container {
    gap: 2rem;
    text-align: center;
  }

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