/* ---------- Modal Layout ---------- */
.modal-dialog {
  max-width: 600px; /* smaller and compact */
}

.modal-content {
  display: flex;
  flex-direction: row;
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

/* ---------- Left Section ---------- */
.contact-left {
  background-color: #001C31;
  color: #fff;
  padding: 25px 20px;
  width: 40%; /* compact width */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-left img {
  max-width: 90px;
  margin-bottom: 15px;
}

.contact-left h2 {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.contact-left em {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.2;
}

/* ---------- Right Form Section ---------- */
.contact-right {
  background-color: #fff;
  padding: 25px;
  width: 60%;
}

.contact-right h5 {
  text-align: center;
  font-weight: 700;
  color: #001C31;
  font-size: 18px;
  margin-bottom: 15px;
}

/* ---------- Form Elements ---------- */
#contactForm .form-label {
  font-weight: 600;
  font-size: 13px;
  color: #001C31;
}

#contactForm .form-control {
  border-radius: 6px;
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid #d0d0d0;
  transition: all 0.3s ease;
}

#contactForm .form-control:focus {
  border-color: #001C31;
  box-shadow: 0 0 0 0.15rem rgba(0, 28, 49, 0.25);
}

#contactForm textarea.form-control
