:root {
 --yellow: #ffc603;
 --lyellow: #fecc39;
 --blue: #213051;
 --teal:#01afb1;
 --white: #fff;
 --black: #222;
 --gray: #666;
 --lgray: #888;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Open Sans", sans-serif;
	background: #f5f5f5;
	line-height: 22px;
	color: var(--black);
}
.main-container {
	max-width: 1300px;
	margin: 25px auto;
	padding: 0 15px;
}
/* Text Logo (Embedded without needing logo.webp) */
.logo-text {
	font-size: 28px;
	font-weight: 800;
	color: var(--lyellow);
	letter-spacing: -1px;
	line-height: 1;
}
.logo-text span {
	color: var(--blue);
}
.logo-tagline {
	font-size: 10px;
	font-weight: 400;
	color: var(--black);
	letter-spacing: 0.5px;
}
/* Stepper */
.stepper-header {
	background: var(--white);
	border-radius: 20px;
	padding: 20px 30px;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 15px;
}
.step-circle {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 14px;
	color: var(--white);
	margin: 0 auto 5px auto;
}
.step-circle.done {
	background: var(--yellow);
}
.step-circle.active {
	background: var(--blue);
}
.step-circle.inactive {
	background: #e9ecef;
	color: #999;
}
.step-label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}
.step-label small {
	font-size: 11px;
	font-weight: 400;
	color: var(--lgray);
	display: block;
}
.step-line {
	flex: 1;
	height: 2px;
	background: #e9ecef;
	margin: 0 15px;
	min-width: 20px;
}
.step-line.done {
	background: var(--yellow);
}
.security-badge {
	border-left: 2px solid #eee;
	padding: 10px;
}
.security-badge i {
	font-size: 24px;
	color: var(--blue);
}
.security-badge h6 {
	font-size: 13px;
	font-weight: 700;
	margin: 0;
}
.stepper-header .security-badge {
	border-radius: 0;
	box-shadow: none;
}
/* Card Styling */
.card-box {
	background: var(--white);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	border: none;
	margin-bottom: 20px;
}
/* Price Card - Embedded City Skyline via CSS clip-path */
.price-card {
	background: linear-gradient(to bottom, #fbf6d2, #fecc39);
	border-radius: 20px;
	padding: 25px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.city-skyline {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 145px;
	background: url(../images/guranted_bg.webp) 0 0 no-repeat;
	z-index: 1;
}
.graybg {
	background: #f4f5f7;
	padding: 20px;
	border-radius: 15px;
	margin-top: 15px;
}
.price-ribbon {
	position: absolute;
	top: 10px;
	right: 20px;
}
.price-card h1 {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--black);
	position: relative;
	z-index: 2;
	line-height: 30px;
	margin-top: 6px;
}
.price-benefits {
	background: rgba(255,255,255,0.4);
	border-radius: 12px;
	padding: 10px;
	text-align: center;
	list-style: none;
	position: relative;
	z-index: 2;
}
.price-benefits p {
	font-size: 14px;
	font-weight: 600;
	margin: 0;
	animation: pulse 2s infinite;
	animation-duration: 2s
}
 @keyframes pulse {
 50% {
 opacity:.5;
 transform:scale(1.15)
}
 0% {
 transform:scale(1);
 opacity:1
}
 to {
 transform:scale(1.3);
 opacity:0
}
}
.price-benefits i {
	color: #22c55e;
	margin-right: 8px;
}
.form-check-input:checked {
	background-color: var(--yellow);
	border-color: var(--yellow);
}
.form-check-input:focus {
	box-shadow: 0 0 0 .25rem rgb(255 235 59 / 24%);
}
/* Vehicle Card */
.vehicle-card {
	text-align: center;
	padding-bottom: 30px;
}
.vehicle-card .car-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: #eaf0ff;
	border-radius: 50%;
	margin: 15px 0;
	color: var(--blue);
	font-size: 36px;
}
.vehicle-card h5 {
	font-weight: 700;
	margin-bottom: 2px;
}
.vehicle-features {
	display: flex;
	justify-content: center;
	gap: 15px;
	font-size: 13px;
	color: var(--gray);
}
/* Return Switch */
.switch-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}
.form-check-input {
	width: 50px;
	height: 25px;
	cursor: pointer;
}
/* Dark Summary Box */
.summary-blue {
	background: var(--blue);
	color: var(--white);
	border-radius: 20px;
	padding: 20px;
}
.summary-blue h6 {
	color: var(--white);
}
.summary-blue hr {
	border-color: rgba(255,255,255,0.1);
	margin: 7px 0;
}
.summary-item {
	display: flex;
	gap: 12px;
	margin-bottom: 10px;
	align-items: flex-start;
	    background: #edf9f9;
		padding:10px;
}
.summary-item:last-child {
	margin-bottom: 0;
}
.summary-item i {
	color: var(--yellow);
	font-size: 14px;
	margin-top: 6px;
}
.summary-item .val {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}
.summary-item .lbl {
	font-size: 13px;
	color: var(--black);
	margin-bottom: 0;
}
.change-route {
	color: var(--yellow);
	font-weight: 600;
	text-decoration: none;
	font-size: 16px;
}
.change-route:hover {
	color: var(--white);
}
.change-route:hover i {
	color: var(--yellow);
}
/* Peace of Mind */
.peace-card.card-box {
	background: #f7f9f6;
	position: relative;
}
.peace-card {
	margin-top: 20px;
	padding: 20px;
}
.peace-card h6 {
	color: #22c55e;
}
.peace-list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}
.peace-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}
.peace-list i {
	color: #22c55e;
	font-size: 14px;
}
.icon_right {
	text-align: right;
}
.peace-card .icon_right {
	position: absolute;
	right: 0;
	bottom: 0;
}
/* Hero Banner - Embedded Yellow Van Replacement */
.hero-banner {
	background: #fecc39;
	border-radius: 20px;
	padding: 25px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.hero-text h3 {
	font-size: 26px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 8px;
}
.hero-text p {
	font-size: 14px;
	font-weight: 500;
	color: var(--blue);
	margin: 0;
	opacity: 0.9;
}
.hero-van-container {
	background: var(--blue);
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.hero-van-container i {
	font-size: 44px;
	color: var(--white);
}
/* Form Section */
.form-header{
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	 color:var(--teal);
}
.form-header i {
	color: var(--black);
	font-size: 18px;
}
.payment_method h5{
	font-size: 18px;
	font-weight: 600;
	 color:var(--teal);
}
.input-group-custom {
	position: relative;
	margin-bottom: 8px;
}
.input-group-custom i.input-icon, .accordion-body .input-group-custom i.input-icon {
	position: absolute;
	left: 15px;
	top: 17px;
	color: var(--yellow);
	font-size: 18px;
	z-index: 5;
}
#seheduleForm .accordion-body .input-group-custom i.input-icon {
	position: absolute;
	left: 15px;
	top: 17px;
	color: var(--yellow);
	font-size: 18px;
	z-index: 5;
}
#seheduleForm .input-group-custom i.input-icon {
	position: absolute;
	left: 15px;
	top: 45px;
	color: var(--yellow);
	font-size: 18px;
	z-index: 5;
}
.input-group-custom .form-control {
	padding: 12px 15px 12px 45px;
	border-radius: 10px;
	border: 1px solid #e9ecef;
	background: #fcfcfc;
}
.input-group-custom .form-control:focus {
	border-color: var(--yellow);
	box-shadow: 0 0 0 0.2rem rgba(255, 198, 3, 0.15);
}
.input-group-custom .dot-line {
	position: absolute;
	right: 15px;
	bottom: 18px;
	color: var(--yellow);
	font-size: 12px;
	letter-spacing: 3px;
}
.promo-toggle {
	padding: 15px;
	background: #fcfcfc;
	border-radius: 10px;
	border: 1px solid #e9ecef;
	margin-bottom: 20px;
	cursor: pointer;
}
/* Payment Methods */
.payment-methods123 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
}

.pay-option input {
	display: none;
}
.pay-option label {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 12px;
	cursor: pointer;
	position: relative;
	text-align: center;
	height: 100%;
}
.pay-option input:checked + label {
	border: 2px solid var(--teal);
	background: #c8feff;
}
.pay-option .check-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	color: var(--teal);
	display: none;
}
.pay-option input:checked + label .check-badge {
	display: block;
}
.pay-icon {
	font-size: 24px;
	margin-bottom: 5px;
}
.pay-name {
	font-weight: 600;
	font-size: 16px;
}
.pay-sub {
	font-size: 10px;
	color: var(--lgray);
}
.desktop-w-50 {
        width: 50% !important;
    }
@media (max-width: 767.98px) {
	.payment-methods {gap: 4px;}
.payment-methods .pay-option {
	flex: 0 0 50%;
	max-width: 100%;
	box-sizing: border-box;
}
}
.terms-check input {
	accent-color: var(--yellow);
	width: 16px;
	height: 16px;
	margin-top: 3px;
}
.terms-check label {
	font-size: 13px;
	font-weight: 500;
}
.footer-features {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
	background: var(--white);
	border-radius: 20px;
	padding: 20px 30px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.footer-features .item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
}
.footer-features .item img {
	width: 22px;
}
.btn-proceed {
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 12px;
	background: var(--yellow);
	color: var(--blue);
	font-weight: 700;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	transition: 0.2s;
}
.btn-proceed:hover {
	background: #eeb802;
	transform: scale(1.01);
}
 @media (max-width: 992px) {
.stepper-header {
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	padding: 10px 3px 3px 3px;
}
.security-badge {
	border-left: none;
	padding-left: 0;
	padding-top: 4px;
	justify-content: center;
	box-shadow: none;
}
.accordion-button {
	position: relative;
	display: inline-grid;
	align-items: center;
	width: 100%;
	padding: 1rem .75rem;
	font-size: 14px;
}
.accordion-button:not(.collapsed) {
	color: var(--black);
	background-color: transparent;
	box-shadow: none;
}
.accordion-button i {
	margin-right: 10px;
	color: var(--yellow);
	font-size: 20px;
	margin-bottom: 10px;
}
.accordion-header {
	margin-bottom: 0;
	line-height: 0;
}
.accordion-button:focus {
	border-color: transparent;
	box-shadow: none;
}
/* last step */
body {
	background: #f5f7fb;
	font-family: Inter, sans-serif;
}
.booking-summary {
	background:transparent;
	border-radius: 0;
	padding: 0;
	box-shadow:none;
}

.summary-header h4 {
	margin: 0;
	padding: 0;
}
.vehicle-img img {
	width: 100%;
	margin-right: 15px;
}
.payment-footer .price-box {
	text-align: center;
}
.price-box {
	text-align: right;
}
.price-box h2 {
	font-weight: 700;
	font-size: 25px;
	line-height: 30px;
}
.summary-card {
	border: 1px solid #ececec;
	border-radius: 18px;
	padding: 22px;
	box-shadow: 0 0 12px #0000001a;
}
.summary-card li {
	margin: 0 0 10px 0;
}
.section-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
}
.section-title i {
	font-size: 22px;
	color: var(--yellow);
	margin-right: 8px;
}
.timeline {
	border-left: 2px solid #ddd;
	margin-left: 10px;
}
.timeline-item {
	position: relative;
	padding-left: 25px;
	margin-bottom: 25px;
}
.timeline-item:last-child {
	margin-bottom: 0;
}
.timeline-item:before {
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	position: absolute;
	left: -7px;
	top: 5px;
}
.timeline-item.start:before {
	background: #28c76f;
}
.timeline-item.end:before {
	background: #ff4d4f;
}
.summary-card small {
	color: #888;
}
.payment-footer {
	margin-top: 35px;
	border-top: 1px solid #eee;
	padding-top: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.btn-warning {
	border-radius: 8px;
	padding: 10px 18px;
	font-weight: 600;
	font-size: 13px;
}
/* last step */



.children-block {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
