/* Footer Styles - White Dominant */
.footer {
  background-color: white;
  color: #36454F; /* Charcoal */
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  border-top: 1px solid rgba(54, 69, 79, 0.1);
}

.footer-top {
  padding: 3rem 0;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-col {
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #800020; /* Burgundy */
  position: relative;
  display: inline-block;
}

.footer-logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #800020; /* Burgundy */
}

.footer-about {
  margin-bottom: 1.5rem;
  color: #5D6B7A; /* Medium charcoal */
  font-size: 0.95rem;
}

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

.social-link {
  width: 36px;
  height: 36px;
  background-color: rgba(128, 0, 32, 0.1); /* Burgundy tint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #800020; /* Burgundy */
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #800020; /* Burgundy */
  color: white;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #800020; /* Burgundy */
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #800020; /* Burgundy */
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #5D6B7A; /* Medium charcoal */
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #800020; /* Burgundy */
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #800020; /* Burgundy */
  padding-left: 5px;
}

.footer-links a:hover::after {
  width: 20px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: #5D6B7A; /* Medium charcoal */
}

.footer-contact i {
  margin-top: 3px;
  color: #800020; /* Burgundy */
  min-width: 18px;
}

.footer-bottom {
  background-color: #f8f8f8; /* Light gray */
  padding: 1.5rem 0;
  border-top: 1px solid rgba(54, 69, 79, 0.1);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
}

.copyright {
  font-size: 0.85rem;
  color: #5D6B7A; /* Medium charcoal */
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #5D6B7A; /* Medium charcoal */
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #800020; /* Burgundy */
}

/* Responsive Design */
@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    text-align: left;
  }
  
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 480px) {
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .footer-top {
    padding: 2rem 0;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-contact li {
    justify-content: center;
  }
}