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

.site-footer-compact {
  background: #f8f9fa;
  border-top: 1px solid #e5e7eb;
  padding: 0;
  margin-top: var(--spacing-2xl);
}

/* Footer Main Section */
.site-footer-compact .footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl) 0;
  border-bottom: 1px solid #e5e7eb;
}

/* Footer Brand (Logo + Tagline) */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo-icon {
  flex-shrink: 0;
}

.footer-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-domain {
  color: var(--primary-color);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* Footer Navigation */
.footer-nav-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-links li {
  margin: 0;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* Footer Social */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid #e5e7eb;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.social-link i {
  font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  margin: 0;
}

.footer-copyright p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.footer-copyright a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
}

.footer-copyright a:hover {
  color: var(--primary-color);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

.footer-legal .separator {
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .site-footer-compact .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer-compact .footer-main {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo-link {
    justify-content: center;
  }

  .footer-nav-section,
  .footer-social {
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

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

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

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}
