/* Footer */
    footer{background:linear-gradient(90deg,#000,#1d2d22);color:#fff;padding:40px 20px;text-align:center}
    .footer-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:30px;max-width:1200px;margin:auto;margin-bottom:20px}
    .footer-col h3,.footer-col h4{color:#c9a22d;margin-bottom:10px}
    .footer-col ul{list-style:none;padding:0}
    .footer-col ul li{margin-bottom:6px}
    .footer-col ul li a{color:#aaa;text-decoration:none;font-size:14px}
    .footer-col ul li a:hover{color:#fff}
    .footer-col form{display:flex;gap:6px}
    .footer-col input{padding:8px;flex:1;border:none;border-radius:4px}
    .footer-col button{padding:8px 12px;background:#c9a22d;border:none;color:#000;border-radius:4px;font-weight:600}
    .social-icons a{margin-right:10px;font-size:16px;color:#c9a22d;text-decoration:none}
    .last-update{font-size:12px;color:#bbb;margin-bottom:5px}
.social-icons {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  gap: 10px; /* Space between icons */
  margin-top: 10px;
}

.social-icons a {
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #f4c10f;
  transform: scale(1.2);
}



/* Floating Button Styles */
.floating {
  position: fixed;
  z-index: 1000;
  display: flex;
}

.floating a,
.floating button {
  width: 50px;
  height: 50px;
  font-size: 22px;
  color: #fff;
  background: #000;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-weight: bold;
}

.floating a.whatsapp {
  background-color: #25D366;
}

.floating a:hover,
.floating button:hover {
  background-color: #c9a22d;
  color: #000;
}

/* Desktop: Left Vertical Stack */
@media (min-width: 576px) {
  .floating {
    flex-direction: column;
    bottom: 20px;
    left: 20px;
    gap: 15px;
    background: transparent;
  }
}

/* Mobile: Bottom Horizontal Bar */
@media (max-width: 575px) {
  .floating {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #000;
    border-top: 3px solid #c9a22d;
  }

  .floating a,
  .floating button {
    flex: 1;
    border-right: 1px solid #333;
    width: 60px;
    height: 50px;
    font-size: 26px;
  }

  .floating a:last-child {
    border-right: none;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 6px;
  position: relative;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  border-radius: 4px;
}

.modal-content button[type="submit"] {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

.modal-content button[type="submit"]:hover {
  background-color: #c9a22d;
  color: #000;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}


/* Modal Form  */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: fadeIn 0.5s ease-in-out;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  border-radius: 4px;
}

.modal-content button {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.modal-content button:hover {
  background-color: #c9a22d;
  color: #000;
}

.modal .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}