/* ============================================
   MODERN FOOTER DESIGN
   ============================================ */

.modern-footer {
  background: linear-gradient(180deg, rgba(35, 10, 145, 0.56) 0%, rgba(10, 3, 43, 0.56) 100%);
  color: #ffffff;
  padding: 0;
  margin-top: 60px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */

.newsletter-section {
  padding: 60px 0 40px;
  text-align: center;
}

.newsletter-title {
  font-size: 32px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  background: #ffffff;
  color: #666;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-input:focus {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-btn {
  padding: 16px 40px;
  background: #d8a88a;
  color: #2c2c2c;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #c49372;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER CONTENT
   ============================================ */

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

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Contact Section */
.footer-contact {
  color: #ffffff;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 24px;
  color: #ffffff;
  margin-top: 5px;
  width: 30px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 13px;
  color: #e8e8e8;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #e8e8e8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icon:hover {
  background: #ffffff;
  color: #9b8fb9;
  transform: translateY(-3px);
}

/* App Links */
.app-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #e8e8e8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.app-link i {
  font-size: 20px;
  color: #ffffff;
}

.app-link:hover {
  color: #ffffff;
  transform: translateX(5px);
}

/* Payment Methods */
.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-methods img {
  height: 32px;
  width: auto;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  object-fit: contain;
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.1);
}

.copyright {
  font-size: 13px;
  color: #e8e8e8;
  margin: 0;
}

.copyright a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #ffffff;
}

.footer-selectors {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.footer-select {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.footer-select:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footer-select option {
  background: #9b8fb9;
  color: #ffffff;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
  .newsletter-title {
    font-size: 26px;
  }

  .newsletter-form {
    flex-direction: column;
    padding: 0 20px;
  }

  .newsletter-btn {
    width: 100%;
  }

  .footer-content {
    padding: 40px 0;
  }

  .footer-heading {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .modern-footer {
    margin-top: 40px;
  }

  .newsletter-section {
    padding: 40px 0 30px;
  }

  .newsletter-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .newsletter-input {
    padding: 14px 20px;
    font-size: 14px;
  }

  .newsletter-btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .footer-content {
    padding: 30px 0;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .footer-selectors {
    justify-content: center;
    margin-top: 15px;
  }

  .copyright {
    text-align: center;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .newsletter-title {
    font-size: 20px;
  }

  .footer-heading {
    font-size: 15px;
  }

  .contact-item i {
    font-size: 20px;
  }

  .contact-label {
    font-size: 12px;
  }

  .contact-value {
    font-size: 14px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .payment-methods img {
    height: 28px;
  }

  .footer-select {
    font-size: 12px;
    padding: 6px 12px;
  }
}
