/* Footer Styles for Instant Pharmacy */

.footer-dark {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #4bc7c9;
}

.footer-text {
  color: #bdc3c7;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact p {
  color: #bdc3c7;
  font-size: 0.9rem;
}

.footer-contact i {
  color: #4bc7c9;
}

/* Footer Links */
.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #4bc7c9;
  padding-left: 5px;
}

/* Newsletter Form */
.newsletter-form .input-group {
  border-radius: 25px;
  overflow: hidden;
}

.newsletter-form .form-control {
  border: none;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 25px 0 0 25px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  box-shadow: none;
  outline: none;
}

.newsletter-form .btn-primary {
  border-radius: 0 25px 25px 0;
  padding: 0.6rem 1.2rem;
  border: none;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-icon:hover {
  background: #4bc7c9;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Payment Icons */
.payment-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.payment-icons i {
  font-size: 2rem;
  color: #bdc3c7;
  transition: color 0.3s ease;
}

.payment-icons i:hover {
  color: #4bc7c9;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-dark {
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .payment-icons {
    justify-content: center;
  }
  
  .footer-links a:hover {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .footer-dark .col-lg-3,
  .footer-dark .col-lg-2 {
    margin-bottom: 2rem;
  }
}
