div#step-1 {
    background: #f8f7ef;
    color: #494a43;
    padding:16px 20px;
    border-radius: 12px;
	margin:0 auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.cqc-form-wrapper h3 {
    margin-top: 0;
    font-size: 24px;
	color:#494a43;
}
#step-1 p{
	color:#494a43;
	font-size:16px;
	text-align:center;
	margin-bottom:30px;
}



.cqc-form-wrapper input {
    width: 100%;
    padding: 6px 12px;
    margin-bottom: 0px;
    border: none;
    border-radius: 0px;
    font-size: 16px;
	background:transparent;
}

#cqc-quote-form{
	
	input::placeholder,
textarea::placeholder {
  color: #cacaca; 
  font-size: 13px;
  opacity: 1; 
}
	
	
input:focus,
textarea:focus{
  background:#fff!important;
	color:#000 !important;
  outline: none;
}
	
}

.multistep-quatation-wrapper{
	
	.frst-input{
		border-radius:6px 6px 0px 0px;
	}
	
	.input-img-wrapper:last-child{
		border-radius:0px 0px 6px 6px;
	}
	
}

.input-img-wrapper{
	display:flex;
	align-items:center;
	background:#fff;
	border-bottom:1px solid #cacaca;
}
.input-img-wrapper img{
	height:20px;
	width:20px;
	margin:20px;
}



#add-stop-btn {
    background: none;
    border: none;
    color: #00d2ff;
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
}

.cqc-submit-btn {
    background: #464646;
    color: #fedb00;
    font-weight: bold;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
	margin-top:32px;
}

#quote-result {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    min-height: 40px;
}

/* Autocomplete styles */
.autocomplete-results {
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    color: black;
    position: absolute;
    width: 100%;
    z-index: 9999;
    border:none;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 0 0 6px 6px;
}

.autocomplete-results li {
    padding: 10px;
    cursor: pointer;
    font-size: 15px;
}

.autocomplete-results li:hover {
    background: #f0f0f0;
}

/* Step 2 vehicle layout */
#step-2 h3 {
    font-size: 32px;
    margin-bottom: 26px;
	padding:16px 20px 0px 16px;
}

.vehicle-grid {
    display:grid;
	grid-template-columns:1fr 1fr;
    justify-content: center;
	gap:22px;
}


.vehicle-card {
    width:100%;
    background: #f8f7ef;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 16px;
    color: black;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	align-items:center;
}

.vehicle-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 6px;
    background: #fff;
}

.vehicle-card ul {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}

.vehicle-card li {
    margin-bottom: 6px;
    color: black;
}

.vehicle-card .price-summary {
    margin-top: 10px;
    font-weight: bold;
    color: #1d72b8;
}

.vehicle-card button.book-now-btn {
   width:100%;
	background:#464646;
	padding:12px 20px;
	margin-top:22px;
	border-radius:12px;
	font-size:15px;
	color:#fedb00;
}

.vehicle-card button.book-now-btn:hover{
	background:#464646eb;
}


#back-btn {
    margin-top: 30px;
    padding: 10px 20px;
    background: #ffffff;
    color: #1d72b8;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .vehicle-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media screen and (max-width: 500px) {
    .vehicle-card {
        flex: 1 1 100%;
    }
}




/* progress-bar-css */

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px 0;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.progress-step .circle {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    margin-bottom: 5px;
}

.progress-step.active .circle {
    background-color: #007bff;
}

.progress-step .label {
    font-size: 18px;
    color: #fff;
}

.progress-line {
    position: absolute;
    top: 19px;
    left: 0;
    width: 100%;
    height: 3px;
	border-radius:12px;
    background-color: #ccc;
    z-index: 0;
}

.progress-step.step-1 {
    align-items: flex-start;
}

.progress-step.step-3 {
    align-items: end;
}


.progress-line-fill {
    position: absolute;
    top: 19px;
    left: 0;
    height: 3px;
    background-color: #007bff;
    z-index: 0;
    transition: width 0.3s ease-in-out;
}




#step-1{

.post-before-img {
    height: 22px;
    width: 22px;
    margin: 17px;
}

.form-input-block-step-1{
    display: flex;
    align-items: center;
	margin-bottom:12px;
	background:#fff;
	border-radius:6px;
	min-height:60px;
	border:0.5px solid #cacaca;
}

	
}

.booking-form-left-block{
	background:#f8f7ef;
	border-radius:4px;
} 

#step-2{
	
	.summary-row {
    display: grid;
	grid-template-columns:1fr 1fr;
    background: #f8f7ef;
    padding: 16px;
    justify-content: space-between;
    font-size: 14px;
		gap:14px;
		border-radius:6px;
		margin-bottom:20px;
}
	
.time-select-row {
    display: flex;
    background: #f8f7ef;
    border-radius: 11px;
    padding: 20px;
	gap:16px;
	margin-bottom:22px;
	flex-direction:column;
	}
	
	.inside-info-block {
    display: flex;
    padding: 0px;
    gap: 12px;
}

	.collection-time-block , .delivery-time-block{
		width:100%;
	}
	
	.inside-info-block input {
    background: #fff;
	border:0.5px solid #cacaca;
    border-radius: 6px;
    max-height: 50px;
}
	
	.inside-info-block select {
    margin: 0px;
    max-height: 50px;
	border:0.5px solid #cacaca;
	border-radius:6px;
}
}

.booking-step-3 {
	display: flex;
    gap: 22px;
}


#step-3{
	

	
	h3{
		color:#000 !important;
	}	
	
	 .left-form {
        background: #f8f7ef;
        padding: 22px;
        border-radius: 7px;
		 width:100%;
    }
	
	input[type="text"] , input[type="email"] , input[type="number"] , input[type="tel"] , textarea{
    background: #fff;
    border: 0.5px solid #cacaca;
    box-shadow: 0px 0px 1px #cacaca91;
    margin-bottom: 12px;
	border-radius:6px;
	padding:8px 14px;
	min-height:60px;
}
	
	textarea{
		padding:20px;
	}
	
	
	.notifications{
		margin-top:22px;
	}
	
	.notifications-inside-block{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
	row-gap: 12px;
    column-gap: 18px;
	}
	
	.notifications-inside-block label{
    display: flex;
    flex-direction: row;
    font-size: 12px;
	align-items:center;
}
	input[type="checkbox"] {
    height: 12px;
    width: 24px;
}
	
	.collection-heading{
		margin-top:20px;
	}
	
	.notes-block{
		display:flex;
		flex-direction:column;
	}

	.notes-block label{
    display: flex;
    flex-direction: row;
    font-size: 12px;
	align-items:center;
	margin-bottom:12px;
}
	
	.pay-price-block{
	display: flex;
    align-items: center;
    gap: 20px;
	}
	
	.pay-price-block h3{
		margin:0px;
	}
	
	.pay-price-block p{
		margin:0px;
		font-size:15px;
	}
	

}



@media (max-width:768px){
	
	#step-2 {
		.summary-row{
			flex-direction: column;
		}
		
		.time-select-row{
			flex-direction:column;
		}
		
		.inside-info-block{
			flex-direction:column;
		}
	
}

	.booking-step-3{
		flex-direction:column;
	}	
	
	
	#step-3{
	.left-form{
		width:100% !important;
	}
		
		.right-summary{
			width:100% !important;
			
		}

		
	}
	
	
	

}

.booking-form-right-block{

	#booking-summary{
		h4{
			order:1;
		}
		ul {
			order: 3;
		}
		
		img {
			order: 2;
		}
	}
	
	.additional-stops h4 {
		margin-top: 0px !important;
	}
	
	
	.time-summary {
		background: #323232;
		border-radius: 6px;
		padding: 20px;
	}
	
	.vehicle-summary , .additional-stops{
		background: #323232;
		border-radius: 6px;
		padding: 0px 20px;
	}
	
		
p#summary-collection-time , #summary-delivery-time2{
    font-size: 15px;
	color:#fff;
}
	
.time-summary h4 {
    font-size: 18px !important;
	color:#c1ba97;
}
	#booking-summary h4{
		color:#c1ba97;
	}
	
	.right-summary ul{
		padding:0px;
	}
	
	.right-summary ul li , .right-summary ul li strong{
		color:#fff;
	}
	
	.additional-stops{
		h4{
			font-size:18px;
			margin-top:20px;
			color:#c1ba97;
		}
		p{
			font-size:14px;
			color:#fff;
		}
	}
	
}

.booking-form{
	display:flex;
	gap:22px;
}
	

.booking-form-left-block{
	max-width:65%;
	width:100%;
}







div#step-1 , #step-2 , #step-3{
	display:block !important;
}

.vehicle-card ul li{
	display:none !important;
}

.vehicle-card ul li:last-child{
	display:block !important;
}

.booking-form-right-block{
    width: 35%;
	background:#323232;
	height:fit-content;
	border-radius:6px;
}
.right-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.additional-stops strong{
	color:#fff;
}



.booking-form-right-block .payment{
	h3 , p{
		color:#fff;
	}
	
	button#final-submit-btn{
		background:#464646;
		padding:20px 4px;
		width:100%;
		font-size:16px;
		color:#979797;
		font-weight:300;
	}
	
	p.terms-conduction{
		padding-top:20px;
		font-size:12px;
		font-weight:600;
		text-align:center;
		color:#fff;
	}
	
	p.terms-conduction i{
		color:#c1ba97;
	}
	
	
}

.booking-form-right-block .payment{
	padding:0px 20px 20px;
}

.fair-price{
	color:#979797;
	font-size:17px;
	font-weight:600;
	margin:20px 0px 0px;
	padding-top:20px;
	border-top:1px solid #c1ba97;
}


#vehicle-cards-container{
	padding:0px 20px;
}


@media(max-width:768px) {
	
	.vehicle-grid{
		grid-template-columns: 1fr 1fr;
	}
	
	.input-img-wrapper img{
	margin:20px 10px;
}

	.booking-form{
		flex-direction:column;
	}
	.booking-form-left-block{
		max-width:100%;
	}
	.booking-form-right-block{
		width:100%;
	}
	
	
}

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