/* Multi-step Form Styles */
.smh-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 20px 50px 0px rgba(31, 27.000000000000004, 24, 0.058823529411764705);
    padding: 30px;
	padding-top:50px;
	border: 1px solid #eadfce;
}

.smh-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.smh-progress-bar::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.smh-progress-step {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 10px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.smh-progress-step.active {
    color: #B88A43;
    font-weight: bold;
}

.smh-progress-step.active::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #B88A43;
    border-radius: 50%;
}

.smh-form-step {
    animation: fadeIn 0.3s ease;
}

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

.smh-field-group {
    margin-bottom: 20px;
}

.smh-field-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.smh-field-group input[type="text"],
.smh-field-group input[type="email"],
.smh-field-group input[type="tel"],
.smh-field-group input[type="number"],
.smh-field-group select,
.smh-field-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
	height:auto !important;
}

.smh-field-group input:focus,
.smh-field-group select:focus,
.smh-field-group textarea:focus {
    border-color: #B88A43;
    outline: none;
    box-shadow:none;
}

.smh-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.smh-col {
    flex: 1;
}

.smh-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.smh-range input {
    flex: 1;
}

.smh-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.smh-checkbox-group label {
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}

.smh-consent-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.smh-consent-section label {
    display: block;
    margin-bottom: 12px;
    font-weight: normal;
}

.smh-consent-section input[type="checkbox"] {
    margin-right: 10px;
}

button.smh-next-step,
button.smh-prev-step,
button.smh-submit-btn {
    padding: 15px 45px !important;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 10px;
}

button.smh-next-step {
    background: #2271b1;
    color: #fff;
}

button.smh-next-step:hover {
    background: #135e96;
}

button.smh-prev-step {
    background: #22201D !important;
    color: white !important;
}

button.smh-prev-step:hover {
    background: #e0e0e0;
}

button.smh-submit-btn {
    background: #2ecc71;
    color: #fff;
}

button.smh-submit-btn:hover {
    background: #2271b1;
}

#smh-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .smh-form-container {
        padding: 20px;
		padding-top:40px;
    }
    
    .smh-progress-step {
        font-size: 12px;
    }
	.smh-progress-bar{
		white-space: nowrap !important;
		overflow:scroll !important;
		padding-top: 20px;
	}
	.smh-progress-bar:before{
		display:none;
	}
    .smh-row {
        flex-direction: column;
        gap: 0;
    }
    
    .smh-checkbox-group {
        grid-template-columns: 1fr;
    }
	.smh-prev-step{
		margin-bottom:10px;
	}
}