/* SIMULATORS - Styles communs */

.simulator-hp.estimation.social-banner {padding: 2rem}
.simulator-hp.estimation.social-banner > .flex {display:flex;flex-wrap:wrap;gap:40px;position:relative}
.simulator-hp.estimation.social-banner > .flex > div {min-width:450px;width:auto;position:relative;flex:1}
.simulator-hp.estimation.social-banner > .flex span.titre {font-weight: bold;font-size: 20px;margin-bottom: 2rem}
.simulator-hp.estimation.social-banner > .flex > div h3 {margin-top: 0;margin-bottom: 2rem;font-weight: 200;font-family: "Montserrat"}

.simulator-container {
	max-width: 600px;
	margin:0rem auto;
	padding: 30px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Progress Bar */
.progress-container {
	width: 100%;
	height: 8px;
	background: #e0e0e0;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
}

.progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #c19a5f, #d4af37);
	transition: width 0.3s ease;
}

/* Steps */
.step {
	display: none;
}

.step.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

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

.step-title {
	font-size: 28px;
	color: #333;
	margin-bottom: 10px;
	text-align: center;
}

.step-subtitle {
	font-size: 16px;
	color: #666;
	text-align: center;
	margin-bottom: 20px;
}

.question-label {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
	text-align: center;
}

.form-fields{display:flex;flex-direction:column;gap:15px;margin-bottom:20px}
.form-group{display:flex;flex-direction:column;gap:5px}
.form-group label{font-weight:600;color:#333;font-size:14px}
.form-group .required{color:#e74c3c;margin-left:3px}
.form-group textarea{min-height:80px;resize:vertical}

.input-field.name-field {margin-bottom: 15px}

.input-field:focus {
	outline: none;
	border-color: #c19a5f;
}

.phone-container {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.phone-container .country-code {
	flex: 0 0 120px;
}

.phone-container .phone-field {
	flex: 1;
	margin-bottom: 0;
}

/* Boutons */
.nav-button {
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.discover-btn {
	background: #c19a5f;
	color: white;
	margin-top: 10px
}

.discover-btn:hover {
	background: #a8865a;
}

.back-btn {
	background: #f0f0f0;
	color: #333;
}

.back-btn:hover {
	background: #e0e0e0;
}

.navigation-buttons {
	display: flex;
	gap: 15px;
	justify-content: space-between;
	margin-top: 20px;
}

/* Loader */
.loader-container {
	text-align: center;
	padding: 50px 0;
}

.loader {
	width: 50px;
	height: 50px;
	border: 5px solid #f3f3f3;
	border-top: 5px solid #c19a5f;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.loader-text {
	font-size: 16px;
	color: #666;
	transition: opacity 0.5s ease;
}

/* Success/Error */
.step.success,
.step.error {
	text-align: center;
}

.step.success .step-title {
	color: #2ecc71;
}

.step.error .step-title {
	color: #e74c3c;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {}
		.simulator-hp.estimation.social-banner > .flex > div {min-width: 100%;}
		.simulator-container {padding: 20px;margin: 20px}
		.simulator-hp.estimation.social-banner > .flex {justify-content: center}
		.choices-container {grid-template-columns: 1fr}
	.navigation-buttons {flex-direction: column}
	.nav-button {width: 100%}
}