:root {
    --primary-color: #000000;
    --secondary-color: #2b2b2c;
    --light-color: #ecf0f1;
    --dark-color: #020202;
    --success-color: #2ecc71;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-color);
    font-size: 2.5rem;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: normal;
}

.progress-bar {
    margin-bottom: 40px;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
    border: 3px solid var(--light-color);
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: rgb(255, 255, 255);
    border-color: var(--secondary-color);
}

.step-label {
    font-size: 0.9rem;
    text-align: center;
    color: #000000;
}

.step.active .step-label {
    color: var(--dark-color);
    font-weight: bold;
}

.progress-line {
    height: 4px;
    background-color: var(--light-color);
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.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 {
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.with-icon label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.icon-left {
    position: absolute;
    left: 15px;
    color: #000000;
    font-size: 1.1rem;
}

.input-with-icon input {
    padding-left: 40px !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="color"] {
    width: 100%;
    height: 50px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    cursor: pointer;
}

input[type="file"] {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px dashed #ddd;
    border-radius: var(--border-radius);
    background-color: #f9f9f9;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

button {
    padding: 12px 25px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn {
    background-color: #bdc3c7;
    color: var(--dark-color);
}

.prev-btn:hover {
    background-color: #95a5a6;
}

.next-btn, .submit-btn {
    background-color: var(--primary-color);
    color: white;
}

.next-btn:hover, .submit-btn:hover {
    background-color: var(--secondary-color);
}

#crop-btn {
    background-color: var(--success-color);
    color: white;
}

#crop-btn:hover {
    background-color: #27ae60;
}

/* Success Animation */
.success-animation {
    text-align: center;
    padding: 40px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--success-color);
    color: white;
    font-size: 60px;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-animation h2 {
    color: var(--success-color);
    margin-bottom: 10px;
}

.success-animation p {
    color: var(--dark-color);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .business-card {
        width: 300px;
        height: 180px;
    }
    
    .card-info h2 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .progress-steps {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step {
        flex-direction: row;
        align-items: center;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .step-number {
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .progress-line {
        display: none;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    button {
        width: 100%;
        margin-bottom: 10px;
    }
}