/* Property Submission Form */

.propertyform {
  width: 100%;
  padding: 0;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.propertyform.loading {
  text-align: center;
  padding: 60px 20px;
  color: #6C757D;
  font-size: 16px;
}

/* Progress Bar */
.propertyform__progress {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 40px;
  background-color: #2C5049;
  margin: 0;
  gap: 30px;
}

.propertyform__progress--bar {
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  margin: 0 0 40px 0;
}

.propertyform__progress--fill {
  height: 100%;
  background-color: #7DD3C0;
  transition: width 0.3s ease;
}

.propertyform__progress--step {
  flex: 0 0 auto;
  text-align: left;
  opacity: 0.5;
  transition: all 0.3s;
}

.propertyform__progress--step.active {
  opacity: 1 !important;
}

.propertyform__progress--step .step-number {
  display: inline;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-right: 8px;
}

.propertyform__progress--step .step-label {
  display: inline;
  color: #fff;
  font-size: 12px;
}

/* Form Container */
.propertyform__step {
  background: #fff;
  padding: 60px 80px;
  width: 100%;
  text-align: left;
}

.propertyform__step form {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}

.propertyform__step h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 10px 0;
  text-align: left;
}

.propertyform__step > p {
  color: #6C757D;
  font-size: 16px;
  margin: 0 0 40px 0;
  text-align: left;
}

/* Links */
.propertyform a {
  color: #7DD3C0;
  text-decoration: none;
}

.propertyform a:hover {
  text-decoration: underline;
}

/* Form Groups */
.propertyform__group {
  margin-bottom: 24px;
}

.propertyform__group label:not(.propertyform__section-title) {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #2C3E50;
}

/* Section titles - base styling for Elementor controls to override */
.propertyform__section-title {
  display: block;
}

.propertyform__group input,
.propertyform__group select {
  /* Reset everything to same baseline */
  all: unset;

  /* Rebuild with same values */
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  color: #2C3E50;
  background: #fff;
  box-sizing: border-box;
  display: block;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.propertyform__group textarea {
  all: unset;
  width: 100%;
  min-height: 100px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  color: #2C3E50;
  background: #fff;
  box-sizing: border-box;
  display: block;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.propertyform__group select {
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.propertyform__select-wrapper {
  position: relative;
  width: 100%;
}

.propertyform__select-wrapper select {
  width: 100%;
}

.propertyform__select-wrapper::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  width: 8px;
  height: 8px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

/* Custom Select Component */
.customselect {
  position: relative;
  width: 100%;
}

.customselect__trigger {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: #2C3E50;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 50px;
  box-sizing: border-box;
}

.customselect__trigger:focus {
  outline: none;
}

.customselect--open .customselect__trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.customselect__value {
  flex: 1;
  line-height: 1.4;
}

.customselect__arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #7C8683;
  border-bottom: 2px solid #7C8683;
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: -2px;
}

.customselect__native {
  display: none !important;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.customselect--open .customselect__arrow {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.customselect__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 240px;
  overflow-y: scroll;
  overscroll-behavior: contain;
  background: #fff;
  border: 1px solid #7DD3C0;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.customselect__dropdown::-webkit-scrollbar {
  width: 5px;
}
.customselect__dropdown::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.customselect__option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.15s;
  color: #2C3E50;
  font-size: 15px;
}

.customselect__option:hover {
  background: #F0FAF7;
}

.customselect__option--selected {
  background: #E7F6F2;
  font-weight: 500;
}

.customselect--disabled .customselect__trigger {
  background: #F8F9FA;
  cursor: not-allowed;
  opacity: 0.7;
}

.propertyform__helper {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #6C757D;
}

.propertyform__group input:focus,
.propertyform__group select:focus,
.propertyform__group textarea:focus {
  outline: none;
}

/* Select option styling */
.propertyform__group select option:not([value=""]):not(:disabled) {
  background: #fff;
}

.propertyform__group input.error,
.propertyform__group select.error,
.propertyform__group textarea.error {
  border-color: #DC3545;
}

.propertyform__group .error {
  color: #DC3545;
  font-size: 13px;
  margin-top: 6px;
  display: block;
}

.propertyform__group textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

/* Form Rows */
.propertyform__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.propertyform__row--3col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .propertyform__row,
  .propertyform__row--3col {
    grid-template-columns: 1fr;
  }
}

/* Checkboxes */
.propertyform__group--checkbox label {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  cursor: pointer;
}

.propertyform__group--checkbox input[type="checkbox"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  border: 2px solid #E5E5E5 !important;
  border-radius: 50% !important;
  background: #fff !important;
  margin-right: 10px !important;
  margin-top: 2px !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  position: relative !important;
  display: inline-block !important;
  box-sizing: border-box !important;
}

.propertyform__group--checkbox input[type="checkbox"]:checked {
  background: #7DD3C0 !important;
  border-color: #7DD3C0 !important;
}

.propertyform__group--checkbox input[type="checkbox"]:checked::after {
  content: '✓' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: bold !important;
  line-height: 1 !important;
}

.propertyform__group--checkbox a {
  color: #7DD3C0;
  text-decoration: none;
}

.propertyform__group--checkbox a:hover {
  text-decoration: underline;
}

/* Navigation Buttons */
.propertyform__navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 15px;
}

.propertyform__btn {
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 140px;
}

.propertyform__btn--back {
  background-color: #F8F9FA;
  color: #2C3E50;
  border: 1px solid #E5E5E5;
}

.propertyform__btn--back:hover {
  background-color: #E9ECEF;
}

.propertyform__btn--next,
.propertyform__btn--submit {
  display: flex;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #93F0D8;
  color: #243E37;
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: auto;
}

.propertyform__btn--next:hover,
.propertyform__btn--submit:hover {
  background: #7DE8CA;
}

.propertyform__btn--next:disabled,
.propertyform__btn--submit:disabled {
  background: #CED4DA;
  color: #6C757D;
  cursor: not-allowed;
}

/* Feature Tags (Step 3 & 4) */
.propertyform__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .propertyform__features {
    grid-template-columns: 1fr;
  }
}

.propertyform__feature {
  padding: 14px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #2C3E50;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.2s;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.propertyform__feature:hover {
  border-color: #7DD3C0;
  background: #F8FFFE;
}

.propertyform__feature.selected {
  /* Styled via Elementor controls */
}

.propertyform__feature--add {
  width: 100%;
  padding: 14px 16px;
  background: #F8F9FA;
  border: 1px dashed #CED4DA;
  border-radius: 8px;
  color: #6C757D;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.2s;
  margin-top: 10px;
}

.propertyform__feature--add {
  margin-top: 0;
  border-style: solid;
  background: #E7F6F2;
  color: #2C3E50;
  font-weight: 400;
  cursor: pointer;
}

.propertyform__feature--add:hover {
  border-color: #7DD3C0;
  background: #d4f0e8;
}

.propertyform__feature-add-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #7DD3C0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Feature Remove Button */
.propertyform__feature-remove {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #7DD3C0;
  color: #fff;
  border: none;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: background 0.2s;
}

.propertyform__feature-remove:hover {
  background: #DC3545;
}

.propertyform__feature.selected .propertyform__feature-remove {
  background: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.propertyform__feature.selected .propertyform__feature-remove:hover {
  background: #DC3545;
}

/* Feature Modal */
.propertyform__modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.propertyform__modal {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.propertyform__modal h3 {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 20px 0;
  text-align: center;
}

.propertyform__modal label {
  display: block;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 8px;
}

.propertyform__modal input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  color: #2C3E50;
  margin-bottom: 20px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.propertyform__modal input:focus {
  outline: none;
  border-color: #7DD3C0;
  box-shadow: 0 0 0 3px rgba(125, 211, 192, 0.1);
}

.propertyform__modal input::placeholder {
  color: #7C8683;
}

.propertyform__modal .propertyform__btn {
  width: 100%;
}

.propertyform__modal-value {
  padding: 14px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  color: #2C3E50;
  margin-bottom: 20px;
  background: #F8F9FA;
}

.propertyform__btn--remove {
  background: #7DD3C0;
  color: #fff;
  width: 100%;
}

.propertyform__btn--remove:hover {
  background: #6BC4B1;
}

/* Upload Section (Step 5) */
.propertyform__upload {
  margin-bottom: 30px;
  padding: 24px;
  border-radius: 8px;
}

.propertyform__upload h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2C3E50;
  margin: 0 0 15px 0;
}

/* Hidden file input */
.propertyform__upload-input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Custom upload button */
.propertyform__btn--upload {
  display: flex;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  cursor: pointer;
  transition: background 0.2s;
}

.propertyform__btn--upload:disabled {
  cursor: not-allowed;
}

.propertyform__upload .propertyform__upload-hint,
p.propertyform__upload-hint {
  margin: 20px 0 0 0 !important;
  font-size: 13px;
  color: #6C757D;
}

.propertyform__preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .propertyform__preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.propertyform__preview {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #E5E5E5;
}

.propertyform__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.propertyform__preview button {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #DC3545;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.propertyform__preview button:hover {
  background: #DC3545;
  color: #fff;
}

/* Spinner */
@keyframes propertyform-spin {
  to { transform: rotate(360deg); }
}

.propertyform__spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #E5E5E5;
  border-top-color: #7DD3C0;
  border-radius: 50%;
  animation: propertyform-spin 0.7s linear infinite;
}

.propertyform__spinner--inline {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

/* Preview overlay */
.propertyform__preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 1;
}

.propertyform__preview-overlay--error {
  background: rgba(220, 53, 69, 0.85);
}

/* Status borders on cards */
.propertyform__preview--uploading {
  border-color: #7DD3C0;
}

.propertyform__preview--error {
  border-color: #DC3545;
}

.propertyform__preview--done {
  border-color: #E5E5E5;
}

/* Error overlay elements */
.propertyform__preview-error-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #DC3545;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.propertyform__preview-retry {
  padding: 4px 12px;
  background: #fff;
  color: #DC3545;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.propertyform__preview-retry:hover {
  background: #F8D7DA;
}

/* Remove button (explicit class, above overlay) */
.propertyform__preview-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  color: #DC3545;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}

.propertyform__preview-remove:hover {
  background: #DC3545;
  color: #fff;
}

/* Single-file status bars (floorplan/EPC) */
.propertyform__upload-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #E5E5E5;
  background: #F8F9FA;
}

.propertyform__upload-status--uploading {
  border-color: #7DD3C0;
  background: #F0FAF7;
  color: #2C5049;
}

.propertyform__upload-status--done {
  border-color: #28A745;
  background: #F0FFF4;
  color: #155724;
}

.propertyform__upload-status--error {
  border-color: #DC3545;
  background: #FFF5F5;
  color: #721C24;
}

.propertyform__upload-status .propertyform__preview-retry {
  margin-left: auto;
}

.propertyform__upload-status-remove {
  margin-left: auto;
  background: none;
  border: none;
  color: #DC3545;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
  transition: opacity 0.2s;
}

.propertyform__upload-status-remove:hover {
  opacity: 0.7;
}

.propertyform__terms {
  margin-top: 30px;
}

.propertyform__terms label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.propertyform__terms input[type="checkbox"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  border: 2px solid #E5E5E5 !important;
  border-radius: 50% !important;
  background: #fff !important;
  margin-top: 2px !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  position: relative !important;
  display: inline-block !important;
  box-sizing: border-box !important;
}

.propertyform__terms input[type="checkbox"]:checked {
  background: #7DD3C0 !important;
  border-color: #7DD3C0 !important;
}

.propertyform__terms input[type="checkbox"]:checked::after {
  content: '✓' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: bold !important;
  line-height: 1 !important;
}

.propertyform__terms label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin: 0;
}

/* Removed - using circular checkbox styles above */

.propertyform__terms a {
  color: #7DD3C0;
  text-decoration: none;
  font-weight: 600;
}

.propertyform__terms a:hover {
  text-decoration: underline;
}

/* Review Section (Step 6) */
.propertyform__review {
}

.propertyform__notice {
  background: #E7F6F2;
  padding: 16px 20px;
  border-radius: 8px;
  color: #2C5049;
  font-size: 14px;
  margin-bottom: 30px;
  border-left: 4px solid #7DD3C0;
}

.propertyform__review-section {
  margin-bottom: 20px;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.propertyform__review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E5E5;
}

.propertyform__review-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2C3E50;
}

.propertyform__btn--edit {
  background: transparent;
  border: 1px solid #7DD3C0;
  color: #7DD3C0;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.propertyform__btn--edit:hover {
  background: #7DD3C0;
  color: #fff;
}

/* Edit link button (text style) */
.propertyform__btn--edit-link {
  background: transparent;
  border: none;
  color: #7DD3C0;
  padding: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}

.propertyform__btn--edit-link:hover {
  color: #5BBFA9;
}

.propertyform__review-content {
  color: #495057;
  font-size: 15px;
  line-height: 1.6;
}

.propertyform__review-content p {
  margin: 8px 0;
}

.propertyform__review-content strong {
  color: #2C3E50;
  font-weight: 600;
}

/* Price display */
.propertyform__review-price {
  font-size: 32px;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 8px;
}

/* Address display */
.propertyform__review-address {
  font-size: 16px;
  color: #6C757D;
  margin-bottom: 20px;
}

/* Description display */
.propertyform__review-description {
  font-size: 15px;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E5E5;
}

/* Two-column details table */
.propertyform__review-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
}

@media (max-width: 768px) {
  .propertyform__review-table {
    grid-template-columns: 1fr;
  }
}

.propertyform__review-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #EAEAEA;
}

.propertyform__review-label {
  font-size: 14px;
  color: #6C757D;
  flex-shrink: 0;
}

.propertyform__review-value {
  font-size: 14px;
  font-weight: 500;
  color: #2C3E50;
  text-align: right;
}

/* Features bullet list */
.propertyform__review-features {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  columns: 2;
  column-gap: 40px;
}

.propertyform__review-features li {
  font-size: 14px;
  color: #495057;
  padding: 4px 0;
  break-inside: avoid;
}

@media (max-width: 768px) {
  .propertyform__review-features {
    columns: 1;
  }
}

/* Media section - 3 columns */
.propertyform__review-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .propertyform__review-media {
    grid-template-columns: 1fr;
  }
}

.propertyform__review-media-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  margin: 0 0 12px 0;
}

/* PDF placeholder */
.propertyform__review-file {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #F1F5F9;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
}

.propertyform__review-content.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.propertyform__review-content.feature-list .propertyform__feature {
  padding: 8px 16px;
  font-size: 13px;
  border-width: 1px;
}

.propertyform__review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}

@media (max-width: 768px) {
  .propertyform__review-grid {
    grid-template-columns: 1fr;
  }
}

.propertyform__review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.propertyform__review-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #E7F6F2;
  color: #2C5049;
  border-radius: 6px;
  font-size: 13px;
}

.propertyform__review-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.propertyform__review-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #E5E5E5;
}

.propertyform__review-empty {
  color: #9CA3AF;
  font-style: italic;
  font-size: 14px;
  margin: 0;
}

/* Success Step (Step 7) */
.propertyform__success {
  text-align: center;
  padding: 80px 60px;
  width: 100%;
}

.propertyform__success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #28A745;
  color: #fff;
  font-size: 48px;
  line-height: 80px;
  margin: 0 auto 30px;
}

.propertyform__success h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 20px 0;
}

.propertyform__success-details {
  background: #F8F9FA;
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
  text-align: left;
}

.propertyform__success-details p {
  color: #495057;
  font-size: 15px;
  line-height: 1.7;
  margin: 12px 0;
}

.propertyform__listing-id {
  background: #fff;
  padding: 16px;
  border-radius: 6px;
  border: 2px solid #7DD3C0;
  margin: 20px 0;
  font-size: 16px;
}

.propertyform__actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.propertyform__btn--primary {
  display: inline-block;
  padding: 16px 40px;
  background: #7DD3C0;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.propertyform__btn--primary:hover {
  background: #6BC4B1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(125, 211, 192, 0.3);
}

/* Create Account Step (Step 1) */
.propertyform__step--create-account {
  max-width: 480px;
  margin: 0 auto;
  padding: 60px 40px;
}

.propertyform__step--create-account h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Login Step - match create account styling */
.propertyform__step--login {
  max-width: 480px;
  margin: 0 auto;
  padding: 60px 40px;
}

.propertyform__step--login h2 {
  text-align: center;
  margin-bottom: 40px;
}

.propertyform__step--login .propertyform__description {
  text-align: center;
  margin-bottom: 30px;
}

.propertyform__step--login .propertyform__group {
  margin-bottom: 16px;
}

.propertyform__step--create-account .propertyform__group {
  margin-bottom: 16px;
}

.propertyform__step--create-account .propertyform__group--privacy {
  margin-top: 24px;
  margin-bottom: 24px;
}

.propertyform__btn--create-account {
  width: 100%;
  display: flex;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #93F0D8;
  color: #243E37;
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 24px;
}

.propertyform__btn--create-account:hover {
  background: #7DE8CA;
}

.propertyform__btn--create-account:disabled {
  background: #CED4DA;
  cursor: not-allowed;
}

/* Privacy checkbox in create account */
.propertyform__group.propertyform__group--checkbox.propertyform__group--privacy label {
  font-weight: 400;
  color: #7C8683;
  display: flex;
  align-items: center;
  gap: 10px;
}

.propertyform__group.propertyform__group--checkbox.propertyform__group--privacy label span {
  font-weight: 400;
  color: #7C8683;
}

.propertyform__group--privacy a {
  font-weight: 400;
}

/* Sign In Link */
.propertyform__signin-link {
  padding-bottom: 16px;
}

.propertyform__signin-link a {
  text-decoration: none;
}

.propertyform__signin-link a:hover {
  text-decoration: underline;
}

.propertyform__link-button {
  background: none;
  border: none;
  color: #7DD3C0;
  text-decoration: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
  margin: 0;
}

.propertyform__link-button:hover {
  color: #6BC2AF;
  text-decoration: underline;
}

/* Error Message */
.propertyform__error {
  background: #F8D7DA;
  color: #721C24;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid #F5C6CB;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .propertyform__step {
    padding: 30px 20px;
  }

  .propertyform__step--create-account,
  .propertyform__step--login {
    padding: 40px 20px;
  }

  .propertyform__review {
  }

  .propertyform__success {
    padding: 40px 20px;
  }

  .propertyform__progress {
    padding: 15px 16px;
    gap: 16px;
    overflow-x: auto;
  }

  .propertyform__progress--step .step-label {
    display: none;
  }

  .propertyform__step h2 {
    font-size: 26px;
  }

  .propertyform__review-section {
  }

  .propertyform__upload {
    padding: 16px;
  }

  .propertyform__navigation {
    margin-top: 30px;
  }

  .propertyform__btn {
    padding: 14px 24px;
    min-width: 100px;
  }

  .propertyform__actions {
    flex-direction: column;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .propertyform__step {
    padding: 24px 16px;
  }

  .propertyform__step--create-account,
  .propertyform__step--login {
    padding: 30px 16px;
  }

  .propertyform__review {
  }

  .propertyform__success {
    padding: 30px 16px;
  }

  .propertyform__progress {
    padding: 12px;
    gap: 12px;
  }

  .propertyform__step h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .propertyform__step > p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .propertyform__review-section {
  }

  .propertyform__review-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .propertyform__review-header h3 {
    font-size: 16px;
  }

  .propertyform__review-price {
    font-size: 26px;
  }

  .propertyform__review-table {
    gap: 8px 20px;
  }

  .propertyform__upload {
    padding: 12px;
  }

  .propertyform__upload h3 {
    font-size: 14px;
  }

  .propertyform__btn--upload {
    padding: 12px 24px;
    font-size: 15px;
  }

  .propertyform__preview-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .propertyform__group label:not(.propertyform__section-title) {
    font-size: 13px;
  }

  .propertyform__group input,
  .propertyform__group select,
  .propertyform__group textarea {
    padding: 12px 14px;
    font-size: 15px;
  }

  .customselect__trigger {
    padding: 12px 14px;
    font-size: 15px;
    min-height: 46px;
  }

  .propertyform__navigation {
    margin-top: 24px;
    gap: 10px;
  }

  .propertyform__btn {
    padding: 12px 20px;
    font-size: 15px;
    min-width: auto;
    flex: 1;
  }

  .propertyform__btn--create-account {
    padding: 14px 20px;
  }

  .propertyform__notice {
    padding: 12px 14px;
    font-size: 13px;
    margin-bottom: 20px;
  }

  .propertyform__features {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .propertyform__feature {
    padding: 10px 12px;
    font-size: 14px;
  }

  .propertyform__modal {
    max-width: calc(100% - 32px);
    padding: 20px;
  }
}

.propertyform__upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Price Input Group (inline prefix toggle) */
.propertyform__price-input-group {
  display: flex;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.propertyform__price-input-group:focus-within,
.propertyform__price-input-group:hover {
  border-color: #7DD3C0;
}

.propertyform__price-input-group.error {
  border-color: #DC3545;
}

.propertyform__price-prefix {
  all: unset;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  background: #F2FAF8;
  border-right: 1px solid #E5E5E5;
  font-size: 13px;
  color: #2C3E50;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.2s;
}

.propertyform__price-prefix:hover {
  background: #D9F2EC;
}

.propertyform__price-prefix-chevron {
  font-size: 10px;
  color: #7DD3C0;
}

/* Price type modal */
.propertyform__price-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.propertyform__price-modal {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.propertyform__price-modal-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
}

.propertyform__price-modal-option {
  all: unset;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: #2C3E50;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.propertyform__price-modal-option:hover {
  border-color: #7DD3C0;
  background: #F2FAF8;
}

.propertyform__price-modal-option.selected {
  border-color: #7DD3C0;
  background: #7DD3C0;
  color: #fff;
  font-weight: 500;
}

.propertyform__price-input-group input[type="text"] {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  padding: 14px 16px !important;
  box-shadow: none !important;
}

.propertyform__price-input-group input[type="text"]:focus {
  outline: none;
}

.propertyform__field-hint {
  padding-top: 8px !important;
  margin: 0 0 8px !important;
  font-size: 13px;
  color: #6c757d;
}

.propertyform__field-hint a {
  text-decoration: underline;
}

/* Section Title Styles - Controlled here since Elementor CSS doesn't load */
label.propertyform__section-title {
  display: block;
  color: #2C3E50;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0;
}
