/* Footer Styles */
.footer {
  background-color: var(--navy-900);
  color: var(--gray-300);
  padding: var(--space-6) 0 var(--space-3);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.footer-logo {
  flex: 0 0 300px;
}

.footer-logo .logo {
  display: inline-block;
  margin-bottom: var(--space-2);
  color: var(--white);
}

.footer-logo p {
  font-size: 0.95rem;
  color: var(--gray-400);
}

.footer-links {
  display: flex;
  flex: 1;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-column {
  min-width: 150px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: var(--space-2);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--orange-500);
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: var(--gray-400);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--orange-500);
  padding-left: 5px;
}

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

.footer-legal {
  display: flex;
  gap: var(--space-3);
}

.footer-legal a {
  color: var(--gray-400);
}

.footer-legal a:hover {
  color: var(--orange-500);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    gap: var(--space-5);
  }
  
  .footer-logo {
    flex: 0 0 100%;
    text-align: center;
  }
  
  .footer-links {
    justify-content: space-between;
  }
}

@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .footer-links {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .footer-column {
    width: 100%;
    text-align: center;
  }
  
  .footer-column h4:after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
  }
}
