#iq-estimate-form {
	height: 100%;
	display: none;
}

.iq-quote-container {
	width: 100%;
	max-width: 540px;
	margin: 0 auto;
	height: 720px;
	background: #ffffff;
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 30px 30px 40px;
	position: relative;
	--primary-color: #000;
	--secondary-color: #2c2c2c;
	--hover-color: #ffd700;
}

.iq-step {
	display: none;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	animation: fadeIn 0.3s ease-in-out;
}

.iq-step.iq-active {
	display: flex;
}

.iq-quote-input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	margin-bottom: 16px;
	font-size: 16px;
	resize: vertical;
}

.iq-radios {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.iq-radios .iq-option {
	background: #f9f9f9;
	border: 2px solid transparent;
	border-radius: 8px;
	padding: 14px 16px;
	transition: all 0.25s ease;
	cursor: pointer;
	font-weight: 500;
}

.iq-radios .iq-option.iq-selected {
	color: #fff;
	border-color: var(--primary-color);
	background: var(--secondary-color);
}

.iq-radios .iq-option input {
	display: none;
}

.iq-info-box {
	background: #eef4ff;
	padding: 12px;
	margin-top: 10px;
	font-size: 14px;
	color: #333;
	border-radius: 6px;
}

.iq-controls {
	display: flex;
	justify-content: space-between;
	margin-top: auto;
}

.iq-controls button {
	padding: 12px 24px;
	font-weight: 600;
	background: var(--primary-color);
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.iq-controls button:hover {
	background: var(--secondary-color);
}

.iq-controls .iq-prev {
	background: transparent;
	color: #888;
	border: 1px solid #ccc;
}

.iq-controls .iq-prev:hover {
	border-color: #888;
}

.iq-estimate {
	text-align: center;
	line-height:1.1em !important;
	font-size: 3em;
	font-weight: bold;
	color: var(--primary-color);
}

.iq-main-title {
	font-size: 42px;
	line-height: 1.35em !important;
	margin-top: 0px;
	text-align: center;
}

.iq-secondary-title {
	line-height: 1.35em !important;
	font-size: 32px;
	margin-top: 0px;
	text-align: center;
	margin-bottom: 40px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

#iq-step-9 p {
	font-size: 18px;
	text-align: center;
}
.iq-disclaimer {
	font-size: 12px !important;
	color: #888 !important;
	margin-top: 40px;
}

#iq-estimate-display {
	margin-bottom: 30px;
}

#iq-start-btn {
	width: 100%;
}



.iq-checkboxes {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.iq-checkboxes .iq-option {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	font-size: 16px;
	position: relative;
	user-select: none;
	background: #f9f9f9;
	border: 2px solid transparent;
	border-radius: 8px;
	padding: 14px 16px;
	transition: all 0.25s ease;
}

/* .iq-checkboxes .iq-option:hover {
	border-color: var(--primary-color);
	background-color: #f0f8ff;
}
 */
.iq-checkboxes .iq-option input[type="checkbox"] {
	display: none;
}

.iq-checkboxes .iq-option.checked {
	background-color: var(--primary-color);
	color: #fff;
}
