/* Modern Footer Styles */
.modern-footer {
  background: #000000;
  color: #ecf0f1;
  padding: 60px 0 20px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #000000;
}

/* Footer Titles */
.footer-title {
  color: #ecf0f1;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-title i {
  color: #ffffff;
  font-size: 1.1rem;
}

/* Footer Menu Links */
.modern-footer .menu,
.modern-footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modern-footer .menu li,
.modern-footer .footer-menu li {
  margin-bottom: 8px;
}

.modern-footer .menu li a,
.modern-footer .footer-menu li a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
}

.modern-footer .menu li a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.modern-footer .menu li a i {
  font-size: 0.8rem;
  width: 12px;
}

/* Contact Information */
.footer-contact {
  margin-bottom: 25px;
}

.contact-text {
  color: #bdc3c7;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-text i {
  color: #ffffff;
  width: 16px;
  text-align: center;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

.social-link i {
  font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter-section {
  margin-top: 20px;
}

.newsletter-title {
  color: #ecf0f1;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.newsletter-form {
  margin-bottom: 0;
}

.newsletter-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 15px;
  color: #ecf0f1;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: #bdc3c7;
}

.newsletter-btn {
  background: #ffffff;
  border: none;
  color: #000000;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background: #f5f5f5;
  transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
}

.payment-methods {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 15px !important;
  text-align: center;
  margin-bottom: 30px;
  width: 100% !important;
}

.security-badges {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 15px !important;
  text-align: center !important;
  margin-bottom: 30px;
  width: 100% !important;
}

.payment-title {
  width: 100% !important;
  margin-bottom: 20px !important;
}

.security-title {
  width: 100% !important;
  margin-bottom: 20px !important;
  text-align: center !important;
}

.payment-icons,
.security-icons {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
  width: auto !important;
}

.payment-method-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 20px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 25px !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  width: auto !important;
  min-width: 130px !important;
}

.payment-method-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ecf0f1;
  font-weight: 500;
  font-size: 0.9rem;
}

.payment-method-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.payment-method-item {
  min-width: 160px;
  display: flex !important;
  justify-content: center !important;
}

.payment-method-item i {
  font-size: 1.1rem;
  color: #ffffff;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.security-badge i {
  font-size: 0.9rem;
}

/* Copyright Section */
.copyright-section {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
  color: #bdc3c7;
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.copyright-text a {
  color: #ffffff !important;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.copyright-text a:hover {
  opacity: 0.8;
}

.legal-notice {
  color: #95a5a6;
  font-size: 0.8rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-footer {
    padding: 40px 0 20px;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
    gap: 12px;
  }

  .social-link {
    width: 35px;
    height: 35px;
  }

  .newsletter-input-group {
    flex-direction: column;
    border-radius: 15px;
  }

  .newsletter-input {
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .newsletter-btn {
    border-radius: 0 0 15px 15px;
  }

  .payment-icons,
  .security-icons {
    gap: 15px;
  }

  .payment-method-item {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .security-badge {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}

@media (max-width: 576px) {
  .modern-footer {
    padding: 30px 0 15px;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .contact-text {
    font-size: 0.85rem;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link i {
    font-size: 1rem;
  }

  .newsletter-title {
    font-size: 0.9rem;
  }

  .copyright-text {
    font-size: 0.8rem;
  }

  .legal-notice {
    font-size: 0.75rem;
  }
}

/* Animation Effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modern-footer .col-sm-6 {
  animation: fadeInUp 0.6s ease-out;
}

.modern-footer .col-sm-6:nth-child(1) {
  animation-delay: 0.1s;
}
.modern-footer .col-sm-6:nth-child(2) {
  animation-delay: 0.2s;
}
.modern-footer .col-sm-6:nth-child(3) {
  animation-delay: 0.3s;
}
.modern-footer .col-sm-6:nth-child(4) {
  animation-delay: 0.4s;
}

/* Hover Effects */
.modern-footer .menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: #3498db;
  transition: width 0.3s ease;
}

.modern-footer .menu li a:hover::before {
  width: 20px;
}

/* Accessibility */
.modern-footer a:focus {
  outline: 2px solid #3498db;
  outline-offset: 2px;
}

.modern-footer button:focus {
  outline: 2px solid #3498db;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .modern-footer {
    background: white !important;
    color: black !important;
  }

  .social-links,
  .newsletter-section {
    display: none;
  }
}
