.csvmc-consultation-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

#consultation-form {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-section {
    padding: 40px;
    border-bottom: 1px solid rgba(96, 125, 139, 0.1);
}

.section-title {
    color: #263238;
    font-size: 1.3rem;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #FFFFFF;
}

.step-1 { background: #4CAF50; }
.step-2 { background: #1E88E5; }
.step-3 { background: #FB8C00; }

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #263238;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(96, 125, 139, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #4CAF50;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.radio-group {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #4CAF50;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50 0%, #3d8b40 100%);
    color: #FFFFFF;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.success-message {
    background: linear-gradient(135deg, #4CAF50 0%, #3d8b40 100%);
    color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.whatsapp-button {
    display: inline-block;
    background: #25D366;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.error-message {
    color: #E53935;
    font-size: 0.9rem;
    margin-top: 5px;
}

.progress-bar {
    height: 6px;
    background: #F5F7FA;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #81C784);
    transition: width 0.3s;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.step-indicator {
    color: #607D8B;
    font-weight: 600;
}

.step-indicator.active {
    color: #4CAF50;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-section {
        padding: 30px 20px;
    }
    
    .success-message {
        padding: 30px 20px;
    }
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #FFFFFF;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}