
/* ===== FOOTER SECTION WITH LOGO (ID-BASED) ===== */
#footer {
  background-color: #3e2723;
  color: #fff;
  padding: 60px 5% 30px;
  font-family: 'Poppins', sans-serif;
}

#footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

#footer .footer-col {
  flex: 1 1 220px;
}

#footer #footer-logo {
  width: 120px;
  border-radius: 5%;
  margin-bottom: 10px;
  display: block;
}

#footer .footer-col h3 {
  color: #fbc02d;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

#footer .footer-col h4 {
  color: #fbc02d;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

#footer .footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

#footer .footer-col ul {
  list-style: none;
  padding: 0;
}

#footer .footer-col ul li {
  margin-bottom: 8px;
}

#footer .footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer .footer-col ul li a:hover {
  color: #fbc02d;
}

#footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

#footer .social-links img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  transition: transform 0.3s ease;
}

#footer .social-links img:hover {
  transform: scale(1.2);
}

#footer .payment-info {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #fbc02d;
}

#footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  #footer-container {
    flex-direction: column;
    text-align: center;
  }

  #footer #footer-logo {
    margin: 0 auto 10px;
  }

  #footer .social-links {
    justify-content: center;
  }
}




#encrypted{
  color: rgba(245, 222, 179, 0);
}
#encrypted:hover{
  color: rgba(245, 222, 179, 0.688);
}