#main-content {
  background-color: #3deba394 !important;
  background-image: url(/wp-content/themes/homeaid/images/bg-green-pattern-homeaid.png);
  background-size: 1300px;
  background-position: center;
  position: relative;
}

.registration-container {
  min-height: calc(100vh - 200px);
  margin-bottom: 5rem;
}

.registration-container h1,
.start-now-container h1 {
  font-size: 3.2rem;
  letter-spacing: -2px;
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.registration-container h2,
.start-now-container h2 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 2rem;
}

.form-sec .container {
  max-width: 800px;
  margin: 0 auto;
}

.user-type-selection {
  margin-top: 1rem;
}

.user-type-card {
  display: block;
  text-decoration: none;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
}

.user-type-card .card-inner {
  background: white;
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.user-type-card:hover .card-inner {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.user-type-card.selected .card-inner {
  border-color: var(--primary-color);
  background-color: rgba(61, 235, 163, 0.1);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-wrapper {
  height: auto;
  width: auto;
}

.icon-wrapper i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.user-type-card:hover .icon-wrapper i {
  transform: scale(1.1);
}

.card-inner h3 {
  font-size: 16px;
  margin-bottom: 0.25rem;
  text-align: center;
  font-weight: 600;
  color: var(--secondary-color);
}

.card-inner p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.form-control {
  padding: 1rem 0.75rem 1rem 1.75rem !important;
  border: 1px solid #ddd;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 1.4rem;
  color: var(--secondary-color);
  font-weight: 600;
  padding-top: 24px !important;
}

.form-floating {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-floating > .form-control {
  padding: 1.625rem 0.75rem 0.625rem;
  height: calc(3.5rem + 12px);
  border-radius: 100px;
}

.form-floating > .toggle-password {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--secondary-color);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.form-floating > .toggle-password:hover {
  opacity: 1;
}

.form-floating > label {
  position: absolute;
  top: 3px;
  left: 10px;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1sease-in-out, transform 0.1sease-in-out;
  margin-left: 5px;
  color: var(--secondary-color);
  font-weight: 600;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  background-color: transparent;
  padding: 0 5px;
  height: auto;
  margin-left: 10px;
  top: 16px;
  left: 10px;
  font-size: 13px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(61, 235, 163, 0.25);
  outline: none;
}

.btn-next,
.finish-btn {
  background: var(--secondary-color);
  color: #fff;
  padding: 0.8rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-next img,
.finish-btn img {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn-next:hover img {
  transform: translateX(5px);
}

.registration-form .card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: none;
}

.registration-form .amenities-card {
  display: flex;
  align-items: center;
}

.registration-form h4 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.property-type-selection {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.property-type {
  flex: 1;
  text-align: center;
  padding: 1rem;
  border-radius: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: #f6f6f6;
}

.property-type:hover {
  transform: translateY(-2px);
  background: #3de8a147;
}

.property-type.selected {
  border-color: var(--primary-color);
  background-color: rgba(61, 235, 163, 0.1);
}

.number-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 15px;
}

.number-selector button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 0;
}

.number-selector button img {
  width: 18px;
  height: 18px;
}

.number-selector button:hover {
  transform: scale(1.1);
}

.number-selector .input-icon {
  width: 44px;
  height: 44px;
  opacity: 1;
}

.number-selector input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  background: transparent;
  padding: 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 5rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.form-check {
  margin: 0;
  padding: 0.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  cursor: pointer;
  color: var(--secondary-color);
}

.value-display {
  text-align: center;
  font-weight: 600;
  color: var(--secondary-color);
}

.progress-indicator {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 0 1rem 0;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.progress-indicator .progress {
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.progress-indicator .progress-bar {
  background-color: var(--secondary-color) !important;
  transition: width 0.3s ease;
}

.progress-indicator .steps-text {
  text-align: center;
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.registration-step {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.registration-step.active {
  opacity: 1;
  transform: translateY(0);
}

.form-check {
  padding: 10px 0 0 0;
}
.form-check-label {
  position: relative;
  top: 3px;
}

.form-check-input {
  width: 1.4em;
  height: 1.4em;
}

@media (max-width: 768px) {
  .registration-container h1,
  .start-now-container h1 {
    font-size: 2.5rem;
  }

  .registration-container h2,
  .start-now-container h2 {
    font-size: 1.5rem;
  }

  .form-sec {
    padding: 2rem 0;
  }

  .user-type-card {
    margin-bottom: 2rem;
  }

  .property-type-selection .row {
    flex-wrap: wrap;
  }

  .property-type-option {
    width: calc(50% - 10px);
  }

  .number-selector {
    margin-bottom: 2rem;
  }

  .start-now-container {
    padding: 2rem 1rem;
  }

  .form-sec .container {
    padding: 2rem 1rem;
  }

  .progress-indicator {
    padding: 1rem 0 1rem 0;
    margin-bottom: 0rem;
}
.amenities-grid {
  grid-template-columns: repeat(1, 1fr);
}

}

.noUi-handle {
  border: 6px solid var(--background-primary) !important;
  background: #303a57 !important;
  cursor: default !important;
  box-shadow: 0 4px 17px -4px #00000099 !important;
  border-radius: 100px !important;
  height: 40px !important;
  width: 40px !important;
  cursor: grab !important;
}

.noUi-handle:active {
  cursor: grabbing !important;
}

.noUi-active {
  cursor: grabbing !important;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none !important;
}

.noUi-horizontal {
  height: 8px !important;
  border: none !important;
  background: #ededed !important;
  border-radius: 30px !important;
}
.noUi-horizontal .noUi-handle {
  top: -16px !important;
}
.noUi-connect {
  background: #3deba3 !important;
}
.noUi-target {
  margin: 2rem;
}
.fs-xs {
  font-size: 12px;
}
.price-info {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* Step 4 Styles */
.card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: none;
}

.card h4 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.card:hover {
  transform: translateY(0);
}

.lottie-container {
  width: 230px;
  height: 230px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.radius50 {
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.4rem;
  padding-left: 24px !important;
  letter-spacing: -1px;
}

.spinner-border {
  width: 1.2rem;
  height: 1.2rem;
  border-width: 0.15em;
}

.icon-wrapper i {
  color: var(--primary-color);
}

.user-type-card:hover .icon-wrapper i {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.start-title {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  letter-spacing: -1px;
  margin-top: 1rem;
}

.noUi-connect {
  background: var(--primary-color);
}
.noUi-handle {
  background: var(--primary-color);
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.noUi-handle:before,
.noUi-handle:after {
  display: none;
}



/* Selected Property Information Block Styles */
#selected-property-info {
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#selected-property-info h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-weight: 600;
  text-align: center;
  font-size: 1.6rem;
}

#selected-property-info #property-prefill-message {
  color: var(--secondary-color);
  font-style: italic;
  margin-bottom: 50px;
}

#selected-property-info .property-card {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}

#selected-property-info .property-image-container {
  flex: 0 0 40%;
  max-width: 40%;
}

#selected-property-info .property-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

#selected-property-info .property-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#selected-property-info .property-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

#selected-property-info .property-address-container {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 5px;
}

#selected-property-info .location-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

#selected-property-info .location-icon img {
  width: 100%;
  height: 100%;
}

#selected-property-info .address-info {
  flex: 1;
}

#selected-property-info .property-address {
  font-weight: 500;
  margin-bottom: 2px;
}

#selected-property-info .property-location {
  color: #666;
  font-size: 0.9rem;
}

#selected-property-info .property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
}

#selected-property-info .feature-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

#selected-property-info .feature-item img {
  width: 18px;
  height: 18px;
}

#selected-property-info .property-type-info {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 2px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-top: 5px;
  width: fit-content;
}

@media (max-width: 768px) {
  #selected-property-info .property-card {
      flex-direction: column;
  }
  
  #selected-property-info .property-image-container {
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 15px;
  }
}

.error-message {
    color: #dc3545;
    font-size: 1rem;
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: rgb(255 232 234);
    max-width: 500px;
    margin: 0 auto;
    display: none;
}

.error-message.show {
    display: block;
} 