

.remodeling-wizard-container {
    width: 100%;
    max-width: 800px;
}

.remodeling-wizard-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: remodeling-wizard-slideUp 0.6s ease-out;
    border: 1px solid #f0f0f0;
}

@keyframes remodeling-wizard-slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.remodeling-wizard-header {
    background: white;
    color: #333;
    padding: 40px;
    text-align: center;
    border-bottom: 2px solid #0066cc;
}

.remodeling-wizard-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333;
}

.remodeling-wizard-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Progress Bar */
.remodeling-wizard-progress-container {
    padding: 30px 40px 20px;
    background: #fafafa;
}

.remodeling-wizard-progress-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.remodeling-wizard-progress-fill {
    height: 100%;
    background: #0066cc;
    border-radius: 3px;
    transition: width 0.5s ease;
    width: 33.33%;
}

.remodeling-wizard-progress-steps {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

.remodeling-wizard-step {
    position: relative;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.remodeling-wizard-step.remodeling-wizard-step-active {
    background: #0066cc;
    color: white;
    font-weight: 600;
}

.remodeling-wizard-step.remodeling-wizard-step-completed {
    background: #28a745;
    color: white;
}

/* Step Content */
.remodeling-wizard-step-content {
    display: none;
    padding: 40px;
    animation: remodeling-wizard-fadeIn 0.5s ease;
}

.remodeling-wizard-step-content.remodeling-wizard-step-content-active {
    display: block;
}

@keyframes remodeling-wizard-fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Form Elements */
.remodeling-wizard-form-group {
    margin-bottom: 30px;
}

.remodeling-wizard-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.remodeling-wizard-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.remodeling-wizard-form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* Contact Form Inputs */
.remodeling-wizard-contact-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.remodeling-wizard-contact-input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.remodeling-wizard-contact-section h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.5rem;
}

.remodeling-wizard-contact-description {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.remodeling-wizard-contact-description strong {
    color: #0066cc;
}

.remodeling-wizard-example-text {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.remodeling-wizard-example-text strong {
    color: #0066cc;
}

.remodeling-wizard-example-text ul {
    margin-top: 10px;
    margin-left: 20px;
}

.remodeling-wizard-example-text li {
    margin-bottom: 5px;
    color: #666;
}

/* Buttons */
.remodeling-wizard-button-group {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.remodeling-wizard-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    justify-content: center;
}

.remodeling-wizard-btn-primary {
    background: #ff6600;
    color: white;
}

.remodeling-wizard-btn-primary:hover {
    background: #e55a00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.remodeling-wizard-btn-secondary {
    background: #6c757d;
    color: white;
}

.remodeling-wizard-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.remodeling-wizard-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.remodeling-wizard-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: remodeling-wizard-spin 1s linear infinite;
}

@keyframes remodeling-wizard-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Clarification Questions */
.remodeling-wizard-clarification-section h3 {
    margin-bottom: 25px;
    color: #333;
    font-size: 1.3rem;
}

.remodeling-wizard-question-group {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.remodeling-wizard-question-group h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.1rem;
}

.remodeling-wizard-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.remodeling-wizard-option-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.remodeling-wizard-option-btn:hover {
    border-color: #0066cc;
    background: #f8f9ff;
}

.remodeling-wizard-option-btn.remodeling-wizard-option-btn-selected {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

/* Results Section */
.remodeling-wizard-results-section {
    text-align: center;
    padding: 20px;
}

.remodeling-wizard-success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: remodeling-wizard-bounce 0.6s ease;
}

@keyframes remodeling-wizard-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.remodeling-wizard-results-section h3 {
    margin-bottom: 25px;
    color: #333;
    font-size: 1.5rem;
}

.remodeling-wizard-pricing-card {
    background: #0066cc;
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.2);
}

.remodeling-wizard-price-range {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.remodeling-wizard-price-details {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.remodeling-wizard-detail-section {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.remodeling-wizard-detail-section:last-child {
    margin-bottom: 0;
}

.remodeling-wizard-detail-section h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 1;
}

.remodeling-wizard-detail-section p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.95;
}

.remodeling-wizard-detail-content {
    margin: 0;
    text-align: left;
}

.remodeling-wizard-detail-content p {
    margin: 0 0 10px 0;
    line-height: 1.5;
    opacity: 0.95;
    text-align: left;
}

.remodeling-wizard-detail-content p:last-child {
    margin-bottom: 0;
}

.remodeling-wizard-detail-content ul,
.remodeling-wizard-detail-content ol {
    margin: 0;
    padding-left: 20px;
    line-height: 1.5;
    opacity: 0.95;
    text-align: left;
}

.remodeling-wizard-detail-content li {
    margin-bottom: 5px;
    opacity: 0.95;
}

.remodeling-wizard-detail-content li:last-child {
    margin-bottom: 0;
}

/* Modal */
.remodeling-wizard-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: remodeling-wizard-fadeIn 0.3s ease;
}

.remodeling-wizard-modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: remodeling-wizard-slideUp 0.3s ease;
}

.remodeling-wizard-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remodeling-wizard-modal-header h3 {
    color: #333;
    margin: 0;
}

.remodeling-wizard-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.remodeling-wizard-close-btn:hover {
    background-color: #f8f9fa;
}

.remodeling-wizard-modal-body {
    padding: 25px;
}

.remodeling-wizard-modal-body p {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.remodeling-wizard-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .remodeling-wizard-container {
        padding: 10px;
    }
    
    .remodeling-wizard-card {
        border-radius: 8px;
    }
    
    .remodeling-wizard-header {
        padding: 30px 20px;
    }
    
    .remodeling-wizard-header h1 {
        font-size: 2rem;
    }
    
    .remodeling-wizard-step-content {
        padding: 30px 20px;
    }
    
    .remodeling-wizard-progress-container {
        padding: 20px 20px 15px;
    }
    
    .remodeling-wizard-progress-steps {
        font-size: 0.8rem;
    }
    
    .remodeling-wizard-button-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .remodeling-wizard-btn {
        width: 100%;
    }
    
    .remodeling-wizard-options-container {
        flex-direction: column;
    }
    
    .remodeling-wizard-option-btn {
        text-align: center;
    }
    
    .remodeling-wizard-price-range {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .remodeling-wizard-header h1 {
        font-size: 1.8rem;
    }
    
    .remodeling-wizard-header p {
        font-size: 1rem;
    }
    
    .remodeling-wizard-step-content {
        padding: 20px 15px;
    }
    
    .remodeling-wizard-progress-steps {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
} 