/* Modern Footer Styles */

.footer-modern {
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.95) 0%, rgba(8, 8, 8, 1) 100%);
  border-top: 1px solid rgba(84, 186, 223, 0.15);
  padding: 80px 0 40px;
  margin-top: 100px;
}

.footer-container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 48px;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(84, 186, 223, 0.2);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
  padding-left: 16px;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.2s ease;
  color: var(--teal);
}

.footer-links a:hover {
  color: var(--teal);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Logo */
.footer-logo {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(84, 186, 223, 0.1);
}

.footer-logo img {
  max-width: 220px;
  height: auto;
  opacity: 0.9;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(84, 186, 223, 0.1);
  gap: 32px;
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

.footer-powered-by {
  display: inline-block;
  opacity: 0.8;
}

.footer-powered-by img {
  height: 32px;
  width: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  
  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-modern {
    padding: 60px 0 32px;
    margin-top: 80px;
  }
  
  .footer-container {
    padding: 0 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-column:last-child {
    grid-column: 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .footer-logo {
    margin-top: 24px;
    padding-top: 24px;
  }
  
  .footer-logo img {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .footer-heading {
    font-size: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .footer-copyright {
    font-size: 0.85rem;
  }
}

/* Optional: Add subtle animation on scroll into view */
@media (prefers-reduced-motion: no-preference) {
  .footer-modern {
    animation: fadeInUp 0.6s ease-out;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

