/* Premium Footer Styles - Fixed & Polished */
.footer {
  background-color: #0f172a; 
  color: #94a3b8;
  padding: 3rem 0 2rem;
  font-family: inherit;
  width: 100%;
}

@media (min-width: 768px) {
  .footer {
    padding: 5rem 0 3rem;
  }
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: left;
}

@media (min-width: 1024px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    gap: 8rem;
  }
}

.footer-brand {
  flex: 1.5;
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-icon {
  color: #3b82f6;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.025em;
}

.footer-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #94a3b8;
}

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

.social-link {
  color: #64748b;
  transition: all 0.2s ease;
}

.social-link:hover {
  color: #3b82f6;
  transform: translateY(-2px);
}

.footer-nav {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 480px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 640px) {
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-nav {
    gap: 4rem;
  }
}

.footer-nav-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f1f5f9;
  margin-bottom: 1.5rem;
  text-align: left;
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-nav-links li {
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.footer-nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-nav-links a:hover {
  color: #3b82f6;
}

.footer-divider {
  height: 1px;
  background-color: #1e293b;
  margin: 4rem 0 2rem;
}

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

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 0.875rem;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #f8fafc;
}