/* Modern Enhanced Footer Styles */
.footer-gradient-bg {
  background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer-gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Footer Brand Section */
.footer-brand {
  padding-right: 2rem;
}

.footer-brand-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-brand-title i {
  color: #52b788;
  animation: leafSway 3s ease-in-out infinite;
}

@keyframes leafSway {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

.footer-description {
  color: #b2bec3;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Footer Contact Info */
.footer-contact-info {
  margin-bottom: 1.5rem;
}

.contact-item {
  color: #dfe6e9;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.contact-item i {
  color: #667eea;
  min-width: 24px;
}

.contact-item a {
  color: #dfe6e9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item:hover,
.contact-item a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.social-icon i {
  position: relative;
  z-index: 1;
}

.social-icon.facebook {
  color: #1877f2;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.social-icon.twitter {
  color: #1da1f2;
}

.social-icon.linkedin {
  color: #0077b5;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.social-icon.facebook:hover {
  background: #1877f2;
  color: #fff;
}

.social-icon.twitter:hover {
  background: #1da1f2;
  color: #fff;
}

.social-icon.linkedin:hover {
  background: #0077b5;
  color: #fff;
}

/* Footer Titles */
.footer-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-title i {
  color: #667eea;
}

/* Footer Links */
.footer-links ul.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: #b2bec3;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-menu a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #667eea;
}

.footer-menu a:hover {
  color: #fff;
  padding-left: 20px;
}

.footer-menu a:hover::before {
  left: 0;
  opacity: 1;
}

/* Newsletter Section */
.footer-newsletter {
  max-width: 100%;
}

.newsletter-text {
  color: #b2bec3;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.newsletter-form .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
  border: none;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border-right: none;
}

.newsletter-form .form-control::placeholder {
  color: #b2bec3;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  color: #fff;
}

.btn-newsletter {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  padding: 0.875rem 1.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-newsletter:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: scale(1.05);
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright,
.made-with {
  color: #b2bec3;
  font-size: 0.9rem;
  margin: 0;
}

.copyright strong {
  color: #fff;
  font-weight: 600;
}

.made-with {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pulse-heart {
  animation: heartbeat 1.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  10%,
  30% {
    transform: scale(1.1);
  }

  20%,
  40% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-brand {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .footer-links,
  .footer-newsletter {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-gradient-bg {
    padding: 3rem 0 0;
  }

  .footer-brand-title {
    font-size: 1.5rem;
  }

  .footer-bottom .row {
    text-align: center !important;
  }

  .footer-bottom .col-md-6 {
    margin-bottom: 1rem;
  }

  .made-with {
    justify-content: center !important;
  }
}