* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
.header {
    background-color: white;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0d3d3d;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    /*background-color: #0d3d3d;*/
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    font-size: 1.5rem;
}

.back-link {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: #0d3d3d;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-title {
    font-size: 2.5rem;
    color: #0d3d3d;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #666;
    margin-bottom: 3rem;
}

/* Progress Steps */
.progress-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background-color: #e0e0e0;
    color: #999;
    font-weight: bold;
}

.step.completed .step-circle {
    background-color: #ff9800;
    color: white;
}

.step.active .step-circle {
    background-color: #0d3d3d;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
}

.step.active .step-label {
    color: #0d3d3d;
    font-weight: 600;
}

.step-line {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step-line-progress {
    height: 100%;
    background-color: #ff9800;
    transition: width 0.3s;
}

/* Form Container */
.form-container {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    color: #0d3d3d;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

label span {
    color: #ff0000;
}

input[type="text"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #ff9800;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: #ff9800;
    background-color: #fff8f0;
}

.feature-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Image Upload */
.image-upload-container {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
}

.upload-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #0d3d3d;
}

.upload-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.upload-subtext {
    color: #999;
    font-size: 0.9rem;
}

.image-slots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.image-slot {
    aspect-ratio: 1;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.image-slot:hover {
    border-color: #ff9800;
    background-color: #fff8f0;
}

.image-slot input[type="file"] {
    display: none;
}

.image-slot.has-image {
    border-style: solid;
    border-color: #ff9800;
}

.image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slot-number {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: white;
    border-radius: 10px;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-previous {
    background-color: white;
    color: #666;
    border: 2px solid #ddd;
}

.btn-previous:hover {
    border-color: #0d3d3d;
    color: #0d3d3d;
}

.btn-next {
    background-color: #0d3d3d;
    color: white;
}

.btn-next:hover {
    background-color: #0a2d2d;
}

.btn-submit {
    background-color: #ff9800;
    color: white;
}

.btn-submit:hover {
    background-color: #e68900;
}

.step-indicator {
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .steps {
        overflow-x: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .image-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.alert-error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-success {
    background-color: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}