/* facade-calculator.css */
.review-call-title {
    text-align: center;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 600;
}

    .review-call-title a {
        color: #0a58ca;
        text-decoration: none;
        font-weight: 800;
    }

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
}

/* تک آت‌ساین به جای دبل آت‌ساین */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}

.facade-calculator {
    width: 100%;
    background: #f5f9fc;
    padding: 30px;
    border-radius: 12px;
    direction: rtl;
}

.calc-header p {
    text-align: center;
    font-size: 22px;
    color: #1239ac;
}

.steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.step-dot {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .step-dot.active {
        background: #0a58ca;
        color: #fff;
    }

.step-line {
    width: 40px;
    height: 3px;
    background: #ddd;
}

.calc-step {
    display: none;
}

    .calc-step.active {
        display: block;
        animation: fadeEffect .4s;
    }

@keyframes fadeEffect {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calc-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 8px;
    margin-bottom: 18px;
}

.btn-calc {
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    background: #0a58ca;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

    .btn-calc.back {
        background: #6c757d;
    }

    .btn-calc.submit-btn {
        background: #28a745;
    }

.result-box {
    background: #e8f5e9;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.review-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.review-content {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    direction: rtl;
}

.review-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
    font-size: 13px;
}

.review-image {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-top: 10px;
    border-radius: 8px;
}
