/* URBANIO THEME-ALIGNED ENQUIRY MODAL */

.dp-enquiry-modal {
  max-width: 650px;
  width: 94%;
  margin: 2rem auto;
  font-family: var(--default-font);
}

.dp-modal-content {
  background: var(--primary-color); /* Deep Navy Background */
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gold-color);
  box-shadow: 0 25px 60px rgba(0, 66, 90, 0.3);
}

.dp-modal-body {
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Close Button */
.dp-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  color: var(--gold-color);
  background: none;
  border: none;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s;
}

.dp-close-btn:hover {
  opacity: 0.7;
  color: var(--white-color);
}

/* Header Section */
.dp-promise-sidebar {
  background: rgba(255, 255, 255, 0.03); /* Subtle contrast against navy */
  padding: 30px 28px;
  text-align: center;
  border-bottom: 1px solid var(--dark-divider-color);
}

.dp-promise-title {
  font-family: var(--accent-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.dp-promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.dp-promise-list li {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--white-color);
}

/* Gold Diamond Marker */
.dp-checkbox {
  width: 8px;
  height: 8px;
  background: var(--gold-color);
  margin-right: 10px;
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* Form Area */
.dp-form-area {
  padding: 40px 50px;
  text-align: center;
}

.dp-form-title {
  font-family: var(--accent-font);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white-color);
  line-height: 1.4;
}

.dp-form-title span {
  display: block;
  font-size: 14px;
  color: var(--secondary-color); /* Teal for subtitle contrast */
  font-weight: 500;
  margin-top: 5px;
}

.dp-enquiry-form {
  max-width: 350px;
  margin: 0 auto;
}

/* Inputs - Styled for Navy Background */
.dp-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--dark-divider-color);
  border-radius: 0;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white-color);
  transition: all 0.3s ease;
}

.dp-input:focus {
  outline: none;
  border-color: var(--secondary-color); /* Focus goes Teal */
  background: rgba(255, 255, 255, 0.1);
}

.dp-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Submit Button - Using your Gold Gradient */
.dp-submit-btn {
  background: var(--gold-gradient);
  color: var(--primary-color); /* Navy text on gold button */
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 30px;
  border: none;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.dp-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Call Number Section */
.dp-call-number {
  margin-top: 30px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dp-call-number strong {
    color: var(--gold-color);
}

@media (max-width: 576px) {
  .dp-form-area { padding: 35px 20px; }
  .dp-promise-list { gap: 15px; }
}