/* ============================
   ✅ Footer Contact Form
   ============================ */

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact .contact-btn {
  background: #0a58ca;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
}

.footer-contact .contact-btn:hover {
  background: #084298;
}

.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  width: 240px; /* Small width to fit footer */
}

.footer-contact-form input,
.footer-contact-form textarea {
  width: 100%;
  padding: 6px 8px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  resize: none;
}

.footer-contact-form button {
  background: #0a58ca;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.footer-contact-form button:hover {
  background: #084298;
}











