 /* RESET E STILI BASE */
 body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* HEADER */
.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
    background: linear-gradient(135deg, #00BFFF 0%, #0088cc 100%);
    color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header h1 {
    margin: 0;
    font-size: 2.2em;
}

.form-header p {
    margin: 10px 0 0;
    font-size: 1.1em;
    opacity: 0.9;
}

/* STEP INDICATOR */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
    border: 4px solid white;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #FFD700;
    color: white;
    border-color: #FFD700;
}

.step.completed .step-number {
    background: #00BFFF;
    color: white;
    border-color: #00BFFF;
}

.step-text {
    text-align: center;
    font-size: 0.9em;
    color: #777;
    font-weight: 500;
}

.step.active .step-text,
.step.completed .step-text {
    color: #333;
    font-weight: 600;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    z-index: 0;
}

.progress-bar {
    position: absolute;
    top: 25px;
    left: 0;
    height: 4px;
    background: #00BFFF;
    z-index: 1;
    transition: width 0.4s ease;
}

/* FORM STEP */
.form-step {
    display: none;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

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

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

.step-title {
    color: #00BFFF;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.5em;
    display: flex;
    align-items: center;
}

.step-title i {
    margin-right: 15px;
    font-size: 1.3em;
}

/* SERVICE SELECTION */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-option {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: #00BFFF;
    transform: translateY(-5px);
}

.service-option.selected {
    border-color: #FFD700;
    background-color: #fffdf5;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.service-icon {
    font-size: 2.5em;
    color: #00BFFF;
    margin-bottom: 15px;
}

.service-option.selected .service-icon {
    color: #FFD700;
}

.service-name {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1em;
}

/* FORM STYLES */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    transition: border 0.3s ease;
}

.form-control:focus {
    border-color: #00BFFF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* NAVIGATION BUTTONS */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.btn {
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #00BFFF;
    color: white;
}

.btn-primary:hover {
    background: #0088cc;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #00BFFF;
    color: #00BFFF;
}

.btn-outline:hover {
    background: rgba(0, 191, 255, 0.1);
}

/* CONFIRMATION STEP */
.confirmation-details {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    width: 150px;
    font-weight: 600;
    color: #555;
}

.detail-value {
    flex: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-options {
        grid-template-columns: 1fr 1fr;
    }
    
    .step-text {
        font-size: 0.8em;
    }
}

@media (max-width: 576px) {
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .step {
        width: 30%;
    }
    
    .step-text {
        display: none;
    }
    
    .form-header h1 {
        font-size: 1.8em;
    }
}