/* Popup Backdrop */
.brochure-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 25, 53, 0.65);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-sizing: border-box;
}

/* Modal Box */
.brochure-modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  /* border-radius: 12px; */
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Close Button */
.brochure-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #6b7a8a;
  cursor: pointer;
  line-height: 1;
}

.brochure-modal-close:hover { color: #001935; }

/* Header */
.brochure-modal-header h3 {
  margin: 0 0 8px 0;
  color: #001935;
  font-size: 20px;
  font-weight: 700;
}
.brochure-modal-header p {
  margin: 0 0 20px 0;
  color: #55647a;
  font-size: 13px;
  line-height: 1.4;
}

/* Form Styles */
.brochure-form .form-group {
  margin-bottom: 14px;
}
.brochure-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #001935;
  margin-bottom: 5px;
}
.brochure-form label .required { color: #e58b00; }

.brochure-form input[type="text"],
.brochure-form input[type="email"],
.brochure-form input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}

.brochure-form input:focus {
  border-color: #e58b00;
}

/* Checkbox group */
.brochure-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #f8fafc;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #edf2f7;
}
.brochure-checkbox-group .checkbox-item {
  font-weight: normal;
  font-size: 13px;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Submit Button */
.brochure-btn-submit {
  width: 100%;
  padding: 12px;
  background: #e58b00;
  color: #ffffff;
  border: none;
  /* border-radius: 6px; */
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
}
.brochure-btn-submit:hover { background: #c77800; }
.brochure-btn-submit:disabled { background: #ccc; cursor: not-allowed; }

/* Alert Messages */
.form-message {
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 12px;
}
.form-message.success { background: #e6fffa; color: #234e52; border: 1px solid #b2f5ea; }
.form-message.error { background: #fff5f5; color: #9b2c2c; border: 1px solid #feb2b2; }