.elementor-12 .elementor-element.elementor-element-3b68341{--display:flex;}.elementor-12 .elementor-element.elementor-element-4307413{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-2937969 *//* Main Container */
.moving-contact-form {
  max-width: 750px;
  margin: 0 auto;
  padding: 60px 36px;
  background: linear-gradient(90deg, rgba(191, 229, 255, 0.4) 0%, rgba(191, 229, 255, 0.4) 100%);
  border-radius: 20px;
  border: 1px solid rgba(128, 204, 255, 0.6);
}

.moving-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Section Styling */
.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.section-number {
  width: 30px;
  height: 30px;
  background: linear-gradient(90deg, rgba(128, 204, 255, 0.5) 0%, rgba(128, 204, 255, 0.5) 100%), 
              linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #004e82;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.section-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 44px;
  color: #333;
  margin: 0;
}

.section-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
}

/* Form Fields */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row.single-col {
  grid-template-columns: 1fr;
}

.form-row.two-col-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  padding: 0 10px;
}

.field-hint {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #8e8e93;
  padding: 0 10px;
  margin: 0;
}

/* Input Styling */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: white;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  color: #333;
  transition: all 0.2s ease;
  min-height: 55px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #80ccff;
  box-shadow: 0 0 0 3px rgba(128, 204, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  padding-top: 12px;
}

/* Move Type Buttons Container */
.move-type-buttons {
  background: #80ccff;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  gap: 20px;
}

.move-type-btn {
  flex: 1;
  background: white;
  border: none;
  border-radius: 8px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #8e8e93;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0 30px;
}

.move-type-btn:hover {
  background: #f0f0f0;
}

.move-type-btn.active {
  background: #004e82;
  color: white;
  font-weight: 400;
}

.move-type-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.move-type-btn svg path {
  fill: #8e8e93;
}

.move-type-btn.active svg path {
  fill: white;
}

/* Bedroom Size Selection */
.bedroom-size-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
  transition: all 0.3s ease;
}

.bedroom-size-section.show {
  display: flex;
}

.bedroom-size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bedroom-size-grid.single-item {
  grid-template-columns: 1fr;
  max-width: calc(33.333% - 6.67px);
}

.bedroom-size-btn {
  background: white;
  border: none;
  border-radius: 8px;
  height: 55px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bedroom-size-btn:hover {
  background: #f5f5f5;
}

.bedroom-size-btn.active {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.45) 100%), 
              linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
  color: #ccc;
  font-weight: 400;
}

/* Option Buttons (Yes/No/Not Sure) */
.button-group {
  display: flex;
  gap: 10px;
}

.option-btn {
  flex: 1;
  background: white;
  border: none;
  border-radius: 8px;
  height: 55px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-btn:hover {
  background: #f5f5f5;
}

.option-btn.active {
  background: #c6e8ff;
  color: #004e82;
  font-weight: 400;
}

/* Footer */
.form-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-text {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #8e8e93;
  margin: 0;
  max-width: 406px;
}

.submit-button {
  background: #b4f125;
  color: #04283e;
  border: none;
  border-radius: 8px;
  padding: 16px 30px;
  height: 55px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-button:hover {
  background: #a3e010;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 241, 37, 0.3);
}

.submit-button:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .moving-contact-form {
    padding: 40px 20px;
  }
  
  .form-row,
  .form-row.two-col-buttons {
    grid-template-columns: 1fr;
  }
  
  .move-type-buttons {
    flex-direction: column;
  }
  
  .bedroom-size-grid {
    grid-template-columns: 1fr;
  }
  
  .bedroom-size-grid.single-item {
    max-width: 100%;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .submit-button {
    width: 100%;
  }
  
  .footer-text {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 20px;
  }
  
  .moving-form-wrapper {
    gap: 40px;
  }
}/* End custom CSS */