/* Enhanced Footer Styles */

.enhanced-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 0;
  position: relative;
}

.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid #333;
}

.footer-about h3,
.footer-contact h3,
.footer-services h3 {
  font-size: 24px;
  font-weight: 600;
  color: #f4d03f;
  margin-bottom: 25px;
  position: relative;
  text-shadow: none;
  background: none;
  border: none;
  box-shadow: none;
  filter: none;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(244, 208, 63, 0.1);
  color: #f4d03f;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #f4d03f;
  color: #1a1a1a;
  transform: translateY(-3px);
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 15px;
  color: #ccc;
}

.contact-info li i {
  color: #f4d03f;
  margin-right: 15px;
  font-size: 16px;
  width: 20px;
}

.contact-info li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info li a:hover {
  color: #f4d03f;
}

.btn-contact-us {
  display: inline-block;
  padding: 12px 25px;
  background: #f4d03f;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-contact-us:hover {
  background: #f39c12;
  color: #1a1a1a;
  text-decoration: none;
  transform: translateY(-2px);
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  margin-bottom: 12px;
}

.services-list li a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.services-list li a:hover {
  color: #f4d03f;
  transform: translateX(5px);
}

.footer-bottom {
  padding: 25px 0;
  background: #0d0d0d;
}

.footer-copyright p {
  margin: 0;
  font-size: 14px;
  color: #999;
}

.quick-links {
  font-size: 14px;
}

.quick-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links a:hover {
  color: #f4d03f;
}

@media (max-width: 992px) {
  .footer-about,
  .footer-contact,
  .footer-services {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    padding: 40px 0 30px;
  }
  
  .footer-about h3,
  .footer-contact h3,
  .footer-services h3 {
    font-size: 20px;
  }
  
  .footer-copyright p,
  .quick-links {
    text-align: center !important;
  }
  
  .quick-links {
    margin-top: 15px;
  }
}
