/* Footer Styles */
.site-footer {
  background: #111827 !important;
  color: var(--white) !important;
  padding: 2rem 0 0 !important;
  margin-top: 2rem !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

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

.footer-logo-img {
  height: 30px; /* Slightly smaller than header logo */
  width: auto;
  margin-right: 0.75rem;
}

.footer-logo-text {
  font-size: 1.25rem; /* Reduced from 1.5rem */
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(90deg, #fff, #e0e7ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-about h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--white);
  display: none; /* Hide the old title since we're using the logo */
}

.footer-about p {
  color: var(--gray-400);
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--white);
}

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

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

.footer-links a,
.footer-legal a {
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--white);
  text-decoration: underline;
}

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

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-contact i {
  margin-right: 0.75rem;
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--gray-400);
  font-size: 0.875rem;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

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

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem 0;
  }
  
  .social-links {
    margin-top: 0.75rem;
  }
}
