/* Footer Styles */
.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 60px 0 20px;
  margin-top: auto;
}

.footer-content {
  margin-bottom: 40px;
}

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

.footer-section h5 {
  color: #e1ad01;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #d96f2a;
}

.footer-section p {
  color: #ecf0f1;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links li a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #e1ad01;
}

.footer-links li a:hover {
  color: #e1ad01;
  padding-left: 20px;
}

.footer-links li a:hover::before {
  opacity: 1;
  left: 0;
}

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

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #ecf0f1;
  font-size: 14px;
  line-height: 1.6;
}

.contact-info li i,
.contact-info li img {
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  filter: grayscale(0%) invert(1);
}

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

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

.social-media {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-media a:hover {
  background-color: #e1ad01;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
}

.copyright {
  color: #bdc3c7;
  font-size: 14px;
  margin: 0;
}

.copyright a {
  color: #e1ad01;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #d96f2a;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .footer {
    padding: 50px 0 20px;
  }
  
  .footer-section {
    margin-bottom: 40px;
  }
  
  .footer-section h5 {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 40px 0 15px;
  }
  
  .footer-content {
    margin-bottom: 30px;
  }
  
  .footer-section {
    margin-bottom: 35px;
  }
  
  .footer-section h5 {
    font-size: 15px;
  }
  
  .footer-section p,
  .footer-links li a,
  .contact-info li {
    font-size: 13px;
  }
  
  .social-media {
    gap: 12px;
  }
  
  .social-media a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  
  .copyright {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer-section {
    margin-bottom: 30px;
  }
  
  .footer-section h5 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .social-media {
    justify-content: center;
  }
}

