/* Footer Styles - Extracted from styles.css */
:root {
  /* Enhanced Color Palette */
  --primary-blue: #1e40af;
  --secondary-blue: #3b82f6;
  --light-blue: #60a5fa;
  --accent-blue: #93c5fd;
  --pale-blue: #dbeafe;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-gray: #f1f5f9;
  --gray: #64748b;
  --dark-gray: #334155;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Enhanced Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Enhanced Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  --gradient-light: linear-gradient(135deg, var(--pale-blue), var(--white));
  --gradient-hero: linear-gradient(135deg, var(--off-white) 0%, var(--pale-blue) 100%);

  /* Enhanced Border Radius */
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;

  /* Enhanced Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Footer */
.footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .icon-circle {
  background: var(--gradient-primary);
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-motto {
  color: var(--light-blue);
}

.footer-description {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--light-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--dark-gray);
  font-size: 14px;
  color: var(--gray);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--light-blue);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 40px;
  }

  .footer-content {
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 32px;
  }

  .footer-content {
    gap: 32px;
  }

  .footer-description {
    font-size: 14px;
  }

  .social-links {
    gap: 12px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
