/* ===== RFQ Page Additional Styles ===== */

.rfq-form-wrapper {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border);
}

.rfq-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rfq-page {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.rfq-header {
    text-align: center;
    margin-bottom: 48px;
}

.rfq-header h1 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    margin-bottom: 12px;
}

.rfq-header p {
    font-size: 17px;
    color: var(--text-secondary);
}

.rfq-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.rfq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

@media (max-width: 1024px) {
    .rfq-layout {
        grid-template-columns: 1fr;
    }
    .rfq-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .rfq-sidebar .sidebar-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .rfq-form-wrapper {
        padding: 24px;
    }
}
