  
    .booking-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 24px;
      width: 100%;
      max-width: 1120px;
      margin: auto;
    }

    .form-wrapper,
    .booking-summary {
      background: #fff;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .booking-summary {
      height: fit-content;
      position: sticky;
      top: 20px;
      font-family: 'Inter', sans-serif;
    }

    h2 {
      margin-top: 0;
      color: #111827;
      font-size: 18px;
    }

    .progress {
      display: flex;
      gap: 10px;
      margin-bottom: 30px;
    }

    .progress span {
      flex: 1;
      height: 6px;
      background: #d1d5db;
      border-radius: 20px;
    }

    .progress span.active {
      background: #06450D;
    }

    .step {
      display: none;
    }

    .step.active {
      display: block;
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .full-width-field {
      grid-column: span 2;
    }

    .field {
      margin-bottom: 16px;
    }

    label {
      display: block;
      font-weight: 600;
      margin-bottom: 6px;
      color: #374151;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 13px;
      border: 1px solid #d1d5db;
      border-radius: 10px;
      font-size: 15px;
      box-sizing: border-box;
    }

    input[type="range"] {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 8px;
      border-radius: 10px;
      outline: none;
    }

    input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 20px;
      height: 20px;
      background: #06450D;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid white;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      margin-top: -6px;
    }

    input[type="range"]::-webkit-slider-runnable-track {
      width: 100%;
      height: 8px;
      background: transparent;
      border-radius: 10px;
    }

    input[type="range"]::-moz-range-thumb {
      width: 20px;
      height: 20px;
      background: #06450D;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid white;
    }

    input[type="range"]::-moz-range-track {
      width: 100%;
      height: 8px;
      background: #e5e7eb;
      border-radius: 10px;
    }

    input[type="range"]::-moz-range-progress {
      background: #06450D;
      height: 8px;
      border-radius: 10px;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: none;
      border-color: #06450D;
    }

    textarea {
      min-height: 110px;
      resize: vertical;
    }

    .range-value {
      margin-top: 8px;
      font-weight: 700;
      color: #06450D;
    }

    .stepper {
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid #d1d5db;
      border-radius: 10px;
      background: #fff;
      width: 100%;
    }

    .stepper-btn {
      flex: 1;
      height: 46px;
      border: none;
      background: #f3f4f6;
      font-size: 20px;
      font-weight: bold;
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.2s;
      color: #06450D;
    }

    .stepper-btn:hover {
      background: #e5e7eb;
    }

    .stepper-btn:active {
      transform: scale(0.95);
    }

    .stepper-value {
      width: 60px;
      text-align: center;
      font-size: 16px;
      font-weight: 600;
      padding: 0;
      border: none;
      background: transparent;
    }

    .stepper-value:focus {
      outline: none;
    }

    .stepper-value::-webkit-inner-spin-button,
    .stepper-value::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }

    .stepper-value[type=number] {
      -moz-appearance: textfield;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-bottom: 24px;
    }

    .card-option {
      border: 1px solid #d1d5db;
      border-radius: 14px;
      padding: 18px 10px;
      text-align: center;
      cursor: pointer;
      transition: 0.2s;
      background: #fff;
    }

    .card-option input {
      display: none;
    }

    .card-option span {
      display: block;
      font-size: 28px;
      margin-bottom: 8px;
    }

    .card-option:hover,
    .card-option.selected {
      border-color: #06450D;
      background: #e8f5e9;
    }

    .checkbox-list {
      display: grid;
      gap: 12px;
    }

    .checkbox-item {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 14px;
      border: 1px solid #d1d5db;
      border-radius: 12px;
      cursor: pointer;
    }

    .checkbox-item input {
      width: auto;
    }

    .buttons {
      display: flex;
      justify-content: space-between;
      margin-top: 28px;
    }

    button {
      border: none;
      padding: 13px 24px;
      border-radius: 10px;
      font-size: 15px;
      cursor: pointer;
    }

    .btn-back {
      background: #06450D;
      color: #fff;
      border: none;
      border-radius: 10px;
      font-family: 'Inter', sans-serif;
    }

    .btn-next,
    .btn-submit {
      background: #06450D;
      color: white;
      border: none;
      border-radius: 10px;
      font-family: 'Inter', sans-serif;
    }

    .summary-row {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 14px;
      line-height: 1.4;
    }
    
    button:focus, button:hover {
      background: #06450d !important;
    }

    .summary-row strong {
      white-space: nowrap;
    }

    #cleaningForm,
    form#cleaningForm {
      font-family: 'Inter', sans-serif;
    }

    .summary-total {
      border-top: 1px solid #e5e7eb;
      padding-top: 14px;
      margin-top: 14px;
      font-size: 20px;
      font-weight: 700;
    }

    .breakdown-hint {
      font-size: 11px;
      color: #9ca3af;
      margin-top: 4px;
      display: flex;
      justify-content: space-between;
    }
		button.btn-back {
			background: #06450D !important;
			color: #fff !important;
			border: none !important;
		}

		button.btn-next {
			background: #06450D !important;
			color: #fff !important;
			border: none !important;
		}

    @media (max-width: 900px) {
      .booking-layout {
        grid-template-columns: 1fr;
      }
      .booking-summary {
        position: static;
      }
    }

    @media (max-width: 650px) {
      .grid {
        grid-template-columns: 1fr;
      }
      .full-width-field {
        grid-column: span 1;
      }
      .cards {
        grid-template-columns: 1fr;
      }
    }