/* Consolidated Footer Styles */
.footer-wrapper {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 3rem 0 0;
  position: relative;
  z-index: 1;
}

.footer-line {
  border-color: rgba(255,255,255,0.1);
  margin: 1.5rem 0;
  opacity: 0.5;
}

.footer-menu {
  padding-bottom: 1.5rem;
}

.footer-link .title {
  color: var(--light-text);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-link .imp-link {
  margin-bottom: 1.5rem;
}

.footer-link .imp-link .single-list {
  margin-bottom: 0.75rem;
}

.footer-link .imp-link .single {
  color: rgba(255,255,255,0.8);
  transition: opacity 0.3s ease;
  display: inline-block;
}

.footer-link .imp-link .single:hover {
  opacity: 0.8;
  color: var(--light-text);
}

.footer-link .imp-icon {
  margin-right: 0.5rem;
  color: var(--light-text);
}

.footer-bottom-area {
  padding: 1.5rem 0;
  background-color: rgba(0,0,0,0.1);
}

.footer-copy-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.footer-social-link .listing {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.footer-social-link .single {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  color: var(--light-text);
}

.footer-social-link .single:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Footer Navigation */
#footer-navigation {
  display: flex;
  gap: 1rem;
}

#footer-navigation .single-list {
  position: relative;
}

#footer-navigation .single-list:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--light-text);
  transition: width 0.3s ease;
}

#footer-navigation .single-list:hover:after {
  width: 100%;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-imp-link {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-link {
    margin-bottom: 1.5rem;
  }

  #footer-navigation {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Fixed Height for Consistent Layout */
.footer-wrapper > .container {
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.footer-bottom-area {
  margin-top: auto;
}
