/* Footer - Unified Professional Design */
.footer {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: white;
  padding: 2.5rem 0 1.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 100;
}

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

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

/* Footer Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Logo Container - Fixed dimensions */
.footer-logo {
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  font-weight: 400;
}

/* Footer Links */
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s ease;
  padding: 0.25rem 0.5rem;
}

.footer-link:hover {
  color: white;
  text-decoration: underline;
}

.footer-separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0.5rem;
  font-weight: 300;
}

/* Footer Copyright */
.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  width: 100%;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.25rem;
  }
  
  .footer-logo {
    width: 180px;
    height: 50px;
  }
  
  .footer-description {
    font-size: 0.9rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-separator {
    display: none;
  }
  
  .footer-copyright {
    padding-top: 1.25rem;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 0 1rem;
  }
  
  .footer-container {
    padding: 0 0.75rem;
  }
  
  .footer-logo {
    width: 160px;
    height: 45px;
  }
  
  .footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .footer-link {
    font-size: 0.85rem;
    padding: 0.5rem 0;
  }
  
  .footer-copyright p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}