.elementor-4704 .elementor-element.elementor-element-6ec6669{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-4704 .elementor-element.elementor-element-d9713b9{--display:flex;}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );}}/* Start custom CSS *//* איפוס סגנונות */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* כותרת */
.calculator-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.calculator-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.calculator-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* גוף המחשבון */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
}

/* קופסת טופס */
.form-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-box h2 {
    color: #2d3748;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    font-size: 1.5rem;
}

/* קבוצת שדות */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    color: #2d3748;
    background: white;
    transition: all 0.3s;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* כפתור */
.calculate-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #4c51bf 0%, #667eea 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(102, 126, 234, 0.3);
}

/* קופסת תוצאות */
.results-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.results-box h2 {
    color: #2d3748;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    font-size: 1.5rem;
}

/* תצוגת מחיר */
.price-display {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f6f8ff 0%, #f0f4ff 100%);
    border-radius: 12px;
    margin-bottom: 25px;
    border: 2px solid #e2e8f0;
}

.price-label {
    display: block;
    color: #718096;
    font-size: 1rem;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d3748;
    margin: 10px 0;
}

.price-monthly {
    color: #4a5568;
    font-size: 1.1rem;
    background: white;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #e2e8f0;
}

/* פירוט רכיבים */
.breakdown-section {
    margin-bottom: 25px;
}

.breakdown-section h3 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.breakdown-list {
    list-style: none;
}

.breakdown-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #e2e8f0;
}

.breakdown-list li:last-child {
    margin-bottom: 0;
}

.item-label {
    color: #4a5568;
}

.item-value {
    color: #2d3748;
    font-weight: 600;
}

/* המלצות */
.recommendations-section h3 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.recommendations-list {
    list-style: none;
}

.recommendations-list li {
    padding: 12px 15px;
    background: #fffaf0;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #feebc8;
    color: #744210;
}

.recommendations-list li:last-child {
    margin-bottom: 0;
}

/* אזהרה */
.disclaimer {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: #c53030;
    font-size: 0.9rem;
}

/* כותרת תחתונה */
.calculator-footer {
    text-align: center;
    padding: 20px;
    color: #718096;
    font-size: 0.9rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* אנימציות */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.pulse {
    animation: pulse 0.5s ease;
}

/* טעינה */
.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #e2e8f0;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}/* End custom CSS */