/* Modern Footer Styles */
.modern-footer {
  position: relative;
  /* background: linear-gradient(to right, #1a1a2e, #16213e); */
  background: #000;
  color: #ffffff;
  overflow: hidden;
}

/* Decorative elements */
.modern-footer:before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0) 70%);
  z-index: 1;
}

.modern-footer:after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0) 70%);
  z-index: 1;
}

/* Footer Top Section */
.footer-top {
  position: relative;
  padding: 4rem 0 3rem;
  z-index: 5;
}

/* Brand section */
.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  max-width: 180px;
}

.footer-logo img {
  width: 90%;
  height: auto;
  /* background: #fff;
  border-radius: 30px;
  padding: 8px; */
}

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  max-width: 280px;
  font-weight: 300;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: #00bd83;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.social-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Navigation section */
.footer-nav {
  padding: 0 0.5rem;
}

.footer-heading {
  position: relative;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
}

.footer-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #00bd83, rgba(255, 255, 255, 0.1));
}

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

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

.footer-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-links a:before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #00bd83, transparent);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-links a:hover:before {
  width: 100%;
}

/* Contact section */
.footer-contact {
  padding: 0 0.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  margin-top: 3px;
  color: #00bd83;
  font-size: 1.1rem;
}

.contact-item p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.8;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #00bd83;
}

/* Footer bottom section */
.footer-bottom {
  position: relative;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
}

.privacy-link,
.terms-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.privacy-link:hover,
.terms-link:hover {
  color: #00bd83;
}

/* Responsive adjustments */
@media (max-width: 991px) {

  .footer-brand,
  .footer-nav,
  .footer-contact {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .footer-top {
    padding: 3rem 0 2rem;
  }

  .footer-bottom {
    text-align: center;
  }

  .copyright {
    margin-bottom: 1rem;
  }

  .col-md-6.text-md-end {
    text-align: center !important;
  }

  .privacy-link,
  .terms-link {
    margin: 0 0.75rem;
  }
}