/* استایل بخش نتایج */
.results-section {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.results-container {
    margin-bottom: 30px;
}

.result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 30px;
    text-align: center;
    color: var(--gray-color);
}

.result-placeholder i {
    font-size: 64px;
    margin-bottom: 20px;
    color: var(--light-gray);
}

.result-placeholder p {
    font-size: 18px;
    max-width: 400px;
}

/* استایل کارت نتایج */
.results-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid var(--light-gray);
}

.project-info {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.project-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.detail-item {
    background-color: white;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid var(--light-gray);
    font-size: 14px;
}

.detail-item span:first-child {
    font-weight: 600;
    margin-left: 5px;
    color: var(--dark-color);
}

/* استایل نتایج محاسبات */
.calculation-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.result-item {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.result-item.highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
    color: white;
    border: none;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
}

.result-label {
    font-size: 16px;
    opacity: 0.9;
}

.result-unit {
    font-size: 14px;
    opacity: 0.8;
}

/* استایل توصیه‌ها */
.recommendations {
    background-color: #fff9e6;
    border-radius: var(--border-radius);
    padding: 20px;
    border-right: 4px solid var(--warning-color);
    margin-top: 20px;
}

.recommendations h4 {
    color: var(--warning-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recommendations ul {
    padding-right: 20px;
}

.recommendations li {
    margin-bottom: 8px;
}

/* استایل جزئیات فنی */
.technical-details {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid var(--light-gray);
}

.technical-details h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.details-content {
    font-size: 14px;
    line-height: 1.8;
}

.details-content p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .calculation-results {
        grid-template-columns: 1fr;
    }
    
    .project-details {
        flex-direction: column;
    }
}