:root {
	--primary-color: #4f90cd;
	--primary-color-dark: #3a6fa5;
	--primary-color-light: #6ba5d6;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif;
	background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
	min-height: 100vh;
	padding: 20px;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.header {
	background: linear-gradient(
		135deg,
		#b1df01 0%,
		#7eac00 100%
	);
	color: white;
	padding: 40px 30px;
	text-align: center;
	position: relative;
}

.logo-container {
	background: white;
	border-radius: 12px;
	padding: 15px 25px;
	margin: 0 auto 20px;
	display: inline-block;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-container img {
	height: 50px;
	width: auto;
	display: block;
}

.header h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.header p {
	opacity: 0.9;
	font-size: 0.95rem;
	line-height: 1.5;
}

.progress-bar {
	height: 6px;
	background: #e5e7eb;
	position: relative;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(
		90deg,
		#b1df01,
		#e4ff34
	);
	transition: width 0.5s ease;
	width: 20%;
}

.form-container {
	padding: 40px 30px;
}

.footer {
	margin-top: 30px;
	padding: 20px;
	text-align: center;
}

.step {
	display: none;
	animation: fadeIn 0.3s ease;
}

.step.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.step-title {
	font-size: 1.5rem;
	color: #1f2937;
	margin-bottom: 25px;
	font-weight: 600;
}

.option-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-bottom: 30px;
}

.option-card {
	padding: 15px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	background: white;
	overflow: hidden;
}

.option-image {
	width: 100%;
	height: 150px;
	object-fit: contain;
	border-radius: 8px;
	margin-bottom: 12px;
}

.option-card:hover {
	border-color: #b1df01;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(79, 144, 205, 0.15);
}

.option-card.selected {
	border-color: #b1df01;
	background: linear-gradient(135deg, #f0f7ff 0%, #d6e8f9 100%);
}

.option-card h3 {
	font-size: 1.1rem;
	color: #374151;
	margin-bottom: 5px;
}

.option-card p {
	font-size: 0.9rem;
	color: #6b7280;
}

.input-group {
	margin-bottom: 20px;
}

.input-group label {
	display: block;
	margin-bottom: 8px;
	color: #374151;
	font-weight: 500;
}

.input-group input,
.input-group select {
	width: 100%;
	padding: 12px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
	outline: none;
	border-color: #b1df01;
}

.button-group {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.btn {
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary {
	background: linear-gradient(
		135deg,
		#b1df01 0%,
		#7eac00 100%
	);
	color: white;
	flex: 1;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(79, 144, 205, 0.3);
}

.btn-secondary {
	background: #f3f4f6;
	color: #374151;
}

.btn-secondary:hover {
	background: #e5e7eb;
}

.result-container {
	background: linear-gradient(135deg, #f0f7ff 0%, #e1f0fa 100%);
	border-radius: 12px;
	padding: 30px;
	margin-top: 30px;
	display: none;
}

.result-container.show {
	display: block;
	animation: slideUp 0.5s ease;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.price-display {
	text-align: center;
	margin-bottom: 25px;
}

.price-label {
	color: #6b7280;
	font-size: 1rem;
	margin-bottom: 10px;
}

.price-range {
	font-size: 2.5rem;
	font-weight: bold;
	background: linear-gradient(
		135deg,
		#b1df01,
		#7eac00
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.details-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	margin-top: 20px;
}

.detail-item {
	background: white;
	padding: 15px;
	border-radius: 8px;
	border-left: 4px solid #b1df01;
}

.detail-label {
	color: #6b7280;
	font-size: 0.9rem;
	margin-bottom: 5px;
}

.detail-value {
	color: #1f2937;
	font-weight: 600;
}

.disclaimer {
	margin-top: 20px;
	padding: 15px;
	background: #fef3c7;
	border-left: 4px solid #f59e0b;
	border-radius: 8px;
}

.disclaimer p {
	color: #92400e;
	font-size: 0.9rem;
	line-height: 1.6;
}

.error {
	color: #dc2626;
	font-size: 0.9rem;
	margin-top: 5px;
}

.two-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.loading-spinner {
	display: none;
	width: 20px;
	height: 20px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	border-top-color: transparent;
	animation: spin 0.8s linear infinite;
	margin-left: 10px;
	display: inline-block;
	vertical-align: middle;
}

.btn-primary.loading .loading-spinner {
	display: inline-block;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.success-message {
	background: #10b981;
	color: white;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	display: none;
	text-align: center;
	margin-top: 10px;
	animation: slideDown 0.3s ease;
}

.error-message {
	background: #ef4444;
	color: white;
	padding: 15px;
	border-radius: 8px;
	margin: 20px 0;
	display: none;
	text-align: center;
	animation: slideDown 0.3s ease;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.contact-link {
	color: #b1df01;
	text-decoration: none;
	font-weight: 500;
}

.contact-link:hover {
	text-decoration: underline;
}

@media (max-width: 640px) {
	.header h1 {
		font-size: 1.8rem;
	}

	.two-column {
		grid-template-columns: 1fr;
	}

	.option-grid {
		grid-template-columns: 1fr;
	}
}

/* Print styles */
@media print {
	body {
		background: white;
		padding: 0;
	}

	.container {
		box-shadow: none;
	}

	.button-group {
		display: none;
	}

	.step {
		display: none !important;
	}

	.result-container {
		display: block !important;
	}
}
