/**
 * Footer Component
 * Modern, comprehensive footer with navigation, social links, and branding
 */

.footer {
  display: block !important;
  position: relative !important;
  background: #1e293b !important;
  color: white;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
  inset: unset !important;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative !important;
  background: transparent !important;
  inset: unset !important;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  margin-bottom: 1rem;
  max-width: 200px;
  overflow: hidden;
}

.footer-logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  display: block;
}

.footer-description {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.2s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-color, #6366f1);
  transform: translateY(-2px);
}

.footer-column-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: white;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}

.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

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

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}
