.main-footer {
  background: url('../assets/FooterBg.webp') no-repeat center center;
  background-size: cover;
  color: #fff;
  font-family: 'Courier Prime', monospace;
  padding: 80px 0 0 0;
}

.newsletter-title {
  letter-spacing: 4px;
  font-size: 35px;
  margin-bottom: 20px;
}

/* Newsletter Styles */

.newsletter-form .form-control {
  background: #fff;
  border: none;
  border-radius: 0;
  font-family: 'Courier Prime', monospace;
  font-size: 0.8rem;
  height: 44px;
  padding: 0 12px;
}

.btn-red {
  background-color: #EE2E3C;
  color: #fff;
  border-radius: 0;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 9px 5px;
  text-shadow: 0 0 10px #fff, 0 0 30px #fff;
  transition: 0.3s ease-in-out;
}

.btn-red:hover {
  background-color: #ff3b4a;
  color: #fff;
}

/* Detail Styles */
.footer-label {
  color: #888;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #EE2E3C;
}

.social-icons a {
  color: #fff;
  font-size: 34px;
  margin-left: 5px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #EE2E3C;
}

.social-icons a img {
  width: 24px;
  height: 24px;
}

.address-info {
  width: max-content;
}

.address-info a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-details {
  display: flex;
  justify-content: space-between;
}

.footer-quick-links {
  width: max-content;
  text-align: left !important;
}

.footer-social {
  width: max-content;
  text-align: left !important;
}

/* Bottom Bar */
.footer-bottom {
  background: #000;
  padding: 20px 0;
  font-size: 0.75rem;
  letter-spacing: 2px;
  border-top: 1px solid #222;
}



.whatapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  border-radius: 100%;
  box-shadow: 0 0 50px rgba(70, 180, 27, 0.738);
}

.floatingsocialmedia {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  background: #000000a5;
  padding: 15px;
  border: #EE2E3C solid 2px;
  border-radius: 10px;
}

.floatingsocialmedia a img {
  display: block;
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 576px) {
  .footer-bottom .container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-details {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .newsletter-title {
    font-size: 30px !important;
    line-height: 1.2;
    letter-spacing: 0 !important;
  }

  .floatingsocialmedia {
   
    right: 0px;
   
    padding: 10px;
  }
}