
.contact-us-form {
  width: 100%;
  max-width: var(--site-max-width);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}

.contact-us-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-us-form label {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
}

.contact-us-form input,
.contact-us-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.send-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  width: 150px;
  align-self: flex-start;
  transition: background-color 0.3s;
}

.send-btn:hover {
  background-color: #555;
}



/* Modal Styles */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-content {
  background: #fff;
  padding: 32px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  width: 90vw;
  max-width: 380px;
  text-align: center;
}
.modal-close-btn {
  margin-top: 18px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 28px;
  cursor: pointer;
  font-size: 16px;
}
.modal-close-btn:hover {
  background: #555;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .contact-us-form-wrapper {
    padding: 0 0; /* Remove double padding */
  }
  .contact-us-form {
    padding: 18px 8px;
    border-radius: 12px;
    max-width: 100%;
    font-size: 15px;
    gap: 14px;
  }
  .send-btn {
    width: 100%;
    align-self: stretch;
    font-size: 17px;
    padding: 14px 0;
    border-radius: 24px;
  }
  .modal-content {
    padding: 20px 5vw;
    border-radius: 12px;
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .modal-content {
    padding: 16px 2vw;
    font-size: 14px;
    max-width: 97vw;
  }
}
