/* Footer Styles */
.footer-section {
  background: #1a1a2e !important;
  color: #fff;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-logo img {
  max-height: 60px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-logo p {
  color: #a0a0a0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-links {
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  color: #fff;
  text-decoration: none;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

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

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

.footer-link {
  color: #a0a0a0;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-link:before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  padding-left: 20px;
  text-decoration: none;
}

.footer-link:hover:before {
  opacity: 1;
  left: 5px;
}

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

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #a0a0a0;
}

.contact-info i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
  font-size: 16px;
  min-width: 20px;
  text-align: center;
}

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

.contact-info a:hover {
  color: #fff;
  text-decoration: none;
}

.newsletter-form .form-control {
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 4px 0 0 4px;
  box-shadow: none;
}

.newsletter-form .form-control:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.newsletter-form .btn-primary {
  height: 48px;
  border-radius: 0 4px 4px 0;
  padding: 0 20px;
  background: var(--primary-color);
  border: none;
  transition: all 0.3s ease;
}

.newsletter-form .btn-primary:hover {
  background: var(--primary-hover);
  transform: none;
}

.payment-methods h6 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.payment-methods img {
  height: 24px;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
}

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

.footer-bottom p {
  margin: 0;
  color: #a0a0a0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.footer-bottom-links a {
  color: #a0a0a0;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .footer-section {
    text-align: center;
  }
  
  .footer-heading:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-logo {
    margin-bottom: 30px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
  
  .footer-bottom-links li {
    margin: 0 10px;
  }
}

@media (max-width: 767.98px) {
  .footer-section {
    padding: 60px 0 20px;
  }
  
  .footer-logo img {
    max-height: 50px;
  }
  
  .footer-heading {
    margin-top: 30px;
  }
  
  .footer-bottom {
    margin-top: 30px;
  }
}
