/* Guide Form Styles */
.guide-header {
	text-align: center;
	margin-bottom: 3rem;
}

.guide-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 1rem;
	font-family: "Gilroy", sans-serif;
}

.guide-subtitle {
	font-size: 1.125rem;
	color: #666;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

.guide-form {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
}

/* Progress Bar */
.guide-progress {
	width: 100%;
	height: 4px;
	background-color: #e9ecef;
	border-radius: 2px;
	margin-bottom: 3rem;
	overflow: hidden;
}

.guide-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #6c42a8 0%, #5a3590 100%);
	border-radius: 2px;
	transition: width 0.3s ease;
	width: 14.28%;
}

/* Step Styles */
.guide-step {
	display: none;
	padding: 2.5rem;
	background: #fff;
	border-radius: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #f0f0f0;
}

.guide-step.active {
	display: block;
	animation: fadeInSlide 0.4s ease-out;
}

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

.guide-step-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid #f0f0f0;
}

.guide-step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #6c42a8 0%, #5a3590 100%);
	color: #fff;
	border-radius: 50%;
	font-size: 1.25rem;
	font-weight: bold;
	flex-shrink: 0;
}

.guide-step-title {
	font-size: 1.75rem;
	font-weight: 600;
	color: #333;
	margin: 0;
	font-family: "Gilroy", sans-serif;
}

.guide-question {
	margin-bottom: 2rem;
}

.guide-label {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 0.5rem;
}

.guide-label-hint {
	font-size: 0.9375rem;
	color: #666;
	margin-bottom: 1rem;
	line-height: 1.5;
}

.guide-input,
.guide-select,
.guide-textarea {
	width: 100%;
	padding: 0.875rem 1.25rem;
	border: 2px solid #e0e0e0;
	border-radius: 0.75rem;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
	background-color: #fff;
	color: #333;
}

.guide-input:focus,
.guide-select:focus,
.guide-textarea:focus {
	outline: none;
	border-color: #6c42a8;
	box-shadow: 0 0 0 4px rgba(108, 66, 168, 0.1);
	background-color: #fff;
}

.guide-input.is-invalid,
.guide-select.is-invalid,
.guide-textarea.is-invalid {
	border-color: #dc3545;
}

.guide-textarea {
	resize: vertical;
	min-height: 120px;
	font-family: inherit;
	line-height: 1.5;
}

.guide-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.guide-form-col {
	display: flex;
	flex-direction: column;
}

.guide-form .form-group {
	margin-bottom: 1.5rem;
}

.guide-info-text {
	background-color: #f8f9fa;
	border-left: 4px solid #6c42a8;
	padding: 1rem 1.25rem;
	border-radius: 0.5rem;
	margin-bottom: 2rem;
	color: #666;
	font-size: 0.9375rem;
	line-height: 1.5;
}

/* Navigation */
.guide-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid #e9ecef;
	gap: 1rem;
}

.guide-navigation .btn {
	min-width: 140px;
	padding: 0.875rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 0.75rem;
	transition: all 0.3s ease;
}

.guide-navigation .btn-primary {
	background-color: #6c42a8;
	border-color: #6c42a8;
	color: #fff;
}

.guide-navigation .btn-primary:hover:not(:disabled) {
	background-color: #5a3590;
	border-color: #5a3590;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(108, 66, 168, 0.3);
}

.guide-navigation .btn-primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.guide-navigation .btn-secondary {
	background-color: #fff;
	border: 2px solid #e0e0e0;
	color: #666;
}

.guide-navigation .btn-secondary:hover {
	background-color: #f8f9fa;
	border-color: #6c42a8;
	color: #6c42a8;
}

/* Responsive */
@media (max-width: 768px) {
	.guide-title {
		font-size: 2rem;
	}

	.guide-subtitle {
		font-size: 1rem;
	}

	.guide-step {
		padding: 1.5rem;
		border-radius: 1rem;
	}

	.guide-step-header {
		margin-bottom: 1.5rem;
		padding-bottom: 1rem;
	}

	.guide-step-number {
		width: 40px;
		height: 40px;
		font-size: 1.125rem;
	}

	.guide-step-title {
		font-size: 1.5rem;
	}

	.guide-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.guide-navigation {
		flex-direction: column;
		gap: 0.75rem;
	}

	.guide-navigation .btn {
		width: 100%;
		min-width: auto;
	}
}
