/* Enhanced Footer Styles */
.enhanced-footer {
  background: #000;
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-top: 0;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  display: inline-block;
  transition: transform 0.3s ease;
}

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

.footer-contact {
  margin-bottom: 30px;
}

.footer-contact a {
  color: white;
  font-size: 1.4em;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 1px;
}

.footer-contact a:hover {
  color: #6da999;
}

.footer-social {
  margin-bottom: 30px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid white;
  border-radius: 50%;
  margin: 0 12px;
  font-size: 1.2em;
  color: white;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: white;
  color: black;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9em;
  color: #999;
} 