/* ... (המשך מהקוד הקודם עם כל האנימציות) ... */

/* סגנונות נוספים לשדות קלט מלאים */
.input-group-wide {
    margin-bottom: 25px;
    animation: smoothFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.form-control-wide {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    animation: gentleZoom 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.form-control-wide:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea.form-control-wide {
    min-height: 120px;
    resize: vertical;
}

/* רשת אופציות */
.options-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin: 20px 0;
    animation: gentleZoom 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.option-card-wide {
    padding: 20px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    animation: smoothFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.option-card-wide:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
}

.option-card-wide.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    transform: scale(1.03);
}

.option-icon-wide {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #667eea;
}

.option-text-wide {
    font-weight: 500;
    color: #2d3748;
    font-size: 0.95rem;
}

/* אופציות רשימה */
.options-list-wide {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    animation: smoothFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.list-option-wide {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    animation: smoothFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.list-option-wide:hover {
    border-color: #667eea;
    background: #f7fafc;
}

.list-option-wide.selected {
    border-color: #667eea;
    background: linear-gradient(to right, #667eea10, #764ba210);
}

.list-icon-wide {
    font-size: 1.5rem;
    color: #667eea;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    border-radius: 10px;
    flex-shrink: 0;
}

.list-content-wide {
    flex: 1;
}

.list-content-wide h3 {
    margin: 0 0 5px;
    color: #2d3748;
    font-size: 1.1rem;
}

.list-content-wide p {
    margin: 0;
    color: #718096;
    font-size: 0.9rem;
}

/* שדות מותנים */
.conditional-field-wide {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed #e2e8f0;
    animation: smoothFade 0.5s ease;
}

/* כפתורי כן/לא */
.yes-no-options-wide {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    animation: gentleZoom 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.yes-no-option-wide {
    flex: 1;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: smoothFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.yes-no-option-wide.yes {
    border: 3px solid #c6f6d5;
    background: #f0fff4;
}

.yes-no-option-wide.no {
    border: 3px solid #fed7d7;
    background: #fff5f5;
}

.yes-no-option-wide:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.yes-no-option-wide.selected.yes {
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-color: #48bb78;
    color: white;
}

.yes-no-option-wide.selected.no {
    background: linear-gradient(135deg, #f56565, #e53e3e);
    border-color: #f56565;
    color: white;
}

.yes-no-icon-wide {
    font-size: 2rem;
}

.yes-no-text-wide {
    font-weight: 600;
    font-size: 1.1rem;
}

/* הצהרות */
.declaration-box-wide {
    background: #f7fafc;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    margin-bottom: 20px;
    animation: smoothFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.declaration-content-wide {
    margin-bottom: 20px;
}

.declaration-content-wide p {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.5;
    animation: smoothFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.checkbox-container-wide {
    display: flex;
    justify-content: center;
    animation: smoothFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.checkbox-label-wide {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.checkbox-label-wide:hover {
    border-color: #cbd5e0;
}

.checkbox-custom-wide {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label-wide input[type="checkbox"]:checked + .checkbox-custom-wide {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label-wide input[type="checkbox"]:checked + .checkbox-custom-wide::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text-wide {
    font-weight: 600;
    color: #2d3748;
}

/* סיכום */
.summary-preview-wide {
    background: #f7fafc;
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    margin-top: 20px;
    animation: smoothFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.summary-preview-wide h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #2d3748;
}

.summary-items-wide {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.summary-item-wide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    animation: smoothFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.summary-item-wide:last-child {
    border-bottom: none;
}

.summary-item-wide span {
    color: #718096;
}

.summary-item-wide strong {
    color: #2d3748;
    font-size: 1.1rem;
}

/* קלט מספרי */
.number-input-container-wide {
    text-align: center;
    animation: gentleZoom 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.number-display-wide {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 20px;
}

.number-controls-wide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.number-btn-wide {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #e2e8f0;
    background: white;
    font-size: 1.2rem;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.number-btn-wide:hover {
    border-color: #667eea;
    color: #667eea;
    transform: scale(1.1);
}

/* שדות מיוחדים */
.currency-input-wide {
    position: relative;
}

.currency-input-wide .form-control-wide {
    padding-left: 45px;
}

.currency-wide {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #4a5568;
    font-size: 1.1rem;
}

/* מסך סיום */
.completion-card-wide {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    animation: gentleBounce 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.completion-animation-wide {
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.checkmark-circle-wide {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

.completion-card-wide h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
    animation: smoothFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.completion-subtitle-wide {
    color: #718096;
    font-size: 1.2rem;
    margin-bottom: 40px;
    animation: smoothFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.completion-details-wide {
    background: #f7fafc;
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #e2e8f0;
    margin-bottom: 30px;
    text-align: right;
    animation: smoothFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.detail-item-wide {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    animation: smoothFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.detail-item-wide:last-child {
    border-bottom: none;
}

.detail-item-wide i {
    color: #667eea;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.detail-content-wide {
    flex: 1;
}

.detail-content-wide h3 {
    margin: 0 0 5px;
    color: #2d3748;
    font-size: 1.1rem;
}

.detail-content-wide p {
    margin: 0;
    color: #718096;
}

.completion-actions-wide {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: smoothFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* מדרגת התקדמות כללית */
.progress-bar-container-wide {
    margin: 30px 0;
    padding: 0 20px;
    animation: smoothFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.progress-bar-wide {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill-wide {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-text-wide {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    font-weight: 500;
}

/* אנימציות דיליי למרכיבים שונים */
.input-group-wide:nth-child(1) { animation-delay: 0.1s; }
.input-group-wide:nth-child(2) { animation-delay: 0.2s; }
.input-group-wide:nth-child(3) { animation-delay: 0.3s; }
.input-group-wide:nth-child(4) { animation-delay: 0.4s; }
.input-group-wide:nth-child(5) { animation-delay: 0.5s; }

.option-card-wide:nth-child(1) { animation-delay: 0.1s; }
.option-card-wide:nth-child(2) { animation-delay: 0.2s; }
.option-card-wide:nth-child(3) { animation-delay: 0.3s; }
.option-card-wide:nth-child(4) { animation-delay: 0.4s; }
.option-card-wide:nth-child(5) { animation-delay: 0.5s; }
.option-card-wide:nth-child(6) { animation-delay: 0.6s; }

.yes-no-option-wide:nth-child(1) { animation-delay: 0.1s; }
.yes-no-option-wide:nth-child(2) { animation-delay: 0.2s; }

.list-option-wide:nth-child(1) { animation-delay: 0.1s; }
.list-option-wide:nth-child(2) { animation-delay: 0.2s; }
.list-option-wide:nth-child(3) { animation-delay: 0.3s; }
.list-option-wide:nth-child(4) { animation-delay: 0.4s; }

/* התאמות רספונסיביות */
@media (max-width: 768px) {
    .options-grid-wide {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yes-no-options-wide {
        flex-direction: column;
    }
    
    .option-card-wide {
        padding: 15px 10px;
    }
    
    .declaration-box-wide {
        padding: 20px 15px;
    }
    
    .completion-card-wide {
        padding: 30px 20px;
    }
    
    .completion-card-wide h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .options-grid-wide {
        grid-template-columns: 1fr;
    }
    
    .list-option-wide {
        padding: 15px 12px;
    }
    
    .number-display-wide {
        font-size: 2.5rem;
    }
    
    .completion-card-wide h2 {
        font-size: 1.8rem;
    }
}