/* multi step form css start */
@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.2;
	}

	50% {
		transform: scale(1.3);
		opacity: 0;
	}
}

@keyframes fadeInSlide {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.progress-container {
	padding: 48px 0px 32px;
	position: relative;
}

.progress-steps {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
	position: relative;
}

@media (max-width: 425px) {
	.progress-steps {
		display: flex;
		justify-content: space-between;
		margin-bottom: 24px;
		position: relative;
	}
}

.progress-steps::before {
	content: '';
	position: absolute;
	top: 16px;
	left: 36px;
	right: 36px;
	height: 4px;
	background: #efefef;
	z-index: 0;
}

.progress-line {
	position: absolute;
	top: 16px;
	left: 36px;
	height: 4px;
	background: linear-gradient(90deg, #ee7a64 0%, #ee7a64 100%);
	transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 1;
	box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

.progress-step-1 {
	width: 0%;
}

.progress-step-2 {
	width: 30%;
}

.progress-step-3 {
	width: 61%;
}

.progress-step-4 {
	width: 93%;
}

@media (max-width: 425px) {
	.progress-step-3 {
		width: 53%;
	}

	.progress-step-4 {
		width: 80%;
	}
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
}

.step-circle {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: white;
	border: 2px solid #e8e8e8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
	color: #bbb;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	font-family: 'Clash Display', sans-serif;
	position: relative;
}

.step-circle::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ee7a64, #ee7a63);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;

}

.step.active .step-circle {
	background: linear-gradient(135deg, #ee7a64 0%, #ee7a63 100%);
	border-color: transparent;
	color: white;
	transform: scale(1.15);

}

.step.active .step-circle::before {
	opacity: 0.2;
	animation: pulse 2s ease-in-out infinite;
}

.step.completed .step-circle {
	background: linear-gradient(135deg, #2d2624 0%, #2d2624 100%);
	border-color: transparent;
	color: white;
	transform: scale(1);

}

.step-label {
	margin-top: 14px;
	font-size: 13px;
	font-weight: 600;
	color: #bbb;
	transition: all 0.3s ease;
	letter-spacing: 0.3px;
}

.step.active .step-label {
	color: #1a1a1a;
}

.step.completed .step-label {
	color: #666;
}

.form-content {
	padding: 0px;
	min-height: 500px;
}

.form-step {
	display: none;
	animation: fadeInSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

h2 {
	font-family: 'Clash Display', sans-serif;
	font-size: 25px !important;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
	background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.step-description {
	color: #737373;
	margin-bottom: 36px;
	font-size: 15px;
	line-height: 1.7;
}

.form-group {
	margin-bottom: 26px;
	position: relative;
}

@media (max-width: 425px) {
	.form-group {
		margin-bottom: 15px;
		position: relative;
	}
}

label {
	display: block;
	margin-bottom: 10px;
	font-weight: 600;
	color: #333;
	font-size: 14px;
	letter-spacing: 0.2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="datetime-local"],
textarea,
select {
	width: 100%;
	padding: 0.9rem 1rem;
	border: 2px solid #efefef;
	border-radius: 14px;
	font-size: 15px;
	font-family: 'Inter', sans-serif;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	background: #fafafa;
	color: #1a1a1a;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: #e67e24;
	background: white;
	box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.08), 0 4px 12px rgba(255, 107, 107, 0.12);
	transform: translateY(-1px);
}

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

@media (max-width: 640px) {

	.progress-container,
	.form-content {
		padding: 30px 10px;
	}

	h2 {
		font-size: 23px;
	}

	.step-label {
		font-size: 11px;
	}

	button {
		width: 100%;
	}
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 0rem;
}

.cust-text-orange {
	color: #e94f32;
}

.cust-text-green {
	color: #108c4c;
}

.cust-bg-orange {
	background-color: #e94f32;
}

.cust-border-orange {
	border-color: #e94f32 !important;
}

.btn:hover {
	transform: translateY(-0.15rem);
	box-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.15);
	color: #fff;
}

/* multi step form css end */
.pricing-card {
	background: linear-gradient(135deg, #FB9046, #E05456);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.pricing.card.h-100 {
	box-shadow: 0 0 0 0.05rem rgba(8, 60, 130, 0.06), 0rem 0rem 1.25rem rgba(30, 34, 40, 0.04);
}

.accordion-wrapper.accrdion-wrap .card.plain .card-header button {
	width: auto;
	float: right;
	margin-right: 20px;
}

.accordion-wrapper .card.plain {
	background: none;
	border: 0;
	margin-bottom: 0;
	box-shadow: none;
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(164, 174, 198, 0.2);
	border-radius: 0.4rem;
}

.accordion-wrapper .card.plain .card-header {
	padding: 0 0 0.8rem 0 !important;
}

.accordion-wrapper .card-header {
	margin-bottom: 0;
	background: none;
	border: 0;
	padding: 0.9rem 1.3rem 0.85rem;
}

.card-header:first-child {
	border-radius: 0.4rem 0.4rem 0 0;
}

.accordion-wrapper.accrdion-wrap .card.plain .card-header button {
	width: auto;
	float: right;
	margin-right: 50px;
	background-color: #fff;
	font-size: 16px;
	color: #2d2624;
}

.accordion-wrapper .card.plain .card-header button {
	padding: 0 0 0 1.1rem;
}

.accordion-wrapper .card-header button,
.collapse-link,
.nav-tabs .nav-link {
	font-size: .8rem;
}

.accordion-wrapper.accrdion-wrap .card.plain .card-header button:before {
	left: unset;
	margin-top: -8px;
	right: 0;
}

.accordion .accordion-item .accordion-button:after {
	content: '-';
	width: 20px;
	height: 20px;
	line-height: 25px;
	color: #e94f32;
	position: absolute;
	right: -15px;
	transition: all 0.5s ease;
}

.accordion .accordion-item .accordion-button.collapsed:after {
	content: '+';
	width: 20px;
	height: 20px;
	right: -25px;
	line-height: 20px;
	color: #e94f32;
}

.accordion .accordion-item .accordion-button:not(.collapsed) {
	color: #e94f32;
	box-shadow: none;
	background: #f5f3fa;
}

.accordion .accordion-item .accordion-body {
	padding: 0px 30px 10px;
	background: #fff;
}
