.service-options{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    row-gap: 20px;
    column-gap: 35px;
}
.variation-desc {
    line-height: 25px;
    font-size: 14px !important;
    font-weight: 400;
    color: #1A1A1A;
}
.service-option input {
    width: 18px !important;
    height: 18px;
    position: relative;
    top: 3px;
}
.service-option label {
    margin-left: 10px;
}
.form-group h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 32px;
    color: #1A1A1A;
}
.service-form-group{
    margin-bottom: 20px;
    border: 1px solid #d1d1d1;
    padding: 20px !important;
    border-radius: 12px;
}

form#laundry-booking-form h2 {
    font-size: 42px;
    line-height: 52px;
    color: #1A1A1A;
    font-weight: 600;
    margin-bottom: 30px;
}

form#laundry-booking-form label {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    color: #1A1A1A;
}

#laundry-booking-form input {
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: #1A1A1A;
    width: 100%;
}

#laundry-booking-form input,
#laundry-booking-form #driver_extra_notes,
#laundry-booking-form #address_notes,
#laundry-booking-form select {
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: #1A1A1A;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #1A1A1A;
    margin-top: 10px;
}

.select2.select2-container.select2-container--default {
    width: 100% !important;
}

.select2-container--default .select2-selection--multiple {
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: #1A1A1A;
    padding: 10px 12px !important;
    border: 1px solid #1A1A1A !important;
}

.select2-container--default .select2-selection-single  {
   font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: #1A1A1A;
    padding: 10px 12px !important;
    border: 1px solid #1A1A1A !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: #1A1A1A;
    padding: 10px 12px !important;
    border-color:  #1A1A1A !important;
}



.form-group.form-group-radio label {
    display: flex;
    gap: 10px;
}
.form-group.form-group-radio {
    display: flex;
    gap: 40px;
}
.form-group.form-group-radio {
    display: flex;
    gap: 40px;
}
.form-group.form-group-radio input {
    margin-top: 0 !important;
}
#booking-summary{
	background: #F3F3F3;
    padding: 20px;
    border-radius: 12px;
}
#booking-summary h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
    color: #1A1A1A;
}
#booking-summary p {
    font-weight: 400;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 30px;
}

#btn-submit {
    padding: 21px 25px;
    border-radius: 12px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    background: #CBEA82;
    color: #1A1A1A;
    border: 1px solid #CBEA82;
    transition: all 0.3s ease-in-out;
    width: 100%;
    margin-top: 25px;
	cursor:pointer;
}
#btn-submit:hover{
	 background: #fff;
    color: #1A1A1A;
    border: 1px solid #5D7577;
}
.laundry-form-container {
    display: grid;
    grid-template-columns: 51% 35%;
    gap: 184px;
}
.step-indicator {
    border: 1px solid #d1d1d1;
    padding: 20px !important;
    border-radius: 12px;
}

.step-indicator li {
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    cursor: pointer;
}
.step-indicator li.active {
    color: #5D7577;
    font-weight: bold;
}
.step-indicator li.completed .step-number,
.step-indicator li.active .step-number {
    background: #5D7577;
    color: white;
}
.step-indicator li.completed {
    color:#5D7577;
}

.step-indicator li:last-child{
    margin-bottom: 0px;
}
.form-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.btn-next,
.btn-prev{
    padding: 13px 25px;
    border-radius: 4px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    background: #CBEA82;
    color: #1A1A1A;
    border: 1px solid #CBEA82;
    transition: all 0.3s ease-in-out;
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
}
.step-indicator .btn-next.disabled-button{
    background: #CBEA82 !important;
    
}

.step-number {
    width: 30px;
    height: 30px;
    background: #ddd;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    font-weight: bold;
    margin-right: 8px;
}

.loader-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #ddd;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-indicator li:hover {
    opacity: 0.8;
}



.btn-next:disabled,
.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}



.form-group {
    margin-bottom: 20px;

}


/****************************
     date select Style
*****************************/
.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    background: white;
    border: 1px solid #1A1A1A;
    margin-top: 10px;
    padding: 11px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s;
}

.select-trigger:hover {
    border-color: #1A1A1A;
}

.select-trigger.active {
    border-color: #1A1A1A;
}

.select-trigger-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-icon {
    width: 20px;
    height: 20px;
}

.select-trigger-text {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.arrow-icon1 {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.select-trigger.active .arrow-icon1 {
    transform: rotate(180deg);
}

.options-container {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 320px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.options-container.show {
    display: block;
}

.option-item {
    padding: 14px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.option-item:hover {
    background: #f5f5f5;
}

.option-item.selected {
    background: #CBEA82;
}

.option-text {
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: #1A1A1A;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #000000;
    display: none;
    align-items: center;
    justify-content: center;
}

.option-item.selected .check-icon {
    display: flex;
}

.check-icon::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.uncheck-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
}

.option-item.selected .uncheck-icon {
    display: none;
}

/* Scrollbar styling */
.options-container::-webkit-scrollbar {
    width: 8px;
}

.options-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.options-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.options-container::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/****************************
     Time select Style
*****************************/
#displayTime {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}
.time-image{
    margin-right: 10px;
}
.time-slot-container {
    position: relative;
}

.selected-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    border: 1px solid #1A1A1A;
    margin-top: 10px;
    padding: 11px 12px;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s;
}

.selected-time:hover {
    border-color: #1A1A1A;;
}

.selected-time.active {
    border-color: #1A1A1A;
}

.clock-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.arrow-icon.rotate {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown.show {
    max-height: 300px;
    overflow-y: auto;
}

.day-filter {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
}

.day-filter label {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    font-size: 14px;
    cursor: pointer;
}

.day-filter input[type="checkbox"] {
    margin-right: 6px;
    cursor: pointer;
}

.time-slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

.time-slot:hover {
    background: #f5f5f5;
}

.time-slot.selected {
    background: #CBEA82;
}

.time-text {
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: #1A1A1A;
}

.leaf-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.radio-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
}

.time-slot.selected .radio-circle {
    border-color: #000000;
    background: #000000;
}

.time-slot.selected .radio-circle::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}



@media only screen and (max-width: 1080px){
    .laundry-form-container {
    display: grid;
    grid-template-columns: 100%;
    gap: 20px;
}
form#laundry-booking-form h2 {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 20px;
}
.service-options{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
}

}
