/* ==========================================================================
   SHARED FOOTER STYLES
   ========================================================================== */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0 1rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .footer-container {
    max-width: 1320px;
    padding: 0 3rem;
  }
}
@media (min-width: 1440px) {
  .footer-container {
    max-width: 1420px;
    padding: 0 4rem;
  }
}
@media (min-width: 1680px) {
  .footer-container {
    max-width: 1520px;
    padding: 0 5rem;
  }
}
@media (min-width: 1920px) {
  .footer-container {
    max-width: 1600px;
    padding: 0 6rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  margin-bottom: 0.5rem;
}

.footer-brand p {
  line-height: 1.4;
  font-size: 0.85rem;
}

.footer-links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1rem;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.75;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--bg-card-hover);
  color: #f8fafc;
  border-color: #f8fafc;
  transform: translateY(-2px);
}

.footer-social-link img,
.footer-social-link svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR FOOTER
   ========================================================================== */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
