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

.site-footer {
  background: var(--primary-color);
  color: white;
  padding: 3rem 0 0;
  margin-top: 4rem;
}

.footer-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Primary Grid */
.footer-primary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  color: rgba(255, 255, 255, 0.9);
}

.footer-section h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  margin-top: 0;
}

.footer-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--accent-light);
}

/* Disclaimer */
.footer-disclaimer {
  margin-bottom: 2rem;
}

.footer-disclaimer .callout {
  background: rgba(231, 76, 60, 0.15);
  border-left-color: var(--danger-color);
  color: white;
}

.footer-disclaimer .callout::before {
  color: white;
}

.footer-disclaimer .callout h4 {
  color: white;
  margin-top: 0;
}

/* Sitemap */
.footer-sitemap {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.footer-sitemap h4 {
  color: white;
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-sitemap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem 1rem;
}

.footer-sitemap li {
  margin: 0;
}

.footer-sitemap a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-sitemap a:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .footer-content {
    padding: 2rem 1.5rem;
  }

  .footer-primary {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-sitemap ul {
    grid-template-columns: 1fr;
  }
}
