* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.form-container {
    background: white;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.progress-bar {
    padding: 15px 20px;
    background: white;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3ba4af 0%, #52d7e5 100%);
    width: 33.33%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.progress-step {
    display: none;
}

.step-number {
    display: none;
}

.step-label {
    display: none;
}

form {
    padding: 20px;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

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

h2 {
    color: #2d3748;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.property-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.property-option {
    cursor: pointer;
}

.property-option input[type="radio"] {
    display: none;
}

.option-card {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.option-card:hover {
    border-color: #3ba4af;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 164, 175, 0.2);
}

.property-option input[type="radio"]:checked + .option-card {
    border-color: #3ba4af;
    background: linear-gradient(135deg, rgba(59, 164, 175, 0.1) 0%, rgba(82, 215, 229, 0.1) 100%);
    box-shadow: 0 10px 20px rgba(59, 164, 175, 0.3);
}

.option-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
}

.option-description {
    font-size: 14px;
    color: #718096;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3ba4af;
    box-shadow: 0 0 0 3px rgba(59, 164, 175, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-back:hover {
    background: #cbd5e0;
    transform: translateY(-2px);
}

.btn-next,
.btn-submit {
    background: #3ba4af;
    color: white;
}

.btn-next:hover:not(:disabled),
.btn-submit:hover:not(:disabled) {
    background: #52d7e5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 164, 175, 0.4);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    padding: 30px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3ba4af 0%, #52d7e5 100%);
    color: white;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-message h2 {
    color: #2d3748;
    margin-bottom: 15px;
}

.success-message p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 10px;
}

@media (max-width: 640px) {
    .form-container {
        border-radius: 0;
    }

    .progress-bar {
        padding: 12px 20px;
    }

    form {
        padding: 30px 20px;
    }

    h2 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .option-card {
        padding: 15px;
        gap: 15px;
    }

    .option-icon {
        font-size: 32px;
    }

    .form-navigation {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}