/* Pricing page — جدول الأسعار + تحميل RFQ */

:root {
    --pricing-color: #0d9488;
}

.section-header.pricing {
    border-bottom-color: var(--pricing-color);
}

.section-header.pricing i {
    color: var(--pricing-color);
}

.pricing-table-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin: 1.5rem 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-table-title:first-of-type {
    margin-top: 0;
}

.pricing-table-title i {
    color: var(--pricing-color);
}

/* جداول الأسعار */
.pricing-table-wrap {
    overflow-x: auto;
    margin: 0 0 1.5rem 0;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--proposal-card);
    box-shadow: var(--shadow-sm);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.25rem;
    text-align: right;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.pricing-table thead th {
    background: var(--pricing-color);
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid #0f766e;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: var(--proposal-bg);
}

.pricing-table td strong {
    color: var(--primary-dark);
}

.pricing-table .price-cell {
    white-space: nowrap;
    font-weight: 600;
}

/* زر تحميل RFQ */
.rfq-download-block {
    margin: 1rem 0;
}

.btn-download-rfq {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, #0f766e 0%, var(--pricing-color) 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.2s;
}

.btn-download-rfq:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
}

.btn-download-rfq i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    .btn-download-rfq {
        width: 100%;
        justify-content: center;
    }
}
